@naram/codex-switch 0.1.2 → 0.1.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/dist/index.js +5 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1199,6 +1199,10 @@ function buildConfigToml(spec) {
|
|
|
1199
1199
|
const providerId = spec.providerId ?? providerIdForAlias("profile");
|
|
1200
1200
|
lines.push(`model_provider = ${tomlString(providerId)}`);
|
|
1201
1201
|
lines.push("");
|
|
1202
|
+
lines.push("[features]");
|
|
1203
|
+
lines.push("multi_agent = false");
|
|
1204
|
+
lines.push("multi_agent_v2 = false");
|
|
1205
|
+
lines.push("");
|
|
1202
1206
|
lines.push(`[model_providers.${tomlKeyPath(providerId)}]`);
|
|
1203
1207
|
lines.push(`name = ${tomlString(providerId)}`);
|
|
1204
1208
|
lines.push(`base_url = ${tomlString(spec.baseUrl)}`);
|
|
@@ -1912,7 +1916,7 @@ async function runRemove(aliasArg) {
|
|
|
1912
1916
|
}
|
|
1913
1917
|
|
|
1914
1918
|
// src/index.ts
|
|
1915
|
-
var VERSION = "0.1.
|
|
1919
|
+
var VERSION = "0.1.3";
|
|
1916
1920
|
var HELP = `${color.bold("codex-switch")} \u2014 set up isolated Codex profiles
|
|
1917
1921
|
|
|
1918
1922
|
${color.bold("USAGE")}
|