@psnext/slingcli 2.4.20260507-3 → 2.4.20260509-1
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/LICENSE +1 -1
- package/README.md +1 -1
- package/bin/sling.js +12 -12
- package/node_modules/@aws-sdk/client-bedrock-runtime/package.json +2 -2
- package/node_modules/@aws-sdk/token-providers/package.json +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-agent-core/dist/agent-loop.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-agent-core/dist/agent.js +4 -3
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/agent-harness.js +526 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/branch-summarization.js +243 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/compaction/compaction.js +616 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/env/nodejs.js +348 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/execution-env.js +3 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/factory.js +9 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/messages.js +102 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/prompt-templates.js +194 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/jsonl.js +92 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/memory.js +42 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/repo/shared.js +31 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/session.js +196 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/storage/jsonl.js +170 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/session/storage/memory.js +90 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/skills.js +258 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/system-prompt.js +30 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/types.js +16 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/harness/utils/shell-output.js +97 -0
- package/node_modules/@earendil-works/pi-agent-core/dist/index.js +26 -0
- package/node_modules/{@mariozechner → @earendil-works}/pi-agent-core/dist/proxy.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-agent-core/package.json +7 -5
- package/node_modules/{@mariozechner → @earendil-works}/pi-ai/dist/cli.js +6 -6
- package/node_modules/{@mariozechner → @earendil-works}/pi-ai/dist/env-api-keys.js +1 -0
- package/node_modules/@earendil-works/pi-ai/dist/image-models.generated.js +307 -0
- package/node_modules/@earendil-works/pi-ai/dist/image-models.js +23 -0
- package/node_modules/@earendil-works/pi-ai/dist/images-api-registry.js +22 -0
- package/node_modules/@earendil-works/pi-ai/dist/images.js +14 -0
- package/node_modules/{@mariozechner → @earendil-works}/pi-ai/dist/index.js +4 -0
- package/node_modules/{@mariozechner → @earendil-works}/pi-ai/dist/models.generated.js +427 -122
- package/node_modules/@earendil-works/pi-ai/dist/providers/images/openrouter.js +129 -0
- package/node_modules/@earendil-works/pi-ai/dist/providers/images/register-builtins.js +34 -0
- package/node_modules/{@mariozechner → @earendil-works}/pi-ai/dist/providers/openai-codex-responses.js +1 -1
- package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/providers/openai-completions.js +150 -122
- package/node_modules/{@mariozechner → @earendil-works}/pi-ai/dist/providers/openai-responses-shared.js +14 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-ai/dist/utils/oauth/openai-codex.js +25 -14
- package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/utils/overflow.js +3 -0
- package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/package.json +5 -4
- package/node_modules/@earendil-works/pi-coding-agent/dist/bun/register-bedrock.js +4 -0
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/cli/args.js +1 -0
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/cli/config-selector.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/cli/list-models.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/cli/session-picker.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/config.js +52 -30
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/agent-session.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/auth-storage.js +2 -2
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/compaction/branch-summarization.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/compaction/compaction.js +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/compaction/utils.js +153 -0
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/export-html/template.css +45 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/export-html/template.js +68 -4
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/extensions/loader.js +26 -12
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/keybindings.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/model-registry.js +3 -2
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/model-resolver.js +2 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/package-manager.js +22 -5
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/provider-display-names.js +1 -0
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/sdk.js +3 -3
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/tools/bash.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/tools/edit.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/tools/find.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/tools/grep.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/tools/ls.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/tools/read.js +3 -2
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/tools/render-utils.js +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/core/tools/truncate.js +205 -0
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/tools/write.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/main.js +2 -2
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/migrations.js +3 -3
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/assistant-message.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/bash-execution.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/bordered-loader.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/branch-summary-message.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/compaction-summary-message.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/config-selector.js +25 -3
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/custom-editor.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/custom-message.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/earendil-announcement.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/extension-editor.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/extension-input.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/extension-selector.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/footer.js +1 -1
- package/node_modules/@earendil-works/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.js +36 -0
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/login-dialog.js +4 -3
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/model-selector.js +2 -2
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/oauth-selector.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/scoped-models-selector.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/session-selector-search.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/session-selector.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/settings-selector.js +4 -2
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/show-images-selector.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/skill-invocation-message.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/theme-selector.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/thinking-selector.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/tool-execution.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/tree-selector.js +3 -2
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/user-message-selector.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/user-message.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/visual-truncate.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/interactive-mode.js +47 -32
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/theme/dark.json +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/theme/light.json +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/theme/theme.js +1 -1
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/package-manager-cli.js +42 -39
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/utils/clipboard.js +9 -2
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/utils/paths.js +16 -0
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/utils/version-check.js +9 -2
- package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/package.json +9 -8
- package/node_modules/{@mariozechner → @earendil-works}/pi-tui/dist/components/image.js +14 -7
- package/node_modules/{@mariozechner → @earendil-works}/pi-tui/dist/components/markdown.js +24 -84
- package/node_modules/{@mariozechner → @earendil-works}/pi-tui/dist/terminal-image.js +10 -4
- package/node_modules/{@mariozechner → @earendil-works}/pi-tui/dist/tui.js +73 -4
- package/node_modules/{@mariozechner → @earendil-works}/pi-tui/dist/utils.js +33 -7
- package/node_modules/{@mariozechner → @earendil-works}/pi-tui/package.json +3 -3
- package/node_modules/@mariozechner/clipboard/README.md +58 -0
- package/node_modules/@mariozechner/clipboard/index.d.ts +23 -0
- package/node_modules/@mariozechner/clipboard-linux-x64-gnu/README.md +3 -0
- package/node_modules/@types/node/README.md +1 -1
- package/node_modules/@types/node/http2.d.ts +4 -1
- package/node_modules/@types/node/package.json +2 -2
- package/node_modules/@types/node/stream/web.d.ts +4 -0
- package/node_modules/brace-expansion/dist/commonjs/index.js +1 -1
- package/node_modules/brace-expansion/dist/commonjs/index.js.map +1 -1
- package/node_modules/brace-expansion/dist/esm/index.js +1 -1
- package/node_modules/brace-expansion/dist/esm/index.js.map +1 -1
- package/node_modules/brace-expansion/package.json +1 -1
- package/node_modules/fast-xml-builder/CHANGELOG.md +4 -0
- package/node_modules/fast-xml-builder/lib/fxb.cjs +1 -1
- package/node_modules/fast-xml-builder/lib/fxb.d.cts +91 -1
- package/node_modules/fast-xml-builder/lib/fxb.min.js +1 -1
- package/node_modules/fast-xml-builder/lib/fxb.min.js.map +1 -1
- package/node_modules/fast-xml-builder/package.json +3 -2
- package/node_modules/fast-xml-builder/src/fxb.d.ts +92 -3
- package/node_modules/fast-xml-builder/src/fxb.js +92 -31
- package/node_modules/fast-xml-builder/src/orderedJs2Xml.js +87 -33
- package/node_modules/get-east-asian-width/lookup-data.js +15 -12
- package/node_modules/get-east-asian-width/lookup.js +25 -22
- package/node_modules/get-east-asian-width/package.json +1 -1
- package/node_modules/jiti/README.md +258 -0
- package/node_modules/jiti/dist/babel.cjs +257 -0
- package/node_modules/jiti/dist/jiti.cjs +1 -0
- package/node_modules/jiti/lib/jiti.mjs +29 -0
- package/node_modules/jiti/lib/types.d.ts +420 -0
- package/node_modules/jiti/package.json +146 -0
- package/node_modules/protobufjs/dist/light/protobuf.js +5 -3
- package/node_modules/protobufjs/dist/light/protobuf.js.map +1 -1
- package/node_modules/protobufjs/dist/light/protobuf.min.js +3 -3
- package/node_modules/protobufjs/dist/light/protobuf.min.js.map +1 -1
- package/node_modules/protobufjs/dist/minimal/protobuf.js +2 -2
- package/node_modules/protobufjs/dist/minimal/protobuf.min.js +2 -2
- package/node_modules/protobufjs/dist/protobuf.js +5 -3
- package/node_modules/protobufjs/dist/protobuf.js.map +1 -1
- package/node_modules/protobufjs/dist/protobuf.min.js +3 -3
- package/node_modules/protobufjs/dist/protobuf.min.js.map +1 -1
- package/node_modules/protobufjs/package.json +1 -1
- package/node_modules/protobufjs/src/namespace.js +3 -1
- package/node_modules/semver/README.md +19 -4
- package/node_modules/semver/bin/semver.js +14 -10
- package/node_modules/semver/functions/truncate.js +48 -0
- package/node_modules/semver/index.js +2 -0
- package/node_modules/semver/internal/re.js +1 -1
- package/node_modules/semver/package.json +3 -3
- package/node_modules/semver/range.bnf +5 -4
- package/node_modules/socks/package.json +2 -2
- package/node_modules/xml-naming/README.md +189 -0
- package/node_modules/xml-naming/package.json +54 -0
- package/node_modules/xml-naming/src/index.d.ts +74 -0
- package/node_modules/xml-naming/src/index.js +270 -0
- package/package.json +6 -6
- package/sling-default-packages.json +2 -1
- package/slingshot/index.js +442 -23
- package/node_modules/@mariozechner/jiti/dist/babel.cjs +0 -246
- package/node_modules/@mariozechner/jiti/dist/jiti.cjs +0 -1
- package/node_modules/@mariozechner/jiti/package.json +0 -96
- package/node_modules/@mariozechner/pi-agent-core/dist/index.js +0 -9
- package/node_modules/@mariozechner/pi-agent-core/node_modules/@mariozechner/pi-ai/dist/cli.js +0 -116
- package/node_modules/@mariozechner/pi-agent-core/node_modules/@mariozechner/pi-ai/dist/env-api-keys.js +0 -166
- package/node_modules/@mariozechner/pi-agent-core/node_modules/@mariozechner/pi-ai/dist/index.js +0 -15
- package/node_modules/@mariozechner/pi-agent-core/node_modules/@mariozechner/pi-ai/dist/models.generated.js +0 -16568
- package/node_modules/@mariozechner/pi-agent-core/node_modules/@mariozechner/pi-ai/dist/providers/amazon-bedrock.js +0 -753
- package/node_modules/@mariozechner/pi-agent-core/node_modules/@mariozechner/pi-ai/dist/providers/openai-codex-responses.js +0 -909
- package/node_modules/@mariozechner/pi-agent-core/node_modules/@mariozechner/pi-ai/dist/providers/openai-responses-shared.js +0 -479
- package/node_modules/@mariozechner/pi-agent-core/node_modules/@mariozechner/pi-ai/dist/utils/oauth/openai-codex.js +0 -374
- package/node_modules/@mariozechner/pi-ai/dist/api-registry.js +0 -44
- package/node_modules/@mariozechner/pi-ai/dist/bedrock-provider.js +0 -6
- package/node_modules/@mariozechner/pi-ai/dist/models.js +0 -71
- package/node_modules/@mariozechner/pi-ai/dist/oauth.js +0 -2
- package/node_modules/@mariozechner/pi-ai/dist/providers/anthropic.js +0 -951
- package/node_modules/@mariozechner/pi-ai/dist/providers/azure-openai-responses.js +0 -208
- package/node_modules/@mariozechner/pi-ai/dist/providers/cloudflare.js +0 -26
- package/node_modules/@mariozechner/pi-ai/dist/providers/faux.js +0 -368
- package/node_modules/@mariozechner/pi-ai/dist/providers/github-copilot-headers.js +0 -29
- package/node_modules/@mariozechner/pi-ai/dist/providers/google-shared.js +0 -329
- package/node_modules/@mariozechner/pi-ai/dist/providers/google-vertex.js +0 -442
- package/node_modules/@mariozechner/pi-ai/dist/providers/google.js +0 -400
- package/node_modules/@mariozechner/pi-ai/dist/providers/mistral.js +0 -535
- package/node_modules/@mariozechner/pi-ai/dist/providers/openai-completions.js +0 -908
- package/node_modules/@mariozechner/pi-ai/dist/providers/openai-responses.js +0 -220
- package/node_modules/@mariozechner/pi-ai/dist/providers/register-builtins.js +0 -243
- package/node_modules/@mariozechner/pi-ai/dist/providers/simple-options.js +0 -39
- package/node_modules/@mariozechner/pi-ai/dist/providers/transform-messages.js +0 -184
- package/node_modules/@mariozechner/pi-ai/dist/stream.js +0 -27
- package/node_modules/@mariozechner/pi-ai/dist/types.js +0 -2
- package/node_modules/@mariozechner/pi-ai/dist/utils/event-stream.js +0 -81
- package/node_modules/@mariozechner/pi-ai/dist/utils/hash.js +0 -14
- package/node_modules/@mariozechner/pi-ai/dist/utils/headers.js +0 -8
- package/node_modules/@mariozechner/pi-ai/dist/utils/json-parse.js +0 -113
- package/node_modules/@mariozechner/pi-ai/dist/utils/oauth/anthropic.js +0 -335
- package/node_modules/@mariozechner/pi-ai/dist/utils/oauth/github-copilot.js +0 -292
- package/node_modules/@mariozechner/pi-ai/dist/utils/oauth/index.js +0 -121
- package/node_modules/@mariozechner/pi-ai/dist/utils/oauth/oauth-page.js +0 -105
- package/node_modules/@mariozechner/pi-ai/dist/utils/oauth/pkce.js +0 -31
- package/node_modules/@mariozechner/pi-ai/dist/utils/oauth/types.js +0 -2
- package/node_modules/@mariozechner/pi-ai/dist/utils/overflow.js +0 -146
- package/node_modules/@mariozechner/pi-ai/dist/utils/sanitize-unicode.js +0 -26
- package/node_modules/@mariozechner/pi-ai/dist/utils/typebox-helpers.js +0 -21
- package/node_modules/@mariozechner/pi-ai/dist/utils/validation.js +0 -281
- package/node_modules/@mariozechner/pi-ai/package.json +0 -108
- package/node_modules/@mariozechner/pi-coding-agent/dist/bun/register-bedrock.js +0 -4
- package/node_modules/@mariozechner/pi-coding-agent/dist/modes/interactive/components/keybinding-hints.js +0 -22
- package/node_modules/@mariozechner/pi-coding-agent/node_modules/@mariozechner/pi-agent-core/dist/agent-loop.js +0 -458
- package/node_modules/@mariozechner/pi-coding-agent/node_modules/@mariozechner/pi-agent-core/dist/agent.js +0 -398
- package/node_modules/@mariozechner/pi-coding-agent/node_modules/@mariozechner/pi-agent-core/dist/index.js +0 -9
- package/node_modules/@mariozechner/pi-coding-agent/node_modules/@mariozechner/pi-agent-core/dist/proxy.js +0 -278
- package/node_modules/@mariozechner/pi-coding-agent/node_modules/@mariozechner/pi-agent-core/dist/types.js +0 -2
- package/node_modules/@mariozechner/pi-coding-agent/node_modules/@mariozechner/pi-agent-core/package.json +0 -45
- package/node_modules/socks/.claude/settings.local.json +0 -26
- package/node_modules/std-env/LICENCE +0 -22
- package/node_modules/std-env/README.md +0 -118
- package/node_modules/std-env/dist/index.cjs +0 -1
- package/node_modules/std-env/dist/index.d.cts +0 -92
- package/node_modules/std-env/dist/index.d.mts +0 -92
- package/node_modules/std-env/dist/index.d.ts +0 -92
- package/node_modules/std-env/dist/index.mjs +0 -1
- package/node_modules/std-env/package.json +0 -46
- package/node_modules/yoctocolors/base.d.ts +0 -47
- package/node_modules/yoctocolors/base.js +0 -94
- package/node_modules/yoctocolors/index.d.ts +0 -2
- package/node_modules/yoctocolors/index.js +0 -2
- package/node_modules/yoctocolors/license +0 -9
- package/node_modules/yoctocolors/package.json +0 -69
- package/node_modules/yoctocolors/readme.md +0 -138
- /package/node_modules/{@mariozechner/pi-coding-agent/dist/core → @earendil-works/pi-agent-core/dist/harness}/compaction/utils.js +0 -0
- /package/node_modules/{@mariozechner/pi-coding-agent/dist/core/tools → @earendil-works/pi-agent-core/dist/harness/utils}/truncate.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-agent-core/dist/types.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/api-registry.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/bedrock-provider.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/models.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/oauth.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-ai/dist/providers/amazon-bedrock.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/providers/anthropic.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/providers/azure-openai-responses.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/providers/cloudflare.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/providers/faux.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/providers/github-copilot-headers.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/providers/google-shared.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/providers/google-vertex.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/providers/google.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/providers/mistral.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/providers/openai-responses.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/providers/register-builtins.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/providers/simple-options.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/providers/transform-messages.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-ai/dist/session-resources.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/stream.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/types.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-ai/dist/utils/diagnostics.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/utils/event-stream.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/utils/hash.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/utils/headers.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/utils/json-parse.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/utils/oauth/anthropic.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/utils/oauth/github-copilot.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/utils/oauth/index.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/utils/oauth/oauth-page.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/utils/oauth/pkce.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/utils/oauth/types.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/utils/sanitize-unicode.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/utils/typebox-helpers.js +0 -0
- /package/node_modules/{@mariozechner/pi-agent-core/node_modules/@mariozechner → @earendil-works}/pi-ai/dist/utils/validation.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/bun/cli.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/bun/restore-sandbox-env.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/cli/file-processor.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/cli/initial-message.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/cli.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/agent-session-runtime.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/agent-session-services.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/auth-guidance.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/bash-executor.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/compaction/index.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/defaults.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/diagnostics.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/event-bus.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/exec.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/export-html/ansi-to-html.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/export-html/index.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/export-html/template.html +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/export-html/tool-renderer.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/export-html/vendor/highlight.min.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/export-html/vendor/marked.min.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/extensions/index.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/extensions/runner.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/extensions/types.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/extensions/wrapper.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/footer-data-provider.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/index.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/messages.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/output-guard.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/prompt-templates.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/resolve-config-value.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/resource-loader.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/session-cwd.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/session-manager.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/settings-manager.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/skills.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/slash-commands.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/source-info.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/system-prompt.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/telemetry.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/timings.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/tools/edit-diff.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/tools/file-mutation-queue.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/tools/index.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/tools/output-accumulator.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/tools/path-utils.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/core/tools/tool-definition-wrapper.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/index.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/index.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/assets/clankolas.png +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/armin.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/countdown-timer.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/daxnuts.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/diff.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/dynamic-border.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/components/index.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/interactive/theme/theme-schema.json +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/print-mode.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/rpc/jsonl.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/rpc/rpc-client.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/rpc/rpc-mode.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/modes/rpc/rpc-types.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/utils/changelog.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/utils/child-process.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/utils/clipboard-image.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/utils/clipboard-native.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/utils/exif-orientation.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/utils/frontmatter.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/utils/fs-watch.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/utils/git.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/utils/image-convert.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/utils/image-resize.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/utils/mime.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/utils/photon.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/utils/pi-user-agent.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/utils/shell.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/utils/sleep.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-coding-agent/dist/utils/tools-manager.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-tui/dist/autocomplete.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-tui/dist/components/box.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-tui/dist/components/cancellable-loader.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-tui/dist/components/editor.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-tui/dist/components/input.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-tui/dist/components/loader.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-tui/dist/components/select-list.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-tui/dist/components/settings-list.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-tui/dist/components/spacer.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-tui/dist/components/text.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-tui/dist/components/truncated-text.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-tui/dist/editor-component.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-tui/dist/fuzzy.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-tui/dist/index.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-tui/dist/keybindings.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-tui/dist/keys.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-tui/dist/kill-ring.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-tui/dist/stdin-buffer.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-tui/dist/terminal.js +0 -0
- /package/node_modules/{@mariozechner → @earendil-works}/pi-tui/dist/undo-stack.js +0 -0
- /package/node_modules/{@mariozechner/jiti → jiti}/LICENSE +0 -0
- /package/node_modules/{@mariozechner/jiti → jiti}/lib/jiti-cli.mjs +0 -0
- /package/node_modules/{@mariozechner/jiti → jiti}/lib/jiti-hooks.mjs +0 -0
- /package/node_modules/{@mariozechner/jiti → jiti}/lib/jiti-native.mjs +0 -0
- /package/node_modules/{@mariozechner/jiti → jiti}/lib/jiti-register.d.mts +0 -0
- /package/node_modules/{@mariozechner/jiti → jiti}/lib/jiti-register.mjs +0 -0
- /package/node_modules/{@mariozechner/jiti/lib/jiti.mjs → jiti/lib/jiti-static.mjs} +0 -0
- /package/node_modules/{@mariozechner/jiti → jiti}/lib/jiti.cjs +0 -0
- /package/node_modules/{@mariozechner/jiti → jiti}/lib/jiti.d.cts +0 -0
- /package/node_modules/{@mariozechner/jiti → jiti}/lib/jiti.d.mts +0 -0
|
@@ -4705,6 +4705,24 @@ export const MODELS = {
|
|
|
4705
4705
|
contextWindow: 1000000,
|
|
4706
4706
|
maxTokens: 64000,
|
|
4707
4707
|
},
|
|
4708
|
+
"gemini-3.1-flash-lite": {
|
|
4709
|
+
id: "gemini-3.1-flash-lite",
|
|
4710
|
+
name: "Gemini 3.1 Flash Lite",
|
|
4711
|
+
api: "google-generative-ai",
|
|
4712
|
+
provider: "google",
|
|
4713
|
+
baseUrl: "https://generativelanguage.googleapis.com/v1beta",
|
|
4714
|
+
reasoning: true,
|
|
4715
|
+
thinkingLevelMap: { "off": null },
|
|
4716
|
+
input: ["text", "image"],
|
|
4717
|
+
cost: {
|
|
4718
|
+
input: 0.25,
|
|
4719
|
+
output: 1.5,
|
|
4720
|
+
cacheRead: 0.025,
|
|
4721
|
+
cacheWrite: 1,
|
|
4722
|
+
},
|
|
4723
|
+
contextWindow: 1048576,
|
|
4724
|
+
maxTokens: 65536,
|
|
4725
|
+
},
|
|
4708
4726
|
"gemini-3.1-flash-lite-preview": {
|
|
4709
4727
|
id: "gemini-3.1-flash-lite-preview",
|
|
4710
4728
|
name: "Gemini 3.1 Flash Lite Preview",
|
|
@@ -5816,24 +5834,6 @@ export const MODELS = {
|
|
|
5816
5834
|
},
|
|
5817
5835
|
},
|
|
5818
5836
|
"kimi-coding": {
|
|
5819
|
-
"k2p6": {
|
|
5820
|
-
id: "k2p6",
|
|
5821
|
-
name: "Kimi K2.6",
|
|
5822
|
-
api: "anthropic-messages",
|
|
5823
|
-
provider: "kimi-coding",
|
|
5824
|
-
baseUrl: "https://api.kimi.com/coding",
|
|
5825
|
-
headers: { "User-Agent": "KimiCLI/1.5" },
|
|
5826
|
-
reasoning: true,
|
|
5827
|
-
input: ["text", "image"],
|
|
5828
|
-
cost: {
|
|
5829
|
-
input: 0,
|
|
5830
|
-
output: 0,
|
|
5831
|
-
cacheRead: 0,
|
|
5832
|
-
cacheWrite: 0,
|
|
5833
|
-
},
|
|
5834
|
-
contextWindow: 262144,
|
|
5835
|
-
maxTokens: 32768,
|
|
5836
|
-
},
|
|
5837
5837
|
"kimi-for-coding": {
|
|
5838
5838
|
id: "kimi-for-coding",
|
|
5839
5839
|
name: "Kimi For Coding",
|
|
@@ -6963,7 +6963,7 @@ export const MODELS = {
|
|
|
6963
6963
|
provider: "openai",
|
|
6964
6964
|
baseUrl: "https://api.openai.com/v1",
|
|
6965
6965
|
reasoning: true,
|
|
6966
|
-
thinkingLevelMap: { "off":
|
|
6966
|
+
thinkingLevelMap: { "off": "none" },
|
|
6967
6967
|
input: ["text", "image"],
|
|
6968
6968
|
cost: {
|
|
6969
6969
|
input: 1.25,
|
|
@@ -7053,7 +7053,7 @@ export const MODELS = {
|
|
|
7053
7053
|
provider: "openai",
|
|
7054
7054
|
baseUrl: "https://api.openai.com/v1",
|
|
7055
7055
|
reasoning: true,
|
|
7056
|
-
thinkingLevelMap: { "off":
|
|
7056
|
+
thinkingLevelMap: { "off": "none", "xhigh": "xhigh" },
|
|
7057
7057
|
input: ["text", "image"],
|
|
7058
7058
|
cost: {
|
|
7059
7059
|
input: 1.75,
|
|
@@ -7143,7 +7143,7 @@ export const MODELS = {
|
|
|
7143
7143
|
provider: "openai",
|
|
7144
7144
|
baseUrl: "https://api.openai.com/v1",
|
|
7145
7145
|
reasoning: true,
|
|
7146
|
-
thinkingLevelMap: { "off":
|
|
7146
|
+
thinkingLevelMap: { "off": "none", "xhigh": "xhigh" },
|
|
7147
7147
|
input: ["text", "image"],
|
|
7148
7148
|
cost: {
|
|
7149
7149
|
input: 1.75,
|
|
@@ -7179,7 +7179,7 @@ export const MODELS = {
|
|
|
7179
7179
|
provider: "openai",
|
|
7180
7180
|
baseUrl: "https://api.openai.com/v1",
|
|
7181
7181
|
reasoning: true,
|
|
7182
|
-
thinkingLevelMap: { "off":
|
|
7182
|
+
thinkingLevelMap: { "off": "none", "xhigh": "xhigh" },
|
|
7183
7183
|
input: ["text", "image"],
|
|
7184
7184
|
cost: {
|
|
7185
7185
|
input: 2.5,
|
|
@@ -7197,7 +7197,7 @@ export const MODELS = {
|
|
|
7197
7197
|
provider: "openai",
|
|
7198
7198
|
baseUrl: "https://api.openai.com/v1",
|
|
7199
7199
|
reasoning: true,
|
|
7200
|
-
thinkingLevelMap: { "off":
|
|
7200
|
+
thinkingLevelMap: { "off": "none", "xhigh": "xhigh" },
|
|
7201
7201
|
input: ["text", "image"],
|
|
7202
7202
|
cost: {
|
|
7203
7203
|
input: 0.75,
|
|
@@ -7215,7 +7215,7 @@ export const MODELS = {
|
|
|
7215
7215
|
provider: "openai",
|
|
7216
7216
|
baseUrl: "https://api.openai.com/v1",
|
|
7217
7217
|
reasoning: true,
|
|
7218
|
-
thinkingLevelMap: { "off":
|
|
7218
|
+
thinkingLevelMap: { "off": "none", "xhigh": "xhigh" },
|
|
7219
7219
|
input: ["text", "image"],
|
|
7220
7220
|
cost: {
|
|
7221
7221
|
input: 0.2,
|
|
@@ -7251,7 +7251,7 @@ export const MODELS = {
|
|
|
7251
7251
|
provider: "openai",
|
|
7252
7252
|
baseUrl: "https://api.openai.com/v1",
|
|
7253
7253
|
reasoning: true,
|
|
7254
|
-
thinkingLevelMap: { "off":
|
|
7254
|
+
thinkingLevelMap: { "off": "none", "xhigh": "xhigh" },
|
|
7255
7255
|
input: ["text", "image"],
|
|
7256
7256
|
cost: {
|
|
7257
7257
|
input: 5,
|
|
@@ -8111,23 +8111,6 @@ export const MODELS = {
|
|
|
8111
8111
|
contextWindow: 1050000,
|
|
8112
8112
|
maxTokens: 128000,
|
|
8113
8113
|
},
|
|
8114
|
-
"hy3-preview-free": {
|
|
8115
|
-
id: "hy3-preview-free",
|
|
8116
|
-
name: "Hy3 preview Free",
|
|
8117
|
-
api: "openai-completions",
|
|
8118
|
-
provider: "opencode",
|
|
8119
|
-
baseUrl: "https://opencode.ai/zen/v1",
|
|
8120
|
-
reasoning: true,
|
|
8121
|
-
input: ["text"],
|
|
8122
|
-
cost: {
|
|
8123
|
-
input: 0,
|
|
8124
|
-
output: 0,
|
|
8125
|
-
cacheRead: 0,
|
|
8126
|
-
cacheWrite: 0,
|
|
8127
|
-
},
|
|
8128
|
-
contextWindow: 256000,
|
|
8129
|
-
maxTokens: 64000,
|
|
8130
|
-
},
|
|
8131
8114
|
"kimi-k2.5": {
|
|
8132
8115
|
id: "kimi-k2.5",
|
|
8133
8116
|
name: "Kimi K2.5",
|
|
@@ -9281,7 +9264,7 @@ export const MODELS = {
|
|
|
9281
9264
|
cacheRead: 0.024999999999999998,
|
|
9282
9265
|
cacheWrite: 0.08333333333333334,
|
|
9283
9266
|
},
|
|
9284
|
-
contextWindow:
|
|
9267
|
+
contextWindow: 1000000,
|
|
9285
9268
|
maxTokens: 8192,
|
|
9286
9269
|
},
|
|
9287
9270
|
"google/gemini-2.0-flash-lite-001": {
|
|
@@ -9420,6 +9403,23 @@ export const MODELS = {
|
|
|
9420
9403
|
contextWindow: 1048576,
|
|
9421
9404
|
maxTokens: 65536,
|
|
9422
9405
|
},
|
|
9406
|
+
"google/gemini-3.1-flash-lite": {
|
|
9407
|
+
id: "google/gemini-3.1-flash-lite",
|
|
9408
|
+
name: "Google: Gemini 3.1 Flash Lite",
|
|
9409
|
+
api: "openai-completions",
|
|
9410
|
+
provider: "openrouter",
|
|
9411
|
+
baseUrl: "https://openrouter.ai/api/v1",
|
|
9412
|
+
reasoning: true,
|
|
9413
|
+
input: ["text", "image"],
|
|
9414
|
+
cost: {
|
|
9415
|
+
input: 0.25,
|
|
9416
|
+
output: 1.5,
|
|
9417
|
+
cacheRead: 0.024999999999999998,
|
|
9418
|
+
cacheWrite: 0.08333333333333334,
|
|
9419
|
+
},
|
|
9420
|
+
contextWindow: 1048576,
|
|
9421
|
+
maxTokens: 65536,
|
|
9422
|
+
},
|
|
9423
9423
|
"google/gemini-3.1-flash-lite-preview": {
|
|
9424
9424
|
id: "google/gemini-3.1-flash-lite-preview",
|
|
9425
9425
|
name: "Google: Gemini 3.1 Flash Lite Preview",
|
|
@@ -9607,18 +9607,18 @@ export const MODELS = {
|
|
|
9607
9607
|
contextWindow: 128000,
|
|
9608
9608
|
maxTokens: 50000,
|
|
9609
9609
|
},
|
|
9610
|
-
"inclusionai/ling-2.6-1t
|
|
9611
|
-
id: "inclusionai/ling-2.6-1t
|
|
9612
|
-
name: "inclusionAI: Ling-2.6-1T
|
|
9610
|
+
"inclusionai/ling-2.6-1t": {
|
|
9611
|
+
id: "inclusionai/ling-2.6-1t",
|
|
9612
|
+
name: "inclusionAI: Ling-2.6-1T",
|
|
9613
9613
|
api: "openai-completions",
|
|
9614
9614
|
provider: "openrouter",
|
|
9615
9615
|
baseUrl: "https://openrouter.ai/api/v1",
|
|
9616
9616
|
reasoning: false,
|
|
9617
9617
|
input: ["text"],
|
|
9618
9618
|
cost: {
|
|
9619
|
-
input: 0,
|
|
9620
|
-
output:
|
|
9621
|
-
cacheRead: 0,
|
|
9619
|
+
input: 0.3,
|
|
9620
|
+
output: 2.5,
|
|
9621
|
+
cacheRead: 0.06,
|
|
9622
9622
|
cacheWrite: 0,
|
|
9623
9623
|
},
|
|
9624
9624
|
contextWindow: 262144,
|
|
@@ -9641,6 +9641,23 @@ export const MODELS = {
|
|
|
9641
9641
|
contextWindow: 262144,
|
|
9642
9642
|
maxTokens: 32768,
|
|
9643
9643
|
},
|
|
9644
|
+
"inclusionai/ring-2.6-1t:free": {
|
|
9645
|
+
id: "inclusionai/ring-2.6-1t:free",
|
|
9646
|
+
name: "inclusionAI: Ring-2.6-1T (free)",
|
|
9647
|
+
api: "openai-completions",
|
|
9648
|
+
provider: "openrouter",
|
|
9649
|
+
baseUrl: "https://openrouter.ai/api/v1",
|
|
9650
|
+
reasoning: true,
|
|
9651
|
+
input: ["text"],
|
|
9652
|
+
cost: {
|
|
9653
|
+
input: 0,
|
|
9654
|
+
output: 0,
|
|
9655
|
+
cacheRead: 0,
|
|
9656
|
+
cacheWrite: 0,
|
|
9657
|
+
},
|
|
9658
|
+
contextWindow: 262144,
|
|
9659
|
+
maxTokens: 65536,
|
|
9660
|
+
},
|
|
9644
9661
|
"kwaipilot/kat-coder-pro-v2": {
|
|
9645
9662
|
id: "kwaipilot/kat-coder-pro-v2",
|
|
9646
9663
|
name: "Kwaipilot: KAT-Coder-Pro V2",
|
|
@@ -9805,11 +9822,11 @@ export const MODELS = {
|
|
|
9805
9822
|
cost: {
|
|
9806
9823
|
input: 0.15,
|
|
9807
9824
|
output: 1.15,
|
|
9808
|
-
cacheRead: 0
|
|
9825
|
+
cacheRead: 0,
|
|
9809
9826
|
cacheWrite: 0,
|
|
9810
9827
|
},
|
|
9811
9828
|
contextWindow: 196608,
|
|
9812
|
-
maxTokens:
|
|
9829
|
+
maxTokens: 196608,
|
|
9813
9830
|
},
|
|
9814
9831
|
"minimax/minimax-m2.5:free": {
|
|
9815
9832
|
id: "minimax/minimax-m2.5:free",
|
|
@@ -9837,13 +9854,13 @@ export const MODELS = {
|
|
|
9837
9854
|
reasoning: true,
|
|
9838
9855
|
input: ["text"],
|
|
9839
9856
|
cost: {
|
|
9840
|
-
input: 0.
|
|
9857
|
+
input: 0.29900000000000004,
|
|
9841
9858
|
output: 1.2,
|
|
9842
|
-
cacheRead: 0
|
|
9859
|
+
cacheRead: 0,
|
|
9843
9860
|
cacheWrite: 0,
|
|
9844
9861
|
},
|
|
9845
9862
|
contextWindow: 196608,
|
|
9846
|
-
maxTokens:
|
|
9863
|
+
maxTokens: 131072,
|
|
9847
9864
|
},
|
|
9848
9865
|
"mistralai/codestral-2508": {
|
|
9849
9866
|
id: "mistralai/codestral-2508",
|
|
@@ -10168,23 +10185,6 @@ export const MODELS = {
|
|
|
10168
10185
|
contextWindow: 65536,
|
|
10169
10186
|
maxTokens: 4096,
|
|
10170
10187
|
},
|
|
10171
|
-
"mistralai/mixtral-8x7b-instruct": {
|
|
10172
|
-
id: "mistralai/mixtral-8x7b-instruct",
|
|
10173
|
-
name: "Mistral: Mixtral 8x7B Instruct",
|
|
10174
|
-
api: "openai-completions",
|
|
10175
|
-
provider: "openrouter",
|
|
10176
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
10177
|
-
reasoning: false,
|
|
10178
|
-
input: ["text"],
|
|
10179
|
-
cost: {
|
|
10180
|
-
input: 0.54,
|
|
10181
|
-
output: 0.54,
|
|
10182
|
-
cacheRead: 0,
|
|
10183
|
-
cacheWrite: 0,
|
|
10184
|
-
},
|
|
10185
|
-
contextWindow: 32768,
|
|
10186
|
-
maxTokens: 16384,
|
|
10187
|
-
},
|
|
10188
10188
|
"mistralai/pixtral-large-2411": {
|
|
10189
10189
|
id: "mistralai/pixtral-large-2411",
|
|
10190
10190
|
name: "Mistral: Pixtral Large 2411",
|
|
@@ -10321,23 +10321,6 @@ export const MODELS = {
|
|
|
10321
10321
|
contextWindow: 131072,
|
|
10322
10322
|
maxTokens: 163840,
|
|
10323
10323
|
},
|
|
10324
|
-
"nvidia/llama-3.1-nemotron-70b-instruct": {
|
|
10325
|
-
id: "nvidia/llama-3.1-nemotron-70b-instruct",
|
|
10326
|
-
name: "NVIDIA: Llama 3.1 Nemotron 70B Instruct",
|
|
10327
|
-
api: "openai-completions",
|
|
10328
|
-
provider: "openrouter",
|
|
10329
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
10330
|
-
reasoning: false,
|
|
10331
|
-
input: ["text"],
|
|
10332
|
-
cost: {
|
|
10333
|
-
input: 1.2,
|
|
10334
|
-
output: 1.2,
|
|
10335
|
-
cacheRead: 0,
|
|
10336
|
-
cacheWrite: 0,
|
|
10337
|
-
},
|
|
10338
|
-
contextWindow: 131072,
|
|
10339
|
-
maxTokens: 16384,
|
|
10340
|
-
},
|
|
10341
10324
|
"nvidia/llama-3.3-nemotron-super-49b-v1.5": {
|
|
10342
10325
|
id: "nvidia/llama-3.3-nemotron-super-49b-v1.5",
|
|
10343
10326
|
name: "NVIDIA: Llama 3.3 Nemotron Super 49B V1.5",
|
|
@@ -11839,12 +11822,12 @@ export const MODELS = {
|
|
|
11839
11822
|
input: ["text"],
|
|
11840
11823
|
cost: {
|
|
11841
11824
|
input: 0.08,
|
|
11842
|
-
output: 0.
|
|
11843
|
-
cacheRead: 0
|
|
11825
|
+
output: 0.28,
|
|
11826
|
+
cacheRead: 0,
|
|
11844
11827
|
cacheWrite: 0,
|
|
11845
11828
|
},
|
|
11846
11829
|
contextWindow: 40960,
|
|
11847
|
-
maxTokens:
|
|
11830
|
+
maxTokens: 16384,
|
|
11848
11831
|
},
|
|
11849
11832
|
"qwen/qwen3-8b": {
|
|
11850
11833
|
id: "qwen/qwen3-8b",
|
|
@@ -12475,18 +12458,18 @@ export const MODELS = {
|
|
|
12475
12458
|
contextWindow: 262144,
|
|
12476
12459
|
maxTokens: 65536,
|
|
12477
12460
|
},
|
|
12478
|
-
"tencent/hy3-preview
|
|
12479
|
-
id: "tencent/hy3-preview
|
|
12480
|
-
name: "Tencent: Hy3 preview
|
|
12461
|
+
"tencent/hy3-preview": {
|
|
12462
|
+
id: "tencent/hy3-preview",
|
|
12463
|
+
name: "Tencent: Hy3 preview",
|
|
12481
12464
|
api: "openai-completions",
|
|
12482
12465
|
provider: "openrouter",
|
|
12483
12466
|
baseUrl: "https://openrouter.ai/api/v1",
|
|
12484
12467
|
reasoning: true,
|
|
12485
12468
|
input: ["text"],
|
|
12486
12469
|
cost: {
|
|
12487
|
-
input: 0,
|
|
12488
|
-
output: 0,
|
|
12489
|
-
cacheRead: 0,
|
|
12470
|
+
input: 0.06599999999999999,
|
|
12471
|
+
output: 0.26,
|
|
12472
|
+
cacheRead: 0.029,
|
|
12490
12473
|
cacheWrite: 0,
|
|
12491
12474
|
},
|
|
12492
12475
|
contextWindow: 262144,
|
|
@@ -12526,23 +12509,6 @@ export const MODELS = {
|
|
|
12526
12509
|
contextWindow: 32768,
|
|
12527
12510
|
maxTokens: 32768,
|
|
12528
12511
|
},
|
|
12529
|
-
"tngtech/deepseek-r1t2-chimera": {
|
|
12530
|
-
id: "tngtech/deepseek-r1t2-chimera",
|
|
12531
|
-
name: "TNG: DeepSeek R1T2 Chimera",
|
|
12532
|
-
api: "openai-completions",
|
|
12533
|
-
provider: "openrouter",
|
|
12534
|
-
baseUrl: "https://openrouter.ai/api/v1",
|
|
12535
|
-
reasoning: true,
|
|
12536
|
-
input: ["text"],
|
|
12537
|
-
cost: {
|
|
12538
|
-
input: 0.3,
|
|
12539
|
-
output: 1.1,
|
|
12540
|
-
cacheRead: 0.15,
|
|
12541
|
-
cacheWrite: 0,
|
|
12542
|
-
},
|
|
12543
|
-
contextWindow: 163840,
|
|
12544
|
-
maxTokens: 163840,
|
|
12545
|
-
},
|
|
12546
12512
|
"upstage/solar-pro-3": {
|
|
12547
12513
|
id: "upstage/solar-pro-3",
|
|
12548
12514
|
name: "Upstage: Solar Pro 3",
|
|
@@ -12739,9 +12705,9 @@ export const MODELS = {
|
|
|
12739
12705
|
reasoning: true,
|
|
12740
12706
|
input: ["text"],
|
|
12741
12707
|
cost: {
|
|
12742
|
-
input: 0.
|
|
12743
|
-
output: 0.
|
|
12744
|
-
cacheRead: 0.
|
|
12708
|
+
input: 0.09999999999999999,
|
|
12709
|
+
output: 0.3,
|
|
12710
|
+
cacheRead: 0.01,
|
|
12745
12711
|
cacheWrite: 0,
|
|
12746
12712
|
},
|
|
12747
12713
|
contextWindow: 262144,
|
|
@@ -12813,7 +12779,7 @@ export const MODELS = {
|
|
|
12813
12779
|
cacheWrite: 0,
|
|
12814
12780
|
},
|
|
12815
12781
|
contextWindow: 1048576,
|
|
12816
|
-
maxTokens:
|
|
12782
|
+
maxTokens: 16384,
|
|
12817
12783
|
},
|
|
12818
12784
|
"z-ai/glm-4-32b": {
|
|
12819
12785
|
id: "z-ai/glm-4-32b",
|
|
@@ -12943,13 +12909,13 @@ export const MODELS = {
|
|
|
12943
12909
|
reasoning: true,
|
|
12944
12910
|
input: ["text"],
|
|
12945
12911
|
cost: {
|
|
12946
|
-
input: 0.
|
|
12947
|
-
output: 1.
|
|
12948
|
-
cacheRead: 0,
|
|
12912
|
+
input: 0.39999999999999997,
|
|
12913
|
+
output: 1.75,
|
|
12914
|
+
cacheRead: 0.08,
|
|
12949
12915
|
cacheWrite: 0,
|
|
12950
12916
|
},
|
|
12951
12917
|
contextWindow: 202752,
|
|
12952
|
-
maxTokens:
|
|
12918
|
+
maxTokens: 131072,
|
|
12953
12919
|
},
|
|
12954
12920
|
"z-ai/glm-4.7-flash": {
|
|
12955
12921
|
id: "z-ai/glm-4.7-flash",
|
|
@@ -13173,6 +13139,328 @@ export const MODELS = {
|
|
|
13173
13139
|
maxTokens: 128000,
|
|
13174
13140
|
},
|
|
13175
13141
|
},
|
|
13142
|
+
"together": {
|
|
13143
|
+
"MiniMaxAI/MiniMax-M2.5": {
|
|
13144
|
+
id: "MiniMaxAI/MiniMax-M2.5",
|
|
13145
|
+
name: "MiniMax-M2.5",
|
|
13146
|
+
api: "openai-completions",
|
|
13147
|
+
provider: "together",
|
|
13148
|
+
baseUrl: "https://api.together.ai/v1",
|
|
13149
|
+
compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false, "maxTokensField": "max_tokens", "supportsStrictMode": false, "supportsLongCacheRetention": false },
|
|
13150
|
+
reasoning: true,
|
|
13151
|
+
thinkingLevelMap: { "off": null, "minimal": null, "low": null, "medium": null },
|
|
13152
|
+
input: ["text"],
|
|
13153
|
+
cost: {
|
|
13154
|
+
input: 0.3,
|
|
13155
|
+
output: 1.2,
|
|
13156
|
+
cacheRead: 0.06,
|
|
13157
|
+
cacheWrite: 0,
|
|
13158
|
+
},
|
|
13159
|
+
contextWindow: 204800,
|
|
13160
|
+
maxTokens: 131072,
|
|
13161
|
+
},
|
|
13162
|
+
"MiniMaxAI/MiniMax-M2.7": {
|
|
13163
|
+
id: "MiniMaxAI/MiniMax-M2.7",
|
|
13164
|
+
name: "MiniMax-M2.7",
|
|
13165
|
+
api: "openai-completions",
|
|
13166
|
+
provider: "together",
|
|
13167
|
+
baseUrl: "https://api.together.ai/v1",
|
|
13168
|
+
compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false, "maxTokensField": "max_tokens", "supportsStrictMode": false, "supportsLongCacheRetention": false },
|
|
13169
|
+
reasoning: true,
|
|
13170
|
+
thinkingLevelMap: { "off": null, "minimal": null, "low": null, "medium": null },
|
|
13171
|
+
input: ["text"],
|
|
13172
|
+
cost: {
|
|
13173
|
+
input: 0.3,
|
|
13174
|
+
output: 1.2,
|
|
13175
|
+
cacheRead: 0.06,
|
|
13176
|
+
cacheWrite: 0,
|
|
13177
|
+
},
|
|
13178
|
+
contextWindow: 202752,
|
|
13179
|
+
maxTokens: 131072,
|
|
13180
|
+
},
|
|
13181
|
+
"Qwen/Qwen3-235B-A22B-Instruct-2507-tput": {
|
|
13182
|
+
id: "Qwen/Qwen3-235B-A22B-Instruct-2507-tput",
|
|
13183
|
+
name: "Qwen3 235B A22B Instruct 2507 FP8",
|
|
13184
|
+
api: "openai-completions",
|
|
13185
|
+
provider: "together",
|
|
13186
|
+
baseUrl: "https://api.together.ai/v1",
|
|
13187
|
+
compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false, "maxTokensField": "max_tokens", "supportsStrictMode": false, "supportsLongCacheRetention": false, "thinkingFormat": "together" },
|
|
13188
|
+
reasoning: true,
|
|
13189
|
+
thinkingLevelMap: { "minimal": null, "low": null, "medium": null },
|
|
13190
|
+
input: ["text"],
|
|
13191
|
+
cost: {
|
|
13192
|
+
input: 0.2,
|
|
13193
|
+
output: 0.6,
|
|
13194
|
+
cacheRead: 0,
|
|
13195
|
+
cacheWrite: 0,
|
|
13196
|
+
},
|
|
13197
|
+
contextWindow: 262144,
|
|
13198
|
+
maxTokens: 262144,
|
|
13199
|
+
},
|
|
13200
|
+
"Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8": {
|
|
13201
|
+
id: "Qwen/Qwen3-Coder-480B-A35B-Instruct-FP8",
|
|
13202
|
+
name: "Qwen3 Coder 480B A35B Instruct",
|
|
13203
|
+
api: "openai-completions",
|
|
13204
|
+
provider: "together",
|
|
13205
|
+
baseUrl: "https://api.together.ai/v1",
|
|
13206
|
+
compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false, "maxTokensField": "max_tokens", "supportsStrictMode": false, "supportsLongCacheRetention": false },
|
|
13207
|
+
reasoning: false,
|
|
13208
|
+
input: ["text"],
|
|
13209
|
+
cost: {
|
|
13210
|
+
input: 2,
|
|
13211
|
+
output: 2,
|
|
13212
|
+
cacheRead: 0,
|
|
13213
|
+
cacheWrite: 0,
|
|
13214
|
+
},
|
|
13215
|
+
contextWindow: 262144,
|
|
13216
|
+
maxTokens: 262144,
|
|
13217
|
+
},
|
|
13218
|
+
"Qwen/Qwen3-Coder-Next-FP8": {
|
|
13219
|
+
id: "Qwen/Qwen3-Coder-Next-FP8",
|
|
13220
|
+
name: "Qwen3 Coder Next FP8",
|
|
13221
|
+
api: "openai-completions",
|
|
13222
|
+
provider: "together",
|
|
13223
|
+
baseUrl: "https://api.together.ai/v1",
|
|
13224
|
+
compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false, "maxTokensField": "max_tokens", "supportsStrictMode": false, "supportsLongCacheRetention": false, "thinkingFormat": "together" },
|
|
13225
|
+
reasoning: true,
|
|
13226
|
+
thinkingLevelMap: { "minimal": null, "low": null, "medium": null },
|
|
13227
|
+
input: ["text"],
|
|
13228
|
+
cost: {
|
|
13229
|
+
input: 0.5,
|
|
13230
|
+
output: 1.2,
|
|
13231
|
+
cacheRead: 0,
|
|
13232
|
+
cacheWrite: 0,
|
|
13233
|
+
},
|
|
13234
|
+
contextWindow: 262144,
|
|
13235
|
+
maxTokens: 262144,
|
|
13236
|
+
},
|
|
13237
|
+
"Qwen/Qwen3.5-397B-A17B": {
|
|
13238
|
+
id: "Qwen/Qwen3.5-397B-A17B",
|
|
13239
|
+
name: "Qwen3.5 397B A17B",
|
|
13240
|
+
api: "openai-completions",
|
|
13241
|
+
provider: "together",
|
|
13242
|
+
baseUrl: "https://api.together.ai/v1",
|
|
13243
|
+
compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false, "maxTokensField": "max_tokens", "supportsStrictMode": false, "supportsLongCacheRetention": false, "thinkingFormat": "together" },
|
|
13244
|
+
reasoning: true,
|
|
13245
|
+
thinkingLevelMap: { "minimal": null, "low": null, "medium": null },
|
|
13246
|
+
input: ["text", "image"],
|
|
13247
|
+
cost: {
|
|
13248
|
+
input: 0.6,
|
|
13249
|
+
output: 3.6,
|
|
13250
|
+
cacheRead: 0,
|
|
13251
|
+
cacheWrite: 0,
|
|
13252
|
+
},
|
|
13253
|
+
contextWindow: 262144,
|
|
13254
|
+
maxTokens: 130000,
|
|
13255
|
+
},
|
|
13256
|
+
"Qwen/Qwen3.6-Plus": {
|
|
13257
|
+
id: "Qwen/Qwen3.6-Plus",
|
|
13258
|
+
name: "Qwen3.6 Plus",
|
|
13259
|
+
api: "openai-completions",
|
|
13260
|
+
provider: "together",
|
|
13261
|
+
baseUrl: "https://api.together.ai/v1",
|
|
13262
|
+
compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false, "maxTokensField": "max_tokens", "supportsStrictMode": false, "supportsLongCacheRetention": false, "thinkingFormat": "together" },
|
|
13263
|
+
reasoning: true,
|
|
13264
|
+
thinkingLevelMap: { "minimal": null, "low": null, "medium": null },
|
|
13265
|
+
input: ["text"],
|
|
13266
|
+
cost: {
|
|
13267
|
+
input: 0.5,
|
|
13268
|
+
output: 3,
|
|
13269
|
+
cacheRead: 0,
|
|
13270
|
+
cacheWrite: 0,
|
|
13271
|
+
},
|
|
13272
|
+
contextWindow: 1000000,
|
|
13273
|
+
maxTokens: 500000,
|
|
13274
|
+
},
|
|
13275
|
+
"deepseek-ai/DeepSeek-V3": {
|
|
13276
|
+
id: "deepseek-ai/DeepSeek-V3",
|
|
13277
|
+
name: "DeepSeek V3",
|
|
13278
|
+
api: "openai-completions",
|
|
13279
|
+
provider: "together",
|
|
13280
|
+
baseUrl: "https://api.together.ai/v1",
|
|
13281
|
+
compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false, "maxTokensField": "max_tokens", "supportsStrictMode": false, "supportsLongCacheRetention": false, "thinkingFormat": "together" },
|
|
13282
|
+
reasoning: true,
|
|
13283
|
+
thinkingLevelMap: { "minimal": null, "low": null, "medium": null },
|
|
13284
|
+
input: ["text"],
|
|
13285
|
+
cost: {
|
|
13286
|
+
input: 1.25,
|
|
13287
|
+
output: 1.25,
|
|
13288
|
+
cacheRead: 0,
|
|
13289
|
+
cacheWrite: 0,
|
|
13290
|
+
},
|
|
13291
|
+
contextWindow: 131072,
|
|
13292
|
+
maxTokens: 131072,
|
|
13293
|
+
},
|
|
13294
|
+
"deepseek-ai/DeepSeek-V3-1": {
|
|
13295
|
+
id: "deepseek-ai/DeepSeek-V3-1",
|
|
13296
|
+
name: "DeepSeek V3.1",
|
|
13297
|
+
api: "openai-completions",
|
|
13298
|
+
provider: "together",
|
|
13299
|
+
baseUrl: "https://api.together.ai/v1",
|
|
13300
|
+
compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false, "maxTokensField": "max_tokens", "supportsStrictMode": false, "supportsLongCacheRetention": false, "thinkingFormat": "together" },
|
|
13301
|
+
reasoning: true,
|
|
13302
|
+
thinkingLevelMap: { "minimal": null, "low": null, "medium": null },
|
|
13303
|
+
input: ["text"],
|
|
13304
|
+
cost: {
|
|
13305
|
+
input: 0.6,
|
|
13306
|
+
output: 1.7,
|
|
13307
|
+
cacheRead: 0,
|
|
13308
|
+
cacheWrite: 0,
|
|
13309
|
+
},
|
|
13310
|
+
contextWindow: 131072,
|
|
13311
|
+
maxTokens: 131072,
|
|
13312
|
+
},
|
|
13313
|
+
"deepseek-ai/DeepSeek-V4-Pro": {
|
|
13314
|
+
id: "deepseek-ai/DeepSeek-V4-Pro",
|
|
13315
|
+
name: "DeepSeek V4 Pro",
|
|
13316
|
+
api: "openai-completions",
|
|
13317
|
+
provider: "together",
|
|
13318
|
+
baseUrl: "https://api.together.ai/v1",
|
|
13319
|
+
compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": true, "maxTokensField": "max_tokens", "supportsStrictMode": false, "supportsLongCacheRetention": false, "thinkingFormat": "together" },
|
|
13320
|
+
reasoning: true,
|
|
13321
|
+
thinkingLevelMap: { "minimal": null, "low": null, "medium": null, "high": "high", "xhigh": null },
|
|
13322
|
+
input: ["text"],
|
|
13323
|
+
cost: {
|
|
13324
|
+
input: 2.1,
|
|
13325
|
+
output: 4.4,
|
|
13326
|
+
cacheRead: 0.2,
|
|
13327
|
+
cacheWrite: 0,
|
|
13328
|
+
},
|
|
13329
|
+
contextWindow: 512000,
|
|
13330
|
+
maxTokens: 384000,
|
|
13331
|
+
},
|
|
13332
|
+
"essentialai/Rnj-1-Instruct": {
|
|
13333
|
+
id: "essentialai/Rnj-1-Instruct",
|
|
13334
|
+
name: "Rnj-1 Instruct",
|
|
13335
|
+
api: "openai-completions",
|
|
13336
|
+
provider: "together",
|
|
13337
|
+
baseUrl: "https://api.together.ai/v1",
|
|
13338
|
+
compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false, "maxTokensField": "max_tokens", "supportsStrictMode": false, "supportsLongCacheRetention": false },
|
|
13339
|
+
reasoning: false,
|
|
13340
|
+
input: ["text"],
|
|
13341
|
+
cost: {
|
|
13342
|
+
input: 0.15,
|
|
13343
|
+
output: 0.15,
|
|
13344
|
+
cacheRead: 0,
|
|
13345
|
+
cacheWrite: 0,
|
|
13346
|
+
},
|
|
13347
|
+
contextWindow: 32768,
|
|
13348
|
+
maxTokens: 32768,
|
|
13349
|
+
},
|
|
13350
|
+
"google/gemma-4-31B-it": {
|
|
13351
|
+
id: "google/gemma-4-31B-it",
|
|
13352
|
+
name: "Gemma 4 31B Instruct",
|
|
13353
|
+
api: "openai-completions",
|
|
13354
|
+
provider: "together",
|
|
13355
|
+
baseUrl: "https://api.together.ai/v1",
|
|
13356
|
+
compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false, "maxTokensField": "max_tokens", "supportsStrictMode": false, "supportsLongCacheRetention": false, "thinkingFormat": "together" },
|
|
13357
|
+
reasoning: true,
|
|
13358
|
+
thinkingLevelMap: { "minimal": null, "low": null, "medium": null },
|
|
13359
|
+
input: ["text", "image"],
|
|
13360
|
+
cost: {
|
|
13361
|
+
input: 0.2,
|
|
13362
|
+
output: 0.5,
|
|
13363
|
+
cacheRead: 0,
|
|
13364
|
+
cacheWrite: 0,
|
|
13365
|
+
},
|
|
13366
|
+
contextWindow: 262144,
|
|
13367
|
+
maxTokens: 131072,
|
|
13368
|
+
},
|
|
13369
|
+
"meta-llama/Llama-3.3-70B-Instruct-Turbo": {
|
|
13370
|
+
id: "meta-llama/Llama-3.3-70B-Instruct-Turbo",
|
|
13371
|
+
name: "Llama 3.3 70B",
|
|
13372
|
+
api: "openai-completions",
|
|
13373
|
+
provider: "together",
|
|
13374
|
+
baseUrl: "https://api.together.ai/v1",
|
|
13375
|
+
compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false, "maxTokensField": "max_tokens", "supportsStrictMode": false, "supportsLongCacheRetention": false },
|
|
13376
|
+
reasoning: false,
|
|
13377
|
+
input: ["text"],
|
|
13378
|
+
cost: {
|
|
13379
|
+
input: 0.88,
|
|
13380
|
+
output: 0.88,
|
|
13381
|
+
cacheRead: 0,
|
|
13382
|
+
cacheWrite: 0,
|
|
13383
|
+
},
|
|
13384
|
+
contextWindow: 131072,
|
|
13385
|
+
maxTokens: 131072,
|
|
13386
|
+
},
|
|
13387
|
+
"moonshotai/Kimi-K2.5": {
|
|
13388
|
+
id: "moonshotai/Kimi-K2.5",
|
|
13389
|
+
name: "Kimi K2.5",
|
|
13390
|
+
api: "openai-completions",
|
|
13391
|
+
provider: "together",
|
|
13392
|
+
baseUrl: "https://api.together.ai/v1",
|
|
13393
|
+
compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false, "maxTokensField": "max_tokens", "supportsStrictMode": false, "supportsLongCacheRetention": false, "thinkingFormat": "together" },
|
|
13394
|
+
reasoning: true,
|
|
13395
|
+
thinkingLevelMap: { "minimal": null, "low": null, "medium": null },
|
|
13396
|
+
input: ["text", "image"],
|
|
13397
|
+
cost: {
|
|
13398
|
+
input: 0.5,
|
|
13399
|
+
output: 2.8,
|
|
13400
|
+
cacheRead: 0,
|
|
13401
|
+
cacheWrite: 0,
|
|
13402
|
+
},
|
|
13403
|
+
contextWindow: 262144,
|
|
13404
|
+
maxTokens: 262144,
|
|
13405
|
+
},
|
|
13406
|
+
"moonshotai/Kimi-K2.6": {
|
|
13407
|
+
id: "moonshotai/Kimi-K2.6",
|
|
13408
|
+
name: "Kimi K2.6",
|
|
13409
|
+
api: "openai-completions",
|
|
13410
|
+
provider: "together",
|
|
13411
|
+
baseUrl: "https://api.together.ai/v1",
|
|
13412
|
+
compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false, "maxTokensField": "max_tokens", "supportsStrictMode": false, "supportsLongCacheRetention": false, "thinkingFormat": "together" },
|
|
13413
|
+
reasoning: true,
|
|
13414
|
+
thinkingLevelMap: { "minimal": null, "low": null, "medium": null },
|
|
13415
|
+
input: ["text", "image"],
|
|
13416
|
+
cost: {
|
|
13417
|
+
input: 1.2,
|
|
13418
|
+
output: 4.5,
|
|
13419
|
+
cacheRead: 0.2,
|
|
13420
|
+
cacheWrite: 0,
|
|
13421
|
+
},
|
|
13422
|
+
contextWindow: 262144,
|
|
13423
|
+
maxTokens: 131000,
|
|
13424
|
+
},
|
|
13425
|
+
"openai/gpt-oss-120b": {
|
|
13426
|
+
id: "openai/gpt-oss-120b",
|
|
13427
|
+
name: "GPT OSS 120B",
|
|
13428
|
+
api: "openai-completions",
|
|
13429
|
+
provider: "together",
|
|
13430
|
+
baseUrl: "https://api.together.ai/v1",
|
|
13431
|
+
compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": true, "maxTokensField": "max_tokens", "supportsStrictMode": false, "supportsLongCacheRetention": false, "thinkingFormat": "openai" },
|
|
13432
|
+
reasoning: true,
|
|
13433
|
+
thinkingLevelMap: { "off": null, "minimal": null },
|
|
13434
|
+
input: ["text"],
|
|
13435
|
+
cost: {
|
|
13436
|
+
input: 0.15,
|
|
13437
|
+
output: 0.6,
|
|
13438
|
+
cacheRead: 0,
|
|
13439
|
+
cacheWrite: 0,
|
|
13440
|
+
},
|
|
13441
|
+
contextWindow: 131072,
|
|
13442
|
+
maxTokens: 131072,
|
|
13443
|
+
},
|
|
13444
|
+
"zai-org/GLM-5.1": {
|
|
13445
|
+
id: "zai-org/GLM-5.1",
|
|
13446
|
+
name: "GLM-5.1",
|
|
13447
|
+
api: "openai-completions",
|
|
13448
|
+
provider: "together",
|
|
13449
|
+
baseUrl: "https://api.together.ai/v1",
|
|
13450
|
+
compat: { "supportsStore": false, "supportsDeveloperRole": false, "supportsReasoningEffort": false, "maxTokensField": "max_tokens", "supportsStrictMode": false, "supportsLongCacheRetention": false, "thinkingFormat": "together" },
|
|
13451
|
+
reasoning: true,
|
|
13452
|
+
thinkingLevelMap: { "minimal": null, "low": null, "medium": null },
|
|
13453
|
+
input: ["text"],
|
|
13454
|
+
cost: {
|
|
13455
|
+
input: 1.4,
|
|
13456
|
+
output: 4.4,
|
|
13457
|
+
cacheRead: 0,
|
|
13458
|
+
cacheWrite: 0,
|
|
13459
|
+
},
|
|
13460
|
+
contextWindow: 202752,
|
|
13461
|
+
maxTokens: 131072,
|
|
13462
|
+
},
|
|
13463
|
+
},
|
|
13176
13464
|
"vercel-ai-gateway": {
|
|
13177
13465
|
"alibaba/qwen-3-14b": {
|
|
13178
13466
|
id: "alibaba/qwen-3-14b",
|
|
@@ -14009,6 +14297,23 @@ export const MODELS = {
|
|
|
14009
14297
|
contextWindow: 1000000,
|
|
14010
14298
|
maxTokens: 64000,
|
|
14011
14299
|
},
|
|
14300
|
+
"google/gemini-3.1-flash-lite": {
|
|
14301
|
+
id: "google/gemini-3.1-flash-lite",
|
|
14302
|
+
name: "Gemini 3.1 Flash Lite",
|
|
14303
|
+
api: "anthropic-messages",
|
|
14304
|
+
provider: "vercel-ai-gateway",
|
|
14305
|
+
baseUrl: "https://ai-gateway.vercel.sh",
|
|
14306
|
+
reasoning: true,
|
|
14307
|
+
input: ["text", "image"],
|
|
14308
|
+
cost: {
|
|
14309
|
+
input: 0.25,
|
|
14310
|
+
output: 1.5,
|
|
14311
|
+
cacheRead: 0.03,
|
|
14312
|
+
cacheWrite: 0,
|
|
14313
|
+
},
|
|
14314
|
+
contextWindow: 1000000,
|
|
14315
|
+
maxTokens: 65000,
|
|
14316
|
+
},
|
|
14012
14317
|
"google/gemini-3.1-flash-lite-preview": {
|
|
14013
14318
|
id: "google/gemini-3.1-flash-lite-preview",
|
|
14014
14319
|
name: "Gemini 3.1 Flash Lite Preview",
|