Skip to content

Commit 9982790

Browse files
📦 NEW: Runtime memory (#86)
1 parent 11b1d99 commit 9982790

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

packages/langbase/src/langbase/langbase.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ 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-
json?: boolean;
16+
json?: boolean
17+
memory?: RuntimeMemory;
1718
}
1819

1920
export interface RunOptionsT extends RunOptionsBase {
@@ -101,6 +102,10 @@ export interface Function {
101102
arguments: string;
102103
}
103104

105+
export type RuntimeMemory = {
106+
name: string;
107+
}[];
108+
104109
export interface ToolCall {
105110
id: string;
106111
type: 'function';

0 commit comments

Comments
 (0)