Questions tagged [gpt-3]

Use this tag with Generative Pre-trained Transformer 3 (GPT-3). Do not use with GPT-2 or the ad tagging library (GPT).

References:

GPT-3 (Wikipedia)

Related tags:

296 questions
-1
votes
1 answer

OpenAI GPT-3 API error: "That model does not exist"

Get "That model does not exist" from api call in node.js const chatGptUrl = "https://api.openai.com/v1/engines/chat-gpt/jobs"; ... const response = await axios.post( chatGptUrl, { prompt, max_tokens: 100, n: 1, …
chovy
  • 72,281
  • 52
  • 227
  • 295
-1
votes
1 answer

What is the OpenAI API warning: To avoid an invalid_request_error, best_of was set to equal n. What is "best of"?

This "best of" warning results from using the OpenAI API on a PC running Win10. The Context: Using the OpenAI API in Jupyter Lab with the ir kernel, with having only the rgpt3 library installed in this Notebook. The API successfully performs a test…
Gray
  • 1,164
  • 1
  • 9
  • 23
-1
votes
2 answers

What's the correct URL to test OpenAI API?

I'm trying to test the GPT-3 API with a request using curl in Windows CMD: curl -X POST -H "Content-Type: application/json" -H "Authorization: Bearer MY_KEY" -d "{\"text\": \"is this working\"}"…
The Student
  • 27,520
  • 68
  • 161
  • 264
-1
votes
1 answer

Error: That model does not exist (OpenAI)

When using a model I fine-tuned for GPT-3 using openai api from CLI, it stopped working and I get an error with this message: "That model does not exist". But this is a model I have used before, so it should exist.
Franco Petra
  • 688
  • 7
  • 18
-1
votes
2 answers

When you prompt GPT3, what happens to the input data?

For example, let's say I open up the playground and type "Quack". What does the model do with those 5 characters to figure out what letters or words should come next? (As it happens, GPT3 filled in that prompt with "Quackery", then a tirade against…
-1
votes
1 answer

GPT-3: a medical analogue

Is there an analogue of this which would answer like an excellent doctor ? Or Einstein, or Ancient Greek ? At which URL can I find the list of all of these possibilities ? I have just discovered GPT-3 and I'm amazed with it.
user2925716
  • 949
  • 1
  • 6
  • 13
-2
votes
1 answer

Predicting next questions in llm powered chatbot

I am building a question answering chatbot powered by llms. I have seen in chatbots like bing chat it predicts what might be the top three next questions user may ask. My question is: How would I do the same in my chatbot? I have implemented the qa…
-2
votes
0 answers

Data classification against a large set of taxonomies with GPT

we're trying to use GPT-(3.5 or 4) to classify some data extracted from LinkedIn against a set of our own taxonomies. For example, we get something like this for the profile: { "title": "Senior tender at bar", "description": "My job was to serve…
-2
votes
1 answer

Give GPT a material to base his answer on

I have been tasked in integrating GPT as a consultant on a website. It is supposed to use a manual I have been provided with, but I don't know how to give the manual to it. The only solution I have is to send the manual as a message with {role:…
SevenWare
  • 17
  • 4
-2
votes
1 answer

OpenAI GPT-3 API error: Why do I get an error when I try to implement an OpenAI API in my JavaScript code?

I am trying to create a simple website using HTML and JavaScript using an OpenAI API where the user inputs a query and the model generates a response. Whenever I type something in the textbox and click a button to generate something, it will always…
-2
votes
1 answer

gpt3 - error with the openai api when trying to generate an embedding

I have a python code for create a embedding with openai, but when I try to execute the code, I receive this error: The server is currently overloaded with other requests. Sorry about that! You can retry your request, or contact us through our help…
Alberto
  • 1
  • 1
  • 2
-2
votes
2 answers

OpenAI GPT-3 API error: "Unknown endpoint for this model."

I'm new to using APIs. I found myself interested inn the new OpenAI product, GPT-3 (I know, it's not that new. But I just found out about it). I'm trying to use the API key in Python, but it seems the key is invalid. This is my code (I can't put my…
-2
votes
1 answer

I do not know why I can't access open ai's api for use in a react app

I am trying to access openai's api for a react application. I am getting an "unsafe header" error, an error 400, and at the same time "https://api.openai.com/v1/completions" is sending me a prompt about not providing my api key, even though I am…
udenx10
  • 11
  • 2
-2
votes
1 answer

How can I correctly implement the OpenAI API in swiftUI using a REST API? closed

I currently have made a REST API using Alamofire in swiftUI. The request is a post method to this URL: https://api.openai.com/v1/engines/text-davinci-002/completions, which is basically sending a question to the OpenAI API and supposed to get the…
Refluent
  • 93
  • 8
-2
votes
1 answer

Getting 400 Bad Request from Open AI API using Python Flask

I want to get response using Flask from OpenAI API. Whether I am getting Status 400 Bad Request from Browser through http://127.0.0.1:5000/chat Bad Request The browser (or proxy) sent a request that this server could not understand. Also I am…
1 2 3
19
20