@@ -67,20 +67,6 @@ export class Agent extends APIResource {
6767 headers : buildHeaders ( [ { Accept : '*/*' } , options ?. headers ] ) ,
6868 } ) ;
6969 }
70-
71- /**
72- * Retrieve a single agent by its unique identifier. The response includes an
73- * `available` flag indicating whether the agent is within the team's plan limit
74- * and may be used for runs.
75- *
76- * @example
77- * ```ts
78- * const agentResponse = await client.agent.agent.get('uid');
79- * ```
80- */
81- get ( uid : string , options ?: RequestOptions ) : APIPromise < AgentResponse > {
82- return this . _client . get ( path `/agent/identities/${ uid } ` , options ) ;
83- }
8470}
8571
8672export interface AgentResponse {
@@ -115,16 +101,6 @@ export interface AgentResponse {
115101 */
116102 uid : string ;
117103
118- /**
119- * Base model for runs executed by this agent. The precedence order for model
120- * resolution is:
121- *
122- * 1. The model specified on the run itself
123- * 2. The agent's base model
124- * 3. The team's default model
125- */
126- base_model ?: string ;
127-
128104 /**
129105 * Optional description of the agent
130106 */
@@ -149,11 +125,6 @@ export interface CreateAgentRequest {
149125 */
150126 name : string ;
151127
152- /**
153- * Optional base model for runs executed by this agent.
154- */
155- base_model ?: string | null ;
156-
157128 /**
158129 * Optional description of the agent
159130 */
@@ -200,12 +171,6 @@ export interface ListAgentIdentitiesResponse {
200171 * - Non-empty: replace the field wholesale with the provided value.
201172 */
202173export interface UpdateAgentRequest {
203- /**
204- * Replacement base model. Omit or pass `null` to leave unchanged, or pass an empty
205- * string to clear.
206- */
207- base_model ?: string | null ;
208-
209174 /**
210175 * Replacement description. Omit or pass `null` to leave unchanged, or use an empty
211176 * value to clear.
@@ -248,11 +213,6 @@ export interface AgentCreateParams {
248213 */
249214 name : string ;
250215
251- /**
252- * Optional base model for runs executed by this agent.
253- */
254- base_model ?: string | null ;
255-
256216 /**
257217 * Optional description of the agent
258218 */
@@ -288,12 +248,6 @@ export namespace AgentCreateParams {
288248}
289249
290250export interface AgentUpdateParams {
291- /**
292- * Replacement base model. Omit or pass `null` to leave unchanged, or pass an empty
293- * string to clear.
294- */
295- base_model ?: string | null ;
296-
297251 /**
298252 * Replacement description. Omit or pass `null` to leave unchanged, or use an empty
299253 * value to clear.
0 commit comments