Skip to content

Commit fafe641

Browse files
committed
📦 NEW: Runtime memory
1 parent 00be528 commit fafe641

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
@@ -13,6 +13,7 @@ export interface RunOptionsBase {
1313
name?: string; // Pipe name for SDK,
1414
apiKey?: string; // pipe level key for SDK
1515
llmKey?: string; // LLM API key
16+
memory?: RuntimeMemory;
1617
}
1718

1819
export interface RunOptionsT extends RunOptionsBase {
@@ -76,6 +77,10 @@ export interface Function {
7677
arguments: string;
7778
}
7879

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

0 commit comments

Comments
 (0)