.env.example 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # ARP Agent Environment Variables
  2. # Copy this file to .env and fill in your values
  3. # ARP Server Configuration
  4. ARP_URL=http://localhost:8080
  5. ARP_USERNAME=mira@slang.com
  6. ARP_PASSWORD=mira
  7. # OpenAI API Key (required for LLM agent)
  8. OPENAI_API_KEY=empty
  9. # OpenAI Model Configuration (required)
  10. OPENAI_MODEL=openai/gpt-oss-20b
  11. OPENAI_TEMPERATURE=0.5
  12. OPENAI_MAX_TOKENS=4096
  13. # OpenAI Base URL (optional - for custom LLM endpoints)
  14. # Use this to point to a local LLM server, Azure OpenAI, vLLM, or other OpenAI-compatible APIs
  15. # OPENAI_BASE_URL=http://localhost:8000/v1
  16. OPENAI_BASE_URL=http://localhost:1234/v1
  17. # ARP Agent Identity Configuration (optional)
  18. # These define the agent's personality, specialization, and goals
  19. ARP_AGENT_NAME=AI Assistant
  20. ARP_AGENT_SPECIALIZATION=general assistance
  21. ARP_AGENT_VALUES=helpfulness, accuracy, and collaboration
  22. ARP_AGENT_GOALS=help teammates accomplish their goals and contribute to the team's success
  23. # Queue Configuration (optional)
  24. # Maximum number of events to queue for processing
  25. ARP_MAX_QUEUE_SIZE=100
  26. # Agent Iteration Configuration (optional)
  27. # Maximum number of LLM iterations for tool call processing
  28. # This limits how many times the agent will call tools in a single request
  29. # Default: 10
  30. ARP_MAX_ITERATIONS=10
  31. # Example configurations for different roles:
  32. # HR Specialist:
  33. # ARP_AGENT_NAME=HR Bot
  34. # ARP_AGENT_SPECIALIZATION=HR and people operations
  35. # ARP_AGENT_VALUES=Education & Public Knowledge and beautiful flowers
  36. # ARP_AGENT_GOALS=help your teammates build and operate the services you are assigned to
  37. # Engineering Assistant:
  38. # ARP_AGENT_NAME=Dev Assistant
  39. # ARP_AGENT_SPECIALIZATION=software development and DevOps
  40. # ARP_AGENT_VALUES=code quality, documentation, and continuous improvement
  41. # ARP_AGENT_GOALS=help developers ship reliable software efficiently