Skip to content
Merged
Changes from 1 commit
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
5 changes: 5 additions & 0 deletions packages/langbase/src/langbase/langbase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export interface RunOptionsBase {
apiKey?: string; // pipe level key for SDK
llmKey?: string; // LLM API key
json?: boolean
memory?: RuntimeMemory;
}

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

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

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