Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 15 additions & 4 deletions providers/subconscious/models/subconscious/tim-qwen3.6-27b.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Subconscious serves TIM-Qwen3.6 27B as subconscious/tim-qwen3.6-27b.
# Pricing (USD per 1M tokens): cached $0.15, input $0.30, output $3.00.
# Reasoning controls: Anthropic Messages enables thinking with thinking.type =
# "enabled" and thinking.budget_tokens; omit thinking to disable it. Reasoning
# is returned in separate thinking content blocks.
# Sources (accessed 2026-07-06):
# https://www.subconscious.dev/pricing
# https://docs.subconscious.dev/features/thinking
name = "TIM-Qwen3.6 27B"
description = "Reasoning model for deliberate analysis, multi-step problem solving, and tool use"
attachment = false
Expand All @@ -8,14 +16,17 @@ temperature = true
release_date = "2026-05-11"
last_updated = "2026-05-11"
open_weights = false
interleaved = { field = "reasoning_content" }

[[reasoning_options]]
type = "toggle"
type = "toggle" # API: omit thinking to disable; {"thinking": {"type": "enabled", "budget_tokens": <n>}} to enable

[[reasoning_options]]
type = "budget_tokens" # API: {"thinking": {"type": "enabled", "budget_tokens": <n>}}

[cost]
input = 0
output = 0
input = 0.3
output = 3.0
cache_read = 0.15

[limit]
context = 8192
Expand Down
4 changes: 2 additions & 2 deletions providers/subconscious/provider.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "Subconscious"
npm = "@ai-sdk/openai-compatible"
npm = "@ai-sdk/anthropic"
api = "https://api.subconscious.dev/v1"
env = ["SUBCONSCIOUS_API_KEY"]
doc = "https://docs.subconscious.dev"
doc = "https://docs.subconscious.dev"
Loading