polydev-ai 1.8.2 → 1.8.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/mcp/stdio-wrapper.js +1 -1
- package/package.json +1 -1
package/mcp/stdio-wrapper.js
CHANGED
|
@@ -686,7 +686,7 @@ class StdioMCPWrapper {
|
|
|
686
686
|
// Format CLI responses for logging on the server
|
|
687
687
|
const cliResponses = localResults.map(result => ({
|
|
688
688
|
provider_id: result.provider_id,
|
|
689
|
-
model: result.
|
|
689
|
+
model: result.model_used || this.getDefaultModelForCli(result.provider_id),
|
|
690
690
|
content: result.content || '',
|
|
691
691
|
tokens_used: result.tokens_used || 0,
|
|
692
692
|
latency_ms: result.latency_ms || 0,
|
package/package.json
CHANGED