Skip to content

Commit ac09ac9

Browse files
author
Andy Brenneke
committed
Build fix
1 parent 98d013d commit ac09ac9

3 files changed

Lines changed: 2 additions & 5 deletions

File tree

packages/core/src/model/Settings.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,4 @@ export interface Settings<PluginSettings = Record<string, Record<string, unknown
1515
openAiEndpoint?: string;
1616

1717
chatNodeHeaders?: Record<string, string>;
18-
19-
// anthropicApiKey?: string;
20-
// assemblyAiApiKey?: string;
21-
22-
//
2318
}

packages/node/src/api.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ export function createProcessor(project: Project, options: RunGraphOptions) {
203203
pluginEnv: options.pluginEnv ?? {},
204204
pluginSettings: options.pluginSettings ?? {},
205205
recordingPlaybackLatency: 1000,
206+
chatNodeHeaders: options.chatNodeHeaders ?? {},
206207
} satisfies Required<Settings>,
207208
},
208209
resolvedInputs,

packages/trivet/src/api.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ export function createTestGraphRunner(opts: { openAiKey: string; executor?: 'nod
5757
pluginEnv: {},
5858
pluginSettings: {},
5959
recordingPlaybackLatency: 1000,
60+
chatNodeHeaders: {},
6061
} satisfies Required<Settings>,
6162
},
6263
inputs,

0 commit comments

Comments
 (0)