mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-07-19 03:10:03 +00:00
6 lines
190 B
TypeScript
6 lines
190 B
TypeScript
import LlamaStackClient from "llama-stack-client";
|
|
|
|
export const client = new LlamaStackClient({
|
|
baseURL:
|
|
typeof window !== "undefined" ? `${window.location.origin}/api` : "/api",
|
|
});
|