fixed chat client typoes

This commit is contained in:
Storme-bit
2026-04-09 04:21:34 -07:00
parent 5c6e027fc1
commit a1795c6f29
4 changed files with 3 additions and 3 deletions

View File

@@ -82,7 +82,7 @@ export function streamMessage(sessionId, message, model, { onChunk, onDone, onEr
}
export async function fetchModels() {
const res = await fetch(`{BASE_URL}/models`);
const res = await fetch(`${BASE_URL}/models`);
if(!res.ok) throw new Error(`Failted to fetch models: ${res.status}`);
return res.json();
}