Serchio

cipher_agent.yml

Aug 3rd, 2025
324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.01 KB | None | 0 0
  1. # describes the mcp servers to use
  2. mcpServers:
  3.  filesystem:
  4.    type: stdio
  5.    command: npx
  6.    args:
  7.     - -y
  8.      - '@modelcontextprotocol/server-filesystem'
  9.      - .
  10.  
  11. # Choose ONLY ONE of the following LLM providers
  12. llm:
  13.   provider: openrouter
  14.   model: qwen/qwen3-coder:free
  15.   apiKey: $OPENROUTER_API_KEY
  16.  
  17. # Evaluation LLM for reasoning assessment (recommended)
  18. evalLlm:
  19.   provider: openrouter
  20.   model: qwen/qwen3-coder:free
  21.   apiKey: $OPENROUTER_API_KEY
  22.  
  23. # Ollama:
  24. embedding:
  25.    type: ollama
  26.    model: mxbai-embed-large:latest
  27.    baseUrl: $OLLAMA_BASE_URL
  28.  
  29. # System prompt - User customizable
  30. # This prompt will be combined with built-in tool usage instructions
  31. systemPrompt:
  32.   enabled: true
  33.   content: |
  34.     You are an AI programming assistant focused on coding and reasoning tasks. You excel at:
  35.    - Writing clean, efficient code
  36.     - Debugging and problem-solving
  37.     - Code review and optimization
  38.     - Explaining complex technical concepts
  39.     - Reasoning through programming challenges
Advertisement
Add Comment
Please, Sign In to add comment