Mercurial > vim
comparison plugins/vim-ai/roles.ini @ 22:c8ad85e95854 default tip
Some general updates
| author | Luka Sitas <lsitas@avatarasoftware.com> |
|---|---|
| date | Thu, 16 Jul 2026 14:47:23 -0400 |
| parents | 7cc13548becc |
| children |
comparison
equal
deleted
inserted
replaced
| 21:20ce06ac3a68 | 22:c8ad85e95854 |
|---|---|
| 1 # .ini file structure: https://docs.python.org/3/library/configparser.html#supported-ini-file-structure | 1 # .ini file structure: https://docs.python.org/3/library/configparser.html#supported-ini-file-structure |
| 2 | 2 |
| 3 | 3 |
| 4 # common options for all commands (complete, edit, chat) | 4 # common options for all commands (complete, edit, chat) |
| 5 [default] | 5 [default] |
| 6 options.model = gpt-5.1 | 6 #options.model = gpt-oss:20b |
| 7 options.model = qwen3.6-moe:35b-a3b | |
| 8 options.endpoint_url = http://127.0.0.1:8080/v1/chat/completions | |
| 9 options.reasoning_effort = low | |
| 10 options.auth_type = none | |
| 11 options.request_timeout = 999 | |
| 7 | 12 |
| 8 [default.chat] | 13 [default.chat] |
| 9 options.initial_prompt = | 14 options.initial_prompt = |
| 10 >>> system | 15 >>> system |
| 11 You are a general assistant. | 16 You are a general assistant. |
| 34 | 39 |
| 35 options.endpoint_url = http://127.0.0.1:8080/v1/chat/completions | 40 options.endpoint_url = http://127.0.0.1:8080/v1/chat/completions |
| 36 options.reasoning_effort = low | 41 options.reasoning_effort = low |
| 37 options.auth_type = none | 42 options.auth_type = none |
| 38 | 43 |
| 44 [qwen.chat] | |
| 45 options.model = qwen3.5:9b | |
| 39 | 46 |
| 40 | 47 |
| 41 [prompter] | 48 [prompter] |
| 42 options.endpoint_url = http://127.0.0.1:8080/v1/chat/completions | 49 options.endpoint_url = http://127.0.0.1:8080/v1/chat/completions |
| 43 options.reasoning_effort = high | 50 options.reasoning_effort = high |
| 86 > *[paste code]* | 93 > *[paste code]* |
| 87 **Your reply should only contain the review feedback.** | 94 **Your reply should only contain the review feedback.** |
| 88 | 95 |
| 89 [ovh] | 96 [ovh] |
| 90 options.endpoint_url = https://oai.endpoints.kepler.ai.cloud.ovh.net/v1/chat/completions | 97 options.endpoint_url = https://oai.endpoints.kepler.ai.cloud.ovh.net/v1/chat/completions |
| 91 options.model = gpt-oss-20b | 98 options.model = gpt-oss-120b |
| 92 options.token_file_path = ~/.config/ovh.token | 99 options.token_file_path = ~/.config/ovh.token |
| 93 options.stream = 1 | 100 options.stream = 1 |
| 94 options.request_timeout = 999 | 101 options.request_timeout = 999 |
| 102 | |
| 103 [ovh-qwen] | |
| 104 options.endpoint_url = https://oai.endpoints.kepler.ai.cloud.ovh.net/v1/chat/completions | |
| 105 options.model = Qwen3.5-9B | |
| 106 options.token_file_path = ~/.config/ovh.token | |
| 107 options.stream = 1 | |
| 108 options.request_timeout = 999 | |
| 109 | |
| 110 [openai.edit] | |
| 111 options.endpoint_url = https://api.openai.com/v1/chat/completions | |
| 112 options.model = gpt-5.4 | |
| 113 options.token_file_path = ~/.config/openai.token | |
| 114 options.stream = 1 | |
| 115 options.request_timeout = 999 |
