Files
Peter Steinberger 0135046830 refactor(llama-cpp): use one provider for managed and existing servers (#126434)
* refactor(llama-cpp): unify server ownership modes

* test(llama-cpp): preserve shared discovery limits

* fix(plugin-sdk): retain provider auth removal export
2026-08-19 13:57:33 -07:00

5 lines
259 B
TypeScript

export const LLAMA_SERVER_DEFAULT_ORIGIN = "http://127.0.0.1:8080";
export const LLAMA_SERVER_DEFAULT_API_KEY_ENV_VAR = "LLAMA_SERVER_API_KEY";
export const LLAMA_SERVER_DISCOVERY_TIMEOUT_MS = 5_000;
export const LLAMA_SERVER_DISCOVERY_CACHE_TTL_MS = 30_000;