@@ -8,12 +8,6 @@ import * as Pagination from './pagination';
88import { type DatasetsIterrowsParams , DatasetsIterrowsResponse } from './pagination' ;
99import * as Uploads from './uploads' ;
1010import * as API from './resources/index' ;
11- import {
12- BatchInference ,
13- BatchInferenceChatCompletionParams ,
14- BatchInferenceChatCompletionResponse ,
15- BatchInferenceCompletionParams ,
16- } from './resources/batch-inference' ;
1711import {
1812 Benchmark ,
1913 BenchmarkListResponse ,
@@ -36,6 +30,9 @@ import {
3630 CompletionResponse ,
3731 EmbeddingsResponse ,
3832 Inference ,
33+ InferenceBatchChatCompletionParams ,
34+ InferenceBatchChatCompletionResponse ,
35+ InferenceBatchCompletionParams ,
3936 InferenceChatCompletionParams ,
4037 InferenceChatCompletionParamsNonStreaming ,
4138 InferenceChatCompletionParamsStreaming ,
@@ -157,6 +154,7 @@ import {
157154 ToolRuntime ,
158155 ToolRuntimeInvokeToolParams ,
159156 ToolRuntimeListToolsParams ,
157+ ToolRuntimeListToolsResponse ,
160158} from './resources/tool-runtime/tool-runtime' ;
161159
162160export interface ClientOptions {
@@ -270,7 +268,6 @@ export class LlamaStackClient extends Core.APIClient {
270268 tools : API . Tools = new API . Tools ( this ) ;
271269 toolRuntime : API . ToolRuntime = new API . ToolRuntime ( this ) ;
272270 agents : API . Agents = new API . Agents ( this ) ;
273- batchInference : API . BatchInference = new API . BatchInference ( this ) ;
274271 datasets : API . Datasets = new API . Datasets ( this ) ;
275272 eval : API . Eval = new API . Eval ( this ) ;
276273 inspect : API . Inspect = new API . Inspect ( this ) ;
@@ -336,7 +333,6 @@ LlamaStackClient.Toolgroups = Toolgroups;
336333LlamaStackClient . Tools = Tools ;
337334LlamaStackClient . ToolRuntime = ToolRuntime ;
338335LlamaStackClient . Agents = Agents ;
339- LlamaStackClient . BatchInference = BatchInference ;
340336LlamaStackClient . Datasets = Datasets ;
341337LlamaStackClient . Eval = Eval ;
342338LlamaStackClient . Inspect = Inspect ;
@@ -383,6 +379,7 @@ export declare namespace LlamaStackClient {
383379 ToolRuntime as ToolRuntime ,
384380 type ToolDef as ToolDef ,
385381 type ToolInvocationResult as ToolInvocationResult ,
382+ type ToolRuntimeListToolsResponse as ToolRuntimeListToolsResponse ,
386383 type ToolRuntimeInvokeToolParams as ToolRuntimeInvokeToolParams ,
387384 type ToolRuntimeListToolsParams as ToolRuntimeListToolsParams ,
388385 } ;
@@ -398,13 +395,6 @@ export declare namespace LlamaStackClient {
398395 type AgentCreateParams as AgentCreateParams ,
399396 } ;
400397
401- export {
402- BatchInference as BatchInference ,
403- type BatchInferenceChatCompletionResponse as BatchInferenceChatCompletionResponse ,
404- type BatchInferenceChatCompletionParams as BatchInferenceChatCompletionParams ,
405- type BatchInferenceCompletionParams as BatchInferenceCompletionParams ,
406- } ;
407-
408398 export {
409399 Datasets as Datasets ,
410400 type ListDatasetsResponse as ListDatasetsResponse ,
@@ -442,6 +432,9 @@ export declare namespace LlamaStackClient {
442432 type CompletionResponse as CompletionResponse ,
443433 type EmbeddingsResponse as EmbeddingsResponse ,
444434 type TokenLogProbs as TokenLogProbs ,
435+ type InferenceBatchChatCompletionResponse as InferenceBatchChatCompletionResponse ,
436+ type InferenceBatchChatCompletionParams as InferenceBatchChatCompletionParams ,
437+ type InferenceBatchCompletionParams as InferenceBatchCompletionParams ,
445438 type InferenceChatCompletionParams as InferenceChatCompletionParams ,
446439 type InferenceChatCompletionParamsNonStreaming as InferenceChatCompletionParamsNonStreaming ,
447440 type InferenceChatCompletionParamsStreaming as InferenceChatCompletionParamsStreaming ,
0 commit comments