Compare commits

...

3 Commits

Author SHA1 Message Date
Quan HL
f71dfb5c46 fixed mcpServers as array 2025-04-15 15:41:29 +07:00
Quan HL
f567d985a0 fix typo 2025-04-14 09:18:12 +07:00
Quan HL
8c00eb02ed allow cmpServer configuration in LLM 2025-04-14 09:16:24 +07:00
2 changed files with 22 additions and 1 deletions

View File

@@ -447,7 +447,8 @@
"eventHook": "object|string",
"toolHook": "object|string",
"events": "array",
"llmOptions": "object"
"llmOptions": "object",
"mcpServers": "array"
},
"required": [
"vendor",

View File

@@ -522,6 +522,26 @@ test("validate correct verbs", async (t) => {
},
"dual_streams": true,
"timeLimit" : 10
},
{
"verb": "llm",
"vendor": 'ultravox',
"model": 'fixie-ai/ultravox',
"auth": {
"apiKey": "sk-1234567890abcdefg"
},
"llmOptions": {
"firstSpeaker": 'FIRST_SPEAKER_AGENT',
},
"mcpServers": [
{
"url": 'https://mcp.example.com',
"auth": {
"username": 'username',
"password": 'password'
}
}
]
}
];
try {