2026-04-19 02:40:41 -04:00
|
|
|
# OpenAI-compatible completions endpoint (e.g. Ollama, LM Studio, OpenAI)
|
|
|
|
|
LLM_ENDPOINT=http://localhost:11434/v1/chat/completions
|
|
|
|
|
|
|
|
|
|
# Model name passed to the endpoint
|
|
|
|
|
LLM_MODEL=llama3
|
|
|
|
|
|
2026-04-19 14:54:59 -04:00
|
|
|
# Optional API key — value is sent as "Bearer <value>", do NOT include the word "Bearer" here
|
2026-04-19 02:40:41 -04:00
|
|
|
LLM_API_KEY=
|
|
|
|
|
|
2026-04-19 14:54:59 -04:00
|
|
|
# Optional extra headers sent with every LLM request, as a JSON object
|
|
|
|
|
# Example: LLM_HEADERS={"x-openclaw-agent-id":"jibo"}
|
|
|
|
|
LLM_HEADERS=
|
|
|
|
|
|
2026-04-19 02:40:41 -04:00
|
|
|
# Default system prompt for the voice AI loop
|
|
|
|
|
LLM_SYSTEM_PROMPT=You are Jibo, a friendly social robot. Keep responses brief and conversational.
|