We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11b1d99 commit 9982790Copy full SHA for 9982790
1 file changed
packages/langbase/src/langbase/langbase.ts
@@ -13,7 +13,8 @@ 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
- json?: boolean;
+ json?: boolean
17
+ memory?: RuntimeMemory;
18
}
19
20
export interface RunOptionsT extends RunOptionsBase {
@@ -101,6 +102,10 @@ export interface Function {
101
102
arguments: string;
103
104
105
+export type RuntimeMemory = {
106
+ name: string;
107
+}[];
108
+
109
export interface ToolCall {
110
id: string;
111
type: 'function';
0 commit comments