@getpaseo/protocol 0.1.102-beta.2 → 0.1.103

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.
@@ -73,6 +73,7 @@ export interface AgentModelDefinition {
73
73
  label: string;
74
74
  description?: string;
75
75
  isDefault?: boolean;
76
+ contextWindowMaxTokens?: number;
76
77
  metadata?: AgentMetadata;
77
78
  thinkingOptions?: AgentSelectOption[];
78
79
  defaultThinkingOptionId?: string;
package/dist/messages.js CHANGED
@@ -133,6 +133,7 @@ const AgentModelDefinitionSchema = z
133
133
  label: z.string(),
134
134
  description: z.string().optional(),
135
135
  isDefault: z.boolean().optional(),
136
+ contextWindowMaxTokens: z.number().optional(),
136
137
  metadata: z.record(z.string(), z.unknown()).optional(),
137
138
  thinkingOptions: z.array(AgentSelectOptionSchema).optional(),
138
139
  defaultThinkingOptionId: z.string().optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getpaseo/protocol",
3
- "version": "0.1.102-beta.2",
3
+ "version": "0.1.103",
4
4
  "description": "Paseo shared protocol schemas and wire types",
5
5
  "files": [
6
6
  "dist",