@@ -58,6 +58,14 @@ import {
5858 Models ,
5959} from './resources/models' ;
6060import { ListProvidersResponse , ProviderListResponse , Providers } from './resources/providers' ;
61+ import {
62+ ResponseCreateParams ,
63+ ResponseCreateParamsNonStreaming ,
64+ ResponseCreateParamsStreaming ,
65+ ResponseObject ,
66+ ResponseObjectStream ,
67+ Responses ,
68+ } from './resources/responses' ;
6169import { ListRoutesResponse , RouteListResponse , Routes } from './resources/routes' ;
6270import { RunShieldResponse , Safety , SafetyRunShieldParams } from './resources/safety' ;
6371import {
@@ -275,6 +283,7 @@ export class LlamaStackClient extends Core.APIClient {
275283 toolgroups : API . Toolgroups = new API . Toolgroups ( this ) ;
276284 tools : API . Tools = new API . Tools ( this ) ;
277285 toolRuntime : API . ToolRuntime = new API . ToolRuntime ( this ) ;
286+ responses : API . Responses = new API . Responses ( this ) ;
278287 agents : API . Agents = new API . Agents ( this ) ;
279288 datasets : API . Datasets = new API . Datasets ( this ) ;
280289 eval : API . Eval = new API . Eval ( this ) ;
@@ -342,6 +351,7 @@ export class LlamaStackClient extends Core.APIClient {
342351LlamaStackClient . Toolgroups = Toolgroups ;
343352LlamaStackClient . Tools = Tools ;
344353LlamaStackClient . ToolRuntime = ToolRuntime ;
354+ LlamaStackClient . Responses = Responses ;
345355LlamaStackClient . Agents = Agents ;
346356LlamaStackClient . Datasets = Datasets ;
347357LlamaStackClient . Eval = Eval ;
@@ -396,6 +406,15 @@ export declare namespace LlamaStackClient {
396406 type ToolRuntimeListToolsParams as ToolRuntimeListToolsParams ,
397407 } ;
398408
409+ export {
410+ Responses as Responses ,
411+ type ResponseObject as ResponseObject ,
412+ type ResponseObjectStream as ResponseObjectStream ,
413+ type ResponseCreateParams as ResponseCreateParams ,
414+ type ResponseCreateParamsNonStreaming as ResponseCreateParamsNonStreaming ,
415+ type ResponseCreateParamsStreaming as ResponseCreateParamsStreaming ,
416+ } ;
417+
399418 export {
400419 Agents as Agents ,
401420 type InferenceStep as InferenceStep ,
0 commit comments