-
-
Notifications
You must be signed in to change notification settings - Fork 59
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
What API_ENDPOINT URL do you mean? #17
Comments
Hello Thank you for your question. The "API endpoint URL" is the endpoint to which you're sending your requests. In the snippet of code you've mentioned, the endpoint is "https://api.openai.com/v1/engines/" . MODEL . "/completions". The CURLOPT_URL option that you set with curl_setopt is indeed the URL to which cURL is sending the request, so yes, that's essentially the "API endpoint URL". Depending on the model you're using, you may need to change this endpoint. For instance, if you're using the gpt-3.5-turbo model, the endpoint should be "https://api.openai.com/v1/chat/completions". The MODEL constant in your code should be replaced with the name of the model you're using. It seems like you have already defined this in your gptchat.php file. This means if you're using the gpt-3.5-turbo model, your URL should look like this: "https://api.openai.com/v1/chat/completions". Hopefully, that answers your question. Please remember to thoroughly read through the documentation as it can clarify many of your questions. Don't hesitate to ask further questions if you still have doubts. |
Me too i don't understand why you use this endpoint format ie. i'm using gpt-3.5-turbo model (defined in config.php) your code is
why don't you use it instead, adding model in postfields ?
Thanks for your code. |
Thank you for your inquiry and your interest in this code. You raise a valid point about specifying the model within the postfields rather than embedding it into the URL. Both methods are viable and may suit different developers' needs and preferences. In the provided code, I've chosen to incorporate the model into the URL to meet my specific needs, particularly when using various modules. However, your suggested approach is equally correct and may be more suitable depending on the context. Please remember that it's essential to thoroughly read the documentation before working with the script. It contains a wealth of valuable information and examples, including for the GPT-3.5 Turbo. Please don't hesitate to ask further questions if you still have doubts—I'm here to assist you. I'd like to point out the ChatGPT Security Best Practices guide that is placed at the very beginning of the README. This guide includes the exact method you are suggesting and provides a comprehensive guide to the most secure and efficient use of the ChatGPT API. It is crucial to familiarize oneself with these practices before moving forward. Lastly, please understand that the Issues section on this GitHub repo is not intended to be a chatroom. For detailed discussions and inquiries, I kindly ask you to use the dedicated Discussions tab provided. This helps keep things organized and ensures all questions are adequately addressed. I hope this clarifies things. Best of luck as you continue working with this code! |
According to
gptchat.php
I need to change "API endpoint URL".In original gptchat.php code line after this comment is
Questions:
/v1/chat/completions
. Where is exact API endpoint URL substring ingptchat.php
? It looks like it mixed withMODEL
in endpoing URL. Any suggestions?Thanks
The text was updated successfully, but these errors were encountered: