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 1
1
configured_endpoints : 106
2
2
openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/llamastack%2Fllama-stack-client-c371abef4463f174f8d35ef3da4697fae5eb221db615f9c305319196472f313b.yml
3
3
openapi_spec_hash : d9bb62faf229c2c2875c732715e9cfd1
4
- config_hash : 82fe79ebe3e65787cd877faf812ee79e
4
+ config_hash : d14b33fa5d0afc0d93f32ba019bac9df
Original file line number Diff line number Diff line change 22
22
- <code ><a href =" ./src/resources/shared.ts " >ScoringResult</a ></code >
23
23
- <code ><a href =" ./src/resources/shared.ts " >SystemMessage</a ></code >
24
24
- <code ><a href =" ./src/resources/shared.ts " >ToolCall</a ></code >
25
+ - <code ><a href =" ./src/resources/shared.ts " >ToolCallOrString</a ></code >
25
26
- <code ><a href =" ./src/resources/shared.ts " >ToolParamDefinition</a ></code >
26
27
- <code ><a href =" ./src/resources/shared.ts " >ToolResponseMessage</a ></code >
27
28
- <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 {
699
699
export type ScoringResult = API . ScoringResult ;
700
700
export type SystemMessage = API . SystemMessage ;
701
701
export type ToolCall = API . ToolCall ;
702
+ export type ToolCallOrString = API . ToolCallOrString ;
702
703
export type ToolParamDefinition = API . ToolParamDefinition ;
703
704
export type ToolResponseMessage = API . ToolResponseMessage ;
704
705
export type UserMessage = API . UserMessage ;
Original file line number Diff line number Diff line change @@ -235,7 +235,7 @@ export namespace ContentDelta {
235
235
/**
236
236
* Either an in-progress tool call string or the final parsed tool call
237
237
*/
238
- tool_call : string | Shared . ToolCall ;
238
+ tool_call : Shared . ToolCallOrString ;
239
239
240
240
/**
241
241
* Discriminator type of the delta. Always "tool_call"
@@ -949,6 +949,11 @@ export interface ToolCall {
949
949
arguments_json ?: string ;
950
950
}
951
951
952
+ /**
953
+ * Either an in-progress tool call string or the final parsed tool call
954
+ */
955
+ export type ToolCallOrString = string | ToolCall ;
956
+
952
957
export interface ToolParamDefinition {
953
958
param_type : string ;
954
959
You can’t perform that action at this time.
0 commit comments