models: Kimi K3 via Together (1M window, vision); right-align the more/less toggle

Toggle also loses its underline.
This commit is contained in:
Rohit C Prasad
2026-07-30 10:32:47 -07:00
parent 1e819e0159
commit fe034c8b70
2 changed files with 10 additions and 2 deletions
+9 -1
View File
@@ -112,7 +112,15 @@ MATRIX: dict[str, ModelEntry] = {
# -- resellers (their model namespaces, verbatim) -----------------------------
"together:thinkingmachines/Inkling": ModelEntry("Inkling · via Together"),
"together:zai-org/GLM-5.2": ModelEntry("GLM-5.2 · via Together", _AGENTIC, 128_000),
# Kimi K3 (2026-07-16) is not on Together yet — weights land ~07-27; revisit then.
# Kimi K3 on Together (landed late July 2026): 1M window, native vision; PDFs
# unverified over the compat surface (falls back via pdf_support.py, like Muse Spark).
"together:moonshotai/Kimi-K3": ModelEntry(
"Kimi K3 · via Together",
ModelCapabilities(
tools=True, vision=True, parallel_tool_calls=True, streaming=True
),
1_000_000,
),
"together:moonshotai/Kimi-K2.7-Code": ModelEntry(
"Kimi K2.7 Code · via Together", _AGENTIC, 256_000
),
+1 -1
View File
@@ -20,7 +20,7 @@ function ClampedUserText({ text }: { text: string }) {
<button
type="button"
onClick={() => setOpen((o) => !o)}
className="block mt-1.5 text-[12.5px] font-medium underline underline-offset-2 opacity-75 hover:opacity-100"
className="block ml-auto mt-1.5 text-[12.5px] font-medium opacity-75 hover:opacity-100"
>
{open ? "less…" : "more…"}
</button>