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 +2
-9
lines changed Expand file tree Collapse file tree 4 files changed +2
-9
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 : de16e52db65de71ac35adcdb665a74f5
4
+ config_hash : 82fe79ebe3e65787cd877faf812ee79e
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 >
26
25
- <code ><a href =" ./src/resources/shared.ts " >ToolParamDefinition</a ></code >
27
26
- <code ><a href =" ./src/resources/shared.ts " >ToolResponseMessage</a ></code >
28
27
- <code ><a href =" ./src/resources/shared.ts " >UserMessage</a ></code >
Original file line number Diff line number Diff line change @@ -699,7 +699,6 @@ 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 ;
703
702
export type ToolParamDefinition = API . ToolParamDefinition ;
704
703
export type ToolResponseMessage = API . ToolResponseMessage ;
705
704
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 : Shared . ToolCallOrString ;
238
+ tool_call : string | Shared . ToolCall ;
239
239
240
240
/**
241
241
* Discriminator type of the delta. Always "tool_call"
@@ -949,11 +949,6 @@ 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
-
957
952
export interface ToolParamDefinition {
958
953
param_type : string ;
959
954
You can’t perform that action at this time.
0 commit comments