mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/Re-Commander.git
synced 2026-06-15 11:56:11 +00:00
12 lines
419 B
Plaintext
12 lines
419 B
Plaintext
|
|
# 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
|
||
|
|
|
||
|
|
# Optional API key (sent as Bearer token) — leave blank for local servers
|
||
|
|
LLM_API_KEY=
|
||
|
|
|
||
|
|
# Default system prompt for the voice AI loop
|
||
|
|
LLM_SYSTEM_PROMPT=You are Jibo, a friendly social robot. Keep responses brief and conversational.
|