updates
This commit is contained in:
@@ -5,18 +5,19 @@ return {
|
||||
opts = {
|
||||
-- add any opts here
|
||||
-- for example
|
||||
provider = "claude",
|
||||
-- provider = "claude",
|
||||
provider = "openai",
|
||||
providers = {
|
||||
-- openai = {
|
||||
-- endpoint = "https://api.openai.com/v1",
|
||||
-- model = "gpt-4o", -- your desired model (or use gpt-4o, etc.)
|
||||
-- extra_request_body = {
|
||||
-- timeout = 30000, -- Timeout in milliseconds, increase this for reasoning models
|
||||
-- temperature = 0.75,
|
||||
-- max_completion_tokens = 8192, -- Increase this to include reasoning tokens (for reasoning models)
|
||||
-- --reasoning_effort = "medium", -- low|medium|high, only used for reasoning models
|
||||
-- },
|
||||
-- },
|
||||
openai = {
|
||||
endpoint = "https://api.openai.com/v1",
|
||||
model = "gpt-4o", -- your desired model (or use gpt-4o, etc.)
|
||||
extra_request_body = {
|
||||
timeout = 30000, -- Timeout in milliseconds, increase this for reasoning models
|
||||
temperature = 0.75,
|
||||
max_completion_tokens = 8192, -- Increase this to include reasoning tokens (for reasoning models)
|
||||
--reasoning_effort = "medium", -- low|medium|high, only used for reasoning models
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
-- if you want to build from source then do `make BUILD_FROM_SOURCE=true`
|
||||
|
||||
10
lua/shelbybark/plugins/nvim-highlight-colors.lua
Normal file
10
lua/shelbybark/plugins/nvim-highlight-colors.lua
Normal file
@@ -0,0 +1,10 @@
|
||||
return {
|
||||
"brenoprata10/nvim-highlight-colors",
|
||||
config = function()
|
||||
local highlight = require("nvim-highlight-colors")
|
||||
|
||||
vim.opt.termguicolors = true
|
||||
|
||||
highlight.setup({})
|
||||
end,
|
||||
}
|
||||
Reference in New Issue
Block a user