@exreve/exk 1.0.43 → 1.0.44
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/dist/agentSession.js +1 -1
- package/dist/moduleMcpServer.js +3 -0
- package/dist/ttc-cli.tar.gz +0 -0
- package/package.json +1 -1
package/dist/agentSession.js
CHANGED
|
@@ -149,7 +149,7 @@ const PROVIDERS = {
|
|
|
149
149
|
openrouter: {
|
|
150
150
|
apiKey: '', // Populated from ai-config.json openrouterApiKey (served by backend)
|
|
151
151
|
baseUrl: 'https://openrouter.ai/api',
|
|
152
|
-
models: ['gpt-oss-120b:
|
|
152
|
+
models: ['gpt-oss-120b:cerebras'],
|
|
153
153
|
},
|
|
154
154
|
};
|
|
155
155
|
/** Resolve which provider to use based on model name or explicit provider ID.
|
package/dist/moduleMcpServer.js
CHANGED
|
@@ -190,6 +190,7 @@ function createBrowserQueryTool(config) {
|
|
|
190
190
|
schema: z.string().optional().describe('JSON schema for structured output, as a JSON string (e.g. \'{"type":"object","properties":{"price":{"type":"number"}}}\')'),
|
|
191
191
|
maxSteps: z.number().optional().describe('Max automation steps, default 20. Use lower values for simple tasks.'),
|
|
192
192
|
country: z.string().optional().describe('2-letter country code for proxy and locale (e.g. "US", "GB", "DE"). Uses direct connection if omitted.'),
|
|
193
|
+
mobile: z.boolean().optional().describe('If true, use mobile viewport (390x844 — iPhone 14 dimensions) instead of desktop.'),
|
|
193
194
|
}, async (args) => {
|
|
194
195
|
const apiUrl = getApiUrl();
|
|
195
196
|
// Read device ID for CLI auth
|
|
@@ -217,6 +218,8 @@ function createBrowserQueryTool(config) {
|
|
|
217
218
|
}
|
|
218
219
|
if (args.country)
|
|
219
220
|
body.country = args.country;
|
|
221
|
+
if (args.mobile)
|
|
222
|
+
body.mobile = args.mobile;
|
|
220
223
|
if (config.sessionId)
|
|
221
224
|
body.sessionId = config.sessionId;
|
|
222
225
|
if (config.promptId)
|
package/dist/ttc-cli.tar.gz
CHANGED
|
Binary file
|