Skip to content

Commit

Permalink
standard-tests[patch]: Add descriptive comments/docstrings to standar…
Browse files Browse the repository at this point in the history
…d tetss
  • Loading branch information
bracesproul committed Jul 25, 2024
1 parent 37321ef commit 3216234
Show file tree
Hide file tree
Showing 3 changed files with 654 additions and 103 deletions.
4 changes: 2 additions & 2 deletions docs/core_docs/docs/how_to/streaming.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2043,9 +2043,9 @@
],
"metadata": {
"kernelspec": {
"display_name": "Deno",
"display_name": "TypeScript",
"language": "typescript",
"name": "deno"
"name": "tslab"
},
"language_info": {
"codemirror_mode": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,15 @@ class ChatOpenAIStandardIntegrationTests extends ChatModelIntegrationTests<
};
await super.testUsageMetadataStreaming(callOptions);
}

async testInvokeMoreComplexTools() {
this.skipTestMessage(
"testInvokeMoreComplexTools",
"ChatOpenAI",
"OpenAI does not support tool schemas which contain object with unknown/any parameters." +
"\nOpenAI only supports objects in schemas when the parameters are defined."
);
}
}

const testClass = new ChatOpenAIStandardIntegrationTests();
Expand Down
Loading

0 comments on commit 3216234

Please sign in to comment.