Skip to content
Merged
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
11 changes: 6 additions & 5 deletions providers/amd/models/Qwen3.8-Flash-Next.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
# Sources (accessed 2026-08-28):
# Sources (accessed 2026-09-03):
# https://developer.amd.com.cn/radeon/tokenfactory
# Pricing from the Token Factory models API: input $0.15, output $0.47,
# cache read $0.016 per MTok.
# AMD hosts a text-only vllm-router deployment (input/output modalities are
# text only), so the multimodal base entry is overridden below.
# The AMD deployment accepts image input (GET /v1/models reports text+image
# modalities) and image understanding was verified live: a rendered-digit
# test image was read back correctly. The multimodal base entry is therefore
# overridden to text+image (no video on this host).
# Reasoning control verified live against POST /v1/chat/completions:
# reasoning_effort is a validated enum low|medium|xhigh with xhigh the default
# (values outside the enum return 400; no none, no toggle). No
# reasoning_content is ever returned (stream + non-stream), so there is no
# toggle and no interleaved channel on this host.
base_model = "alibaba/qwen3.8-flash-next"
attachment = false
reasoning_options = [
{ type = "effort", values = ["low", "medium", "xhigh"] },
]
Expand All @@ -21,5 +22,5 @@ output = 0.47
cache_read = 0.016

[modalities]
input = ["text"]
input = ["text", "image"]
output = ["text"]
Loading