Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow OpenAI endpoint configuration via config #18

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
rm commented code
  • Loading branch information
Karim Shakirov authored and Karim Shakirov committed Feb 20, 2024
commit 9e0f338a7ff171350e2d43df1afb2919cf5522f0
3 changes: 1 addition & 2 deletions lua/wtf/gpt.lua
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,7 @@ function M.request(messages, callback, callbackTable)
if isWindows ~= true then
-- Linux
curlRequest = string.format(
--'curl -s https://api.openai.com/v1/chat/completions -H "Content-Type: application/json" -H "Authorization: Bearer '
'curl -s '
'curl -s '
.. base_url
.. '/v1/chat/completions -H "Content-Type: application/json" -H "Authorization: Bearer '
.. api_key
Expand Down