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 3aee64b commit 935b8fdCopy full SHA for 935b8fd
packages/langbase/src/langbase/langbase.ts
@@ -14,6 +14,7 @@ export interface RunOptionsBase {
14
apiKey?: string; // pipe level key for SDK
15
llmKey?: string; // LLM API key
16
json?: boolean
17
+ memory?: RuntimeMemory;
18
}
19
20
export interface RunOptionsT extends RunOptionsBase {
@@ -77,6 +78,10 @@ export interface Function {
77
78
arguments: string;
79
80
81
+export type RuntimeMemory = {
82
+ name: string;
83
+}[];
84
+
85
export interface ToolCall {
86
id: string;
87
type: 'function';
0 commit comments