@iqai/adk 0.3.6 → 0.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -2343,7 +2343,7 @@ var OpenAiLlm = class extends BaseLlm {
|
|
|
2343
2343
|
* Provides the list of supported models
|
|
2344
2344
|
*/
|
|
2345
2345
|
static supportedModels() {
|
|
2346
|
-
return ["gpt-3.5-.*", "gpt-4.*", "gpt-4o.*", "o1-.*", "o3-.*"];
|
|
2346
|
+
return ["gpt-3.5-.*", "gpt-4.*", "gpt-4o.*", "gpt-5.*", "o1-.*", "o3-.*"];
|
|
2347
2347
|
}
|
|
2348
2348
|
/**
|
|
2349
2349
|
* Main content generation method - handles both streaming and non-streaming
|
package/dist/index.mjs
CHANGED
|
@@ -2343,7 +2343,7 @@ var OpenAiLlm = class extends BaseLlm {
|
|
|
2343
2343
|
* Provides the list of supported models
|
|
2344
2344
|
*/
|
|
2345
2345
|
static supportedModels() {
|
|
2346
|
-
return ["gpt-3.5-.*", "gpt-4.*", "gpt-4o.*", "o1-.*", "o3-.*"];
|
|
2346
|
+
return ["gpt-3.5-.*", "gpt-4.*", "gpt-4o.*", "gpt-5.*", "o1-.*", "o3-.*"];
|
|
2347
2347
|
}
|
|
2348
2348
|
/**
|
|
2349
2349
|
* Main content generation method - handles both streaming and non-streaming
|