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 4442d30 commit 1589758Copy full SHA for 1589758
packages/agent-cli/agent-cli.ts
@@ -152,7 +152,6 @@ export async function run() {
152
const azureADTokenProvider = getBearerTokenProvider(new DefaultAzureCredential(), 'https://cognitiveservices.azure.com/.default');;
153
154
model = new AzureChatOpenAI({
155
- temperature: 0.3,
156
azureADTokenProvider,
157
azureOpenAIApiVersion: process.env.AZURE_OPENAI_API_VERSION,
158
});
packages/agent-cli/bin/cli.js
100644
100755
@@ -1,4 +1,4 @@
1
#!/usr/bin/env node
2
-import { run } from '../../agent-api/dist/agent-cli.js';
+import { run } from '../dist/agent-cli.js';
3
4
await run();
0 commit comments