Skip to content

Commit 935b8fd

Browse files
committed
📦 NEW: Runtime memory
1 parent 3aee64b commit 935b8fd

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

packages/langbase/src/langbase/langbase.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ export interface RunOptionsBase {
1414
apiKey?: string; // pipe level key for SDK
1515
llmKey?: string; // LLM API key
1616
json?: boolean
17+
memory?: RuntimeMemory;
1718
}
1819

1920
export interface RunOptionsT extends RunOptionsBase {
@@ -77,6 +78,10 @@ export interface Function {
7778
arguments: string;
7879
}
7980

81+
export type RuntimeMemory = {
82+
name: string;
83+
}[];
84+
8085
export interface ToolCall {
8186
id: string;
8287
type: 'function';

0 commit comments

Comments
 (0)