@mrrlin-dev/external-agents 0.2.9 → 0.2.10
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/package.json +1 -1
- package/ui.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mrrlin-dev/external-agents",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.10",
|
|
4
4
|
"description": "One MCP server for every LLM you talk to — direct-API dispatcher across Gemini, DeepSeek, Groq, OpenRouter, Cerebras, and more. Part of mrrlin.com.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "server.js",
|
package/ui.js
CHANGED
|
@@ -310,7 +310,7 @@ function renderUnlock(agents) {
|
|
|
310
310
|
const rows = providers.map(p => {
|
|
311
311
|
const m = PROVIDER_META[p] || { label: p, pitch: "", signup: "#", env: "?" };
|
|
312
312
|
const count = missing.filter(a => a.provider === p).length;
|
|
313
|
-
// Ollama-cloud uses its own CLI (
|
|
313
|
+
// Ollama-cloud uses its own CLI ('ollama' — no API key input needed),
|
|
314
314
|
// so its row skips the input + Save and just shows the signup/download link.
|
|
315
315
|
const hasEnvInput = !!m.env && !m.env.startsWith("(");
|
|
316
316
|
const keyInput = hasEnvInput
|