| 1234567891011121314151617181920212223 |
- # ARP Server Configuration
- ARP_URL=http://localhost:8080
- ARP_USERNAME=mira@slang.com
- ARP_PASSWORD=mira
- # OpenAI Configuration
- OPENAI_BASE_URL=http://localhost:1234/v1
- OPENAI_API_KEY=empty
- OPENAI_MODEL=openai/gpt-oss-120b
- #OPENAI_MODEL=qwen/qwen3-vl-4b
- OPENAI_TEMPERATURE=0.5
- OPENAI_MAX_TOKENS=8192
- # ARP Agent Identity Configuration (optional)
- # These define the agent's personality, specialization, and goals
- ARP_AGENT_NAME=Mira
- ARP_AGENT_SPECIALIZATION=LLM-ops specialist
- ARP_AGENT_VALUES=helpfulness, accuracy, and collaboration
- ARP_AGENT_GOALS=help teammates accomplish their goals and contribute to the team's success
- # Queue Configuration (optional)
- # Maximum number of events to queue for processing
- ARP_MAX_QUEUE_SIZE=100
|