We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00be528 commit fafe641Copy full SHA for fafe641
packages/langbase/src/langbase/langbase.ts
@@ -13,6 +13,7 @@ export interface RunOptionsBase {
13
name?: string; // Pipe name for SDK,
14
apiKey?: string; // pipe level key for SDK
15
llmKey?: string; // LLM API key
16
+ memory?: RuntimeMemory;
17
}
18
19
export interface RunOptionsT extends RunOptionsBase {
@@ -76,6 +77,10 @@ export interface Function {
76
77
arguments: string;
78
79
80
+export type RuntimeMemory = {
81
+ name: string;
82
+}[];
83
+
84
export interface ToolCall {
85
id: string;
86
type: 'function';
0 commit comments