1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
let s:plugin_root = expand('<sfile>:p:h:h')
let s:initial_complete_prompt =<< trim END
>>> system
You are a general assistant.
Answer shortly, consisely and only what you are asked.
Do not provide any explanantion or comments if not requested.
If you answer in a code, do not wrap it in markdown code block.
END
let g:vim_ai_complete_default = {
\ "prompt": "",
\ "engine": "chat",
\ "options": {
\ "model": "gpt-4o",
\ "endpoint_url": "https://api.openai.com/v1/chat/completions",
\ "max_tokens": 0,
\ "max_completion_tokens": 0,
\ "temperature": 0.1,
\ "request_timeout": 20,
\ "stream": 1,
\ "enable_auth": 1,
\ "token_file_path": "",
\ "selection_boundary": "#####",
\ "initial_prompt": s:initial_complete_prompt,
\ },
\ "ui": {
\ "paste_mode": 1,
\ },
\ "provider": {
\ "name": "openai.complete",
\ "class": "OpenAIComplete"
\ }
\}
let g:vim_ai_edit_default = {
\ "prompt": "",
\ "engine": "chat",
\ "options": {
\ "model": "gpt-4o",
\ "endpoint_url": "https://api.openai.com/v1/chat/completions",
\ "max_tokens": 0,
\ "max_completion_tokens": 0,
\ "temperature": 0.1,
\ "request_timeout": 20,
\ "stream": 1,
\ "enable_auth": 1,
\ "token_file_path": "",
\ "selection_boundary": "#####",
\ "initial_prompt": s:initial_complete_prompt,
\ },
\ "ui": {
\ "paste_mode": 1,
\ },
\}
let g:vim_ai_image_default = {
\ "prompt": "",
\ "options": {
\ "model": "dall-e-3",
\ "endpoint_url": "https://api.openai.com/v1/images/generations",
\ "quality": "standard",
\ "size": "1024x1024",
\ "style": "vivid",
\ "request_timeout": 20,
\ "enable_auth": 1,
\ "token_file_path": "",
\ },
\ "ui": {
\ "download_dir": "",
\ },
\}
let s:initial_chat_prompt =<< trim END
>>> system
You are a general assistant.
If you attach a code block add syntax type after ``` to enable syntax highlighting.
END
let g:vim_ai_chat_default = {
\ "prompt": "",
\ "options": {
\ "model": "gpt-4o",
\ "endpoint_url": "https://api.openai.com/v1/chat/completions",
\ "max_tokens": 0,
\ "max_completion_tokens": 0,
\ "temperature": 1,
\ "request_timeout": 20,
\ "stream": 1,
\ "enable_auth": 1,
\ "token_file_path": "",
\ "selection_boundary": "",
\ "initial_prompt": s:initial_chat_prompt,
\ },
\ "ui": {
\ "open_chat_command": "preset_below",
\ "scratch_buffer_keep_open": 0,
\ "populate_options": 0,
\ "code_syntax_enabled": 1,
\ "force_new_chat": 0,
\ "paste_mode": 1,
\ },
\ "provider": {
\ "name": "openai.complete",
\ "class": "OpenAIChat"
\ }
\}
if !exists("g:vim_ai_open_chat_presets")
let g:vim_ai_open_chat_presets = {
\ "preset_below": "below new",
\ "preset_tab": "tabnew",
\ "preset_right": "rightbelow 55vnew | setlocal noequalalways | setlocal winfixwidth",
\}
endif
if !exists("g:vim_ai_debug")
let g:vim_ai_debug = 0
endif
if !exists("g:vim_ai_debug_log_file")
let g:vim_ai_debug_log_file = "/tmp/vim_ai_debug.log"
endif
if !exists("g:vim_ai_token_file_path")
let g:vim_ai_token_file_path = "~/.config/openai.token"
endif
if !exists("g:vim_ai_roles_config_file")
let g:vim_ai_roles_config_file = s:plugin_root . "/roles-example.ini"
endif
function! vim_ai_config#ExtendDeep(defaults, override) abort
let l:result = a:defaults
for [l:key, l:value] in items(a:override)
if type(get(l:result, l:key)) is v:t_dict && type(l:value) is v:t_dict
call vim_ai_config#ExtendDeep(l:result[l:key], l:value)
else
let l:result[l:key] = l:value
endif
endfor
return l:result
endfunction
function! s:MakeConfig(config_name) abort
let l:defaults = copy(g:[a:config_name . "_default"])
let l:override = exists("g:" . a:config_name) ? g:[a:config_name] : {}
let g:[a:config_name] = vim_ai_config#ExtendDeep(l:defaults, l:override)
endfunction
call s:MakeConfig("vim_ai_chat")
call s:MakeConfig("vim_ai_complete")
call s:MakeConfig("vim_ai_image")
call s:MakeConfig("vim_ai_edit")
function! vim_ai_config#load()
" nothing to do - triggers autoloading of this file
endfunction
|