poe-code 3.0.223 → 3.0.224
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/cli/commands/configure-payload.js +52 -12
- package/dist/cli/commands/configure-payload.js.map +1 -1
- package/dist/cli/commands/configure.js +2 -2
- package/dist/cli/commands/configure.js.map +1 -1
- package/dist/cli/commands/provider.d.ts +1 -0
- package/dist/cli/commands/provider.js +94 -3
- package/dist/cli/commands/provider.js.map +1 -1
- package/dist/cli/commands/shared.d.ts +4 -1
- package/dist/cli/commands/shared.js +55 -5
- package/dist/cli/commands/shared.js.map +1 -1
- package/dist/cli/constants.d.ts +1 -2
- package/dist/cli/constants.js +1 -13
- package/dist/cli/constants.js.map +1 -1
- package/dist/cli/options.d.ts +1 -1
- package/dist/cli/options.js +10 -1
- package/dist/cli/options.js.map +1 -1
- package/dist/cli/prompt-runner.js +4 -2
- package/dist/cli/prompt-runner.js.map +1 -1
- package/dist/cli/prompts.d.ts +3 -1
- package/dist/cli/prompts.js +13 -0
- package/dist/cli/prompts.js.map +1 -1
- package/dist/index.js +244 -39
- package/dist/index.js.map +3 -3
- package/dist/providers/claude-code.js +11 -22
- package/dist/providers/claude-code.js.map +2 -2
- package/dist/providers/codex.js +19 -29
- package/dist/providers/codex.js.map +2 -2
- package/dist/providers/goose.js +11 -22
- package/dist/providers/goose.js.map +2 -2
- package/dist/providers/kimi.js +11 -22
- package/dist/providers/kimi.js.map +2 -2
- package/dist/providers/opencode.js +11 -22
- package/dist/providers/opencode.js.map +2 -2
- package/dist/providers/poe-agent.js +11 -22
- package/dist/providers/poe-agent.js.map +2 -2
- package/package.json +1 -1
- package/packages/memory/dist/index.js +10 -8
- package/packages/memory/dist/index.js.map +2 -2
|
@@ -48,7 +48,7 @@ var require_requirements_txt = __commonJS({
|
|
|
48
48
|
// src/templates/codex/config.toml.mustache
|
|
49
49
|
var require_config_toml = __commonJS({
|
|
50
50
|
"src/templates/codex/config.toml.mustache"(exports, module) {
|
|
51
|
-
module.exports = 'model_provider = "{{providerId}}"\n\n[profiles."{{{profileName}}}"]\nmodel = "{{{model}}}"\nmodel_provider = "{{providerId}}"\nmodel_reasoning_effort = "{{reasoningEffort}}"\nmodel_verbosity = "medium"\n\n[model_providers.{{providerId}}]\nname = "{{providerId}}"\nbase_url = "{{{baseUrl}}}"\nwire_api = "responses"\nexperimental_bearer_token = "{{apiKey}}"\nrequires_openai_auth = false\nsupports_websockets = false\n';
|
|
51
|
+
module.exports = 'model_provider = "{{providerId}}"\nmodel = "{{{model}}}"\nmodel_reasoning_effort = "{{reasoningEffort}}"\nmodel_verbosity = "medium"\n\n[profiles."{{{profileName}}}"]\nmodel = "{{{model}}}"\nmodel_provider = "{{providerId}}"\nmodel_reasoning_effort = "{{reasoningEffort}}"\nmodel_verbosity = "medium"\n\n[model_providers.{{providerId}}]\nname = "{{providerId}}"\nbase_url = "{{{baseUrl}}}"\nwire_api = "responses"\nexperimental_bearer_token = "{{apiKey}}"\nrequires_openai_auth = false\nsupports_websockets = false\n';
|
|
52
52
|
}
|
|
53
53
|
});
|
|
54
54
|
|
|
@@ -67,19 +67,6 @@ var CLAUDE_CODE_VARIANTS = {
|
|
|
67
67
|
opus: "anthropic/claude-opus-4.7"
|
|
68
68
|
};
|
|
69
69
|
var DEFAULT_CLAUDE_CODE_MODEL = CLAUDE_CODE_VARIANTS.sonnet;
|
|
70
|
-
var CODEX_MODELS = [
|
|
71
|
-
"openai/gpt-5.5",
|
|
72
|
-
"openai/gpt-5.4",
|
|
73
|
-
"openai/gpt-5.3-codex",
|
|
74
|
-
"openai/gpt-5.2-codex",
|
|
75
|
-
"openai/gpt-5.2",
|
|
76
|
-
"openai/gpt-5.2-chat",
|
|
77
|
-
"openai/gpt-5.2-pro",
|
|
78
|
-
"openai/gpt-5.1",
|
|
79
|
-
"openai/gpt-5.1-codex-mini",
|
|
80
|
-
"anthropic/claude-opus-4.7"
|
|
81
|
-
];
|
|
82
|
-
var DEFAULT_CODEX_MODEL = CODEX_MODELS[0];
|
|
83
70
|
var KIMI_MODELS = [
|
|
84
71
|
"novitaai/kimi-k2.5",
|
|
85
72
|
"novitaai/kimi-k2-thinking",
|
|
@@ -4972,30 +4959,32 @@ var anthropicProvider = {
|
|
|
4972
4959
|
var cloudflareProvider = {
|
|
4973
4960
|
id: "cloudflare",
|
|
4974
4961
|
label: "Cloudflare AI Gateway",
|
|
4975
|
-
summary: "Route
|
|
4976
|
-
|
|
4962
|
+
summary: "Route coding agents through Cloudflare AI Gateway.",
|
|
4963
|
+
baseUrlEnvVar: "CF_AIG_BASE_URL",
|
|
4964
|
+
requiresBaseUrl: true,
|
|
4965
|
+
modelInput: { kind: "freeform" },
|
|
4977
4966
|
auth: {
|
|
4978
4967
|
kind: "api-key",
|
|
4979
|
-
envVar: "
|
|
4968
|
+
envVar: "CF_AIG_TOKEN",
|
|
4980
4969
|
storageKey: "provider:cloudflare",
|
|
4981
|
-
prompt: { title: "Cloudflare
|
|
4970
|
+
prompt: { title: "Cloudflare AI Gateway token" }
|
|
4982
4971
|
},
|
|
4983
4972
|
apiShapes: [
|
|
4984
4973
|
{
|
|
4985
4974
|
id: "openai-chat-completions",
|
|
4986
|
-
|
|
4975
|
+
baseUrlPath: "compat"
|
|
4987
4976
|
},
|
|
4988
4977
|
{
|
|
4989
4978
|
id: "openai-responses",
|
|
4990
|
-
|
|
4979
|
+
baseUrlPath: "openai"
|
|
4991
4980
|
},
|
|
4992
4981
|
{
|
|
4993
4982
|
id: "anthropic-messages",
|
|
4994
|
-
|
|
4983
|
+
baseUrlPath: "anthropic"
|
|
4995
4984
|
},
|
|
4996
4985
|
{
|
|
4997
4986
|
id: "google-generations",
|
|
4998
|
-
|
|
4987
|
+
baseUrlPath: "google-ai-studio"
|
|
4999
4988
|
}
|
|
5000
4989
|
]
|
|
5001
4990
|
};
|