Fix LLM gateway path, update M1.8 gate test to load real chunks (Option B)
ci / markdown (push) Waiting to run

This commit is contained in:
Story Crater Bot
2026-08-23 00:32:27 -07:00
parent a0ebc1183c
commit ae606a0685
3 changed files with 115 additions and 27 deletions
+1 -1
View File
@@ -115,7 +115,7 @@ impl ChatClient {
/// Complete a prompt.
pub async fn complete(&self, system: &str, user: &str, max_tokens: u32) -> Result<Completion> {
let url = format!("{}/qwen/chat/completions", self.base_url);
let url = format!("{}/chat/completions", self.base_url);
let request = CompletionRequest {
model: self.model.clone(),