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
-2
votes
1 answer

How to receive ChatGPT multi-line replies when using CURL?

The code below works. The problem is when ChatGPT replies only 1 line is rendered to the terminal and the rest of the text is cut off. I am not familiar with curl commands. How do I update the code so that multi-line replies are rendered? EDIT: I…
William
  • 4,422
  • 17
  • 55
  • 108
-3
votes
1 answer

How to use large prompt for GPT-3 models in python?

I am going to extract information from docx file using OpenAI GPT-3 model in python. But the total length of prompts is too big than GPT-3 provided. If you have any opinion about this problem, please help me. Thanks I tried it to split several…
TopTen1310
  • 98
  • 8
-3
votes
2 answers

Chatgpt api url questions: Chatgpt3.5 error

I tried to use openai's api,but it didn't work. It's the curl curl https://api.openai.com/v1/chat/completions \ -H "Content-Type: application/json" \ -H "Authorization: Bearer $OPENAI_API_KEY" \ -d '{ "model": "gpt-3.5-turbo", …
Rocky-y
  • 1
  • 1
-3
votes
1 answer

OpenAI converting API code from GPT-3 to chatGPT-3.5

Below is my working code for the GPT-3 API. I am having trouble converting it to work with chatGPT-3.5.
Tim M
  • 306
  • 3
  • 18
-4
votes
0 answers

How to Delete GPT Models, Managing Storage Usage for Installed GPT Models and Packages

I have installed several Generative Pretrained Transformer (GPT) models on my local system for fine-tuning purposes, both within Python in Visual Studio Code and via the Command Prompt window during code execution. The installed models include…
KARTHIK K
  • 1
  • 1
-4
votes
1 answer

OpenAI GPT-3 API: Why do I get an unexpected response?

I am connecting to the GPT-3 API through a Jupyter Notebook. This is the code: import openai import os # Set up your API key openai.api_key = os.environ["OPENAI_API_KEY"] # Choose the API endpoint model_engine = "davinci" # Create a prompt prompt…
JoeyC
  • 764
  • 11
  • 19
1 2 3
19
20