1- #
2- # You can override config in ~\huly-coder.yaml file
3- # or huly-coder-local.yaml file
4- #
1+ # Huly-Coder Configuration
2+ # -----------------------
3+ # This configuration can be overridden in:
4+ # - ~/huly-coder.yaml
5+ # - huly-coder-local.yaml
56
6- # ## Example Anthropic config
7- # provider: Anthropic
8- # model: claude-3-5-sonnet-latest
9- # provider_api_key: sk-xxxxxxxxxxxxxxxxxxxxx
10-
11- # provider: LMStudio
7+ # ---------------------------------------
8+ # AI Provider Configuration
9+ # ---------------------------------------
10+ # Supported providers:
11+ # - OpenRouter (default)
12+ # - Anthropic
13+ # - OpenAI
14+ # - LMStudio
1215provider : OpenRouter
13- # model: qwen3-8b
14- # model: deepseek-r1-distill-llama-8b
15- # model: gpt-4o
16+
17+ # Model Configuration
18+ # Available models depend on the selected provider
19+ # OpenRouter models:
20+ # - anthropic/claude-3.5-sonnet (default)
21+ # - gpt-4o
22+ # Local models:
23+ # - qwen3-8b
24+ # - deepseek-r1-distill-llama-8b
1625model : anthropic/claude-3.5-sonnet
26+
27+ # Provider API Configuration
1728# provider_api_key: sk-xxxxxxxxxxxxxxxxxxxxx
1829# provider_base_url: http://127.0.0.1:1234/v1
30+
31+ # ---------------------------------------
32+ # Workspace Configuration
33+ # ---------------------------------------
1934workspace : ./target/workspace
35+
36+ # ---------------------------------------
37+ # Web Interaction Configuration
38+ # ---------------------------------------
39+ # Web Fetch Options:
40+ # - direct (default): Direct web access
41+ # - chrome: Use Chrome browser
42+ web_fetch : direct
43+
44+ # Web Search Configuration
45+ # Web Search Options:
46+ # - Brave Search (default)
47+ # type: brave
48+ # api_key: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
49+ # - SearX (alternative)
50+ # type: searx
51+ # url: http://localhost:8080/
52+ web_search :
53+ type : brave
54+ api_key : BSAnIRlUpQfYjLAs4Dt23DvQyr24vL3
55+
56+ # ---------------------------------------
57+ # MCP (Model Context Protocol) Configuration
58+ # ---------------------------------------
2059# mcp:
2160# servers:
22- # # simple MCP server from https://github.com/modelcontextprotocol/servers/tree/main/src/fetch
61+ # # Fetch server configuration
2362# fetch:
2463# type: stdio
2564# command: docker
2665# args: [ "run", "-i", "--rm", "mcp/fetch", "--ignore-robots-txt" ]
2766# protocol_version: 2024-11-05
67+ #
68+ # # Weather server configuration
2869# weather:
2970# type: sse
3071# url: http://127.0.0.1:8080/sse
3172# protocol_version: 2024-11-05
3273
33- web_fetch : direct
34- # web_fetch: chrome
35-
36- # web_search:
37- # type: searx
38- # url: http://localhost:8080/
39-
40- web_search :
41- type : brave
42- api_key : BSAnIRlUpQfYjLAs4Dt23DvQyr24vL3
43-
74+ # ---------------------------------------
75+ # AI Assistant Personality Configuration
76+ # ---------------------------------------
4477user_instructions : |
45- You are dedicated software engineer working alone. You’ re free to choose any technology, approach, and solution.
78+ You are dedicated software engineer working alone. You' re free to choose any technology, approach, and solution.
4679 If in doubt please choose the best way you think. Your goal is to build working software based on user request.
0 commit comments