Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion packages/langbase/src/langbase/langbase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ export interface RunOptionsBase {
name?: string; // Pipe name for SDK,
apiKey?: string; // pipe level key for SDK
llmKey?: string; // LLM API key
json?: boolean;
json?: boolean
memory?: RuntimeMemory;
}

export interface RunOptionsT extends RunOptionsBase {
Expand Down Expand Up @@ -101,6 +102,10 @@ export interface Function {
arguments: string;
}

export type RuntimeMemory = {
name: string;
}[];

export interface ToolCall {
id: string;
type: 'function';
Expand Down
Loading