@or-sdk/agents 2.2.0-beta.2732.0 → 2.2.0-beta.2733.0

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.
@@ -25,7 +25,7 @@ export type AgentModelOptions = {
25
25
  frequencyPenalty?: number;
26
26
  presencePenalty?: number;
27
27
  modelName?: string;
28
- provider?: number;
28
+ provider?: string;
29
29
  };
30
30
  export type AgentActivity = {
31
31
  kind: ActivityKind;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@or-sdk/agents",
3
- "version": "2.2.0-beta.2732.0",
3
+ "version": "2.2.0-beta.2733.0",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "types": "dist/types/index.d.ts",
package/src/types.ts CHANGED
@@ -96,7 +96,7 @@ export type AgentModelOptions = {
96
96
  /**
97
97
  * Specifies the name of the provider to use for the agent.
98
98
  */
99
- provider?: number;
99
+ provider?: string;
100
100
  };
101
101
 
102
102
  /**