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
|
@@ -11518,30 +11518,32 @@ var init_cloudflare = __esm({
|
|
|
11518
11518
|
cloudflareProvider = {
|
|
11519
11519
|
id: "cloudflare",
|
|
11520
11520
|
label: "Cloudflare AI Gateway",
|
|
11521
|
-
summary: "Route
|
|
11522
|
-
|
|
11521
|
+
summary: "Route coding agents through Cloudflare AI Gateway.",
|
|
11522
|
+
baseUrlEnvVar: "CF_AIG_BASE_URL",
|
|
11523
|
+
requiresBaseUrl: true,
|
|
11524
|
+
modelInput: { kind: "freeform" },
|
|
11523
11525
|
auth: {
|
|
11524
11526
|
kind: "api-key",
|
|
11525
|
-
envVar: "
|
|
11527
|
+
envVar: "CF_AIG_TOKEN",
|
|
11526
11528
|
storageKey: "provider:cloudflare",
|
|
11527
|
-
prompt: { title: "Cloudflare
|
|
11529
|
+
prompt: { title: "Cloudflare AI Gateway token" }
|
|
11528
11530
|
},
|
|
11529
11531
|
apiShapes: [
|
|
11530
11532
|
{
|
|
11531
11533
|
id: "openai-chat-completions",
|
|
11532
|
-
|
|
11534
|
+
baseUrlPath: "compat"
|
|
11533
11535
|
},
|
|
11534
11536
|
{
|
|
11535
11537
|
id: "openai-responses",
|
|
11536
|
-
|
|
11538
|
+
baseUrlPath: "openai"
|
|
11537
11539
|
},
|
|
11538
11540
|
{
|
|
11539
11541
|
id: "anthropic-messages",
|
|
11540
|
-
|
|
11542
|
+
baseUrlPath: "anthropic"
|
|
11541
11543
|
},
|
|
11542
11544
|
{
|
|
11543
11545
|
id: "google-generations",
|
|
11544
|
-
|
|
11546
|
+
baseUrlPath: "google-ai-studio"
|
|
11545
11547
|
}
|
|
11546
11548
|
]
|
|
11547
11549
|
};
|
|
@@ -12134,7 +12136,7 @@ var require_requirements_txt = __commonJS({
|
|
|
12134
12136
|
// src/templates/codex/config.toml.mustache
|
|
12135
12137
|
var require_config_toml = __commonJS({
|
|
12136
12138
|
"src/templates/codex/config.toml.mustache"(exports, module) {
|
|
12137
|
-
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';
|
|
12139
|
+
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';
|
|
12138
12140
|
}
|
|
12139
12141
|
});
|
|
12140
12142
|
|
|
@@ -28822,19 +28824,6 @@ var CLAUDE_CODE_VARIANTS = {
|
|
|
28822
28824
|
opus: "anthropic/claude-opus-4.7"
|
|
28823
28825
|
};
|
|
28824
28826
|
var DEFAULT_CLAUDE_CODE_MODEL = CLAUDE_CODE_VARIANTS.sonnet;
|
|
28825
|
-
var CODEX_MODELS = [
|
|
28826
|
-
"openai/gpt-5.5",
|
|
28827
|
-
"openai/gpt-5.4",
|
|
28828
|
-
"openai/gpt-5.3-codex",
|
|
28829
|
-
"openai/gpt-5.2-codex",
|
|
28830
|
-
"openai/gpt-5.2",
|
|
28831
|
-
"openai/gpt-5.2-chat",
|
|
28832
|
-
"openai/gpt-5.2-pro",
|
|
28833
|
-
"openai/gpt-5.1",
|
|
28834
|
-
"openai/gpt-5.1-codex-mini",
|
|
28835
|
-
"anthropic/claude-opus-4.7"
|
|
28836
|
-
];
|
|
28837
|
-
var DEFAULT_CODEX_MODEL = CODEX_MODELS[0];
|
|
28838
28827
|
var KIMI_MODELS = [
|
|
28839
28828
|
"novitaai/kimi-k2.5",
|
|
28840
28829
|
"novitaai/kimi-k2-thinking",
|