Update local qwen

This commit is contained in:
shahondin1624
2026-05-07 05:17:00 +02:00
parent 98c140ac03
commit 00fa84e810
+2 -2
View File
@@ -1,7 +1,7 @@
import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
// Point to your llama-server. Override with env vars if needed.
const BASE_URL = process.env.LLAMA_BASE_URL ?? "http://127.0.0.1:8088/v1";
// Point to your qwen-server. Override with env vars if needed.
const BASE_URL = process.env.LLAMA_BASE_URL ?? "http://127.0.0.1:8123/v1";
const MODEL_ID = process.env.LLAMA_MODEL_ID ?? "qwen-local";
const CTX = Number(process.env.LLAMA_CTX ?? 262144);
const MAX_OUT = Number(process.env.LLAMA_MAX_OUT ?? 16384);