This repository was archived by the owner on Aug 14, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +9
-2
lines changed Expand file tree Collapse file tree 4 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 11configured_endpoints : 106
22openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/llamastack%2Fllama-stack-client-c371abef4463f174f8d35ef3da4697fae5eb221db615f9c305319196472f313b.yml
33openapi_spec_hash : d9bb62faf229c2c2875c732715e9cfd1
4- config_hash : 82fe79ebe3e65787cd877faf812ee79e
4+ config_hash : d14b33fa5d0afc0d93f32ba019bac9df
Original file line number Diff line number Diff line change 2222- <code ><a href =" ./src/resources/shared.ts " >ScoringResult</a ></code >
2323- <code ><a href =" ./src/resources/shared.ts " >SystemMessage</a ></code >
2424- <code ><a href =" ./src/resources/shared.ts " >ToolCall</a ></code >
25+ - <code ><a href =" ./src/resources/shared.ts " >ToolCallOrString</a ></code >
2526- <code ><a href =" ./src/resources/shared.ts " >ToolParamDefinition</a ></code >
2627- <code ><a href =" ./src/resources/shared.ts " >ToolResponseMessage</a ></code >
2728- <code ><a href =" ./src/resources/shared.ts " >UserMessage</a ></code >
Original file line number Diff line number Diff line change @@ -699,6 +699,7 @@ export declare namespace LlamaStackClient {
699699 export type ScoringResult = API . ScoringResult ;
700700 export type SystemMessage = API . SystemMessage ;
701701 export type ToolCall = API . ToolCall ;
702+ export type ToolCallOrString = API . ToolCallOrString ;
702703 export type ToolParamDefinition = API . ToolParamDefinition ;
703704 export type ToolResponseMessage = API . ToolResponseMessage ;
704705 export type UserMessage = API . UserMessage ;
Original file line number Diff line number Diff line change @@ -235,7 +235,7 @@ export namespace ContentDelta {
235235 /**
236236 * Either an in-progress tool call string or the final parsed tool call
237237 */
238- tool_call : string | Shared . ToolCall ;
238+ tool_call : Shared . ToolCallOrString ;
239239
240240 /**
241241 * Discriminator type of the delta. Always "tool_call"
@@ -949,6 +949,11 @@ export interface ToolCall {
949949 arguments_json ?: string ;
950950}
951951
952+ /**
953+ * Either an in-progress tool call string or the final parsed tool call
954+ */
955+ export type ToolCallOrString = string | ToolCall ;
956+
952957export interface ToolParamDefinition {
953958 param_type : string ;
954959
You can’t perform that action at this time.
0 commit comments