Skip to content
This repository was archived by the owner on Aug 14, 2025. It is now read-only.

Commit fa60dbf

Browse files
feat(api): update via SDK Studio
1 parent afda79e commit fa60dbf

File tree

4 files changed

+2
-9
lines changed

4 files changed

+2
-9
lines changed

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 106
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/llamastack%2Fllama-stack-client-c371abef4463f174f8d35ef3da4697fae5eb221db615f9c305319196472f313b.yml
33
openapi_spec_hash: d9bb62faf229c2c2875c732715e9cfd1
4-
config_hash: de16e52db65de71ac35adcdb665a74f5
4+
config_hash: 82fe79ebe3e65787cd877faf812ee79e

api.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ Types:
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>
2625
- <code><a href="./src/resources/shared.ts">ToolParamDefinition</a></code>
2726
- <code><a href="./src/resources/shared.ts">ToolResponseMessage</a></code>
2827
- <code><a href="./src/resources/shared.ts">UserMessage</a></code>

src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -699,7 +699,6 @@ 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;
703702
export type ToolParamDefinition = API.ToolParamDefinition;
704703
export type ToolResponseMessage = API.ToolResponseMessage;
705704
export type UserMessage = API.UserMessage;

src/resources/shared.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff 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: Shared.ToolCallOrString;
238+
tool_call: string | Shared.ToolCall;
239239

240240
/**
241241
* Discriminator type of the delta. Always "tool_call"
@@ -949,11 +949,6 @@ 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-
957952
export interface ToolParamDefinition {
958953
param_type: string;
959954

0 commit comments

Comments
 (0)