drop inputs.defaultAgent

This commit is contained in:
David Blass
2025-11-21 15:40:47 -05:00
parent bef3f7794c
commit fda0de8dfe
5 changed files with 6 additions and 26 deletions
-1
View File
@@ -27,7 +27,6 @@ export async function run(prompt: string): Promise<AgentResult> {
// we don't need to extract it here since main() will parse the payload
const inputs: Required<Inputs> = {
prompt,
defaultAgent: "gemini",
...flatMorph(agents, (_, agent) =>
agent.apiKeyNames.map((inputKey) => [inputKey, process.env[inputKey.toUpperCase()]])
),