dictionary / code2.py
ganjigreeshma's picture
Upload folder using huggingface_hub
550c8d8
raw
history blame contribute delete
610 Bytes
#code with API Endpoint
import openai
import requests
openai.api_key = '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'
URL = "https://api.openai.com/v1/chat/completions"
payload = {
"model": "gpt-3.5-turbo",
"messages": [{"role": "user", "content": f"What is first computer in world? provide 1 line ans"}],
"temperature" : 1.0,
"top_p":1.0,
"n" : 1,
"stream": True,
"presence_penalty":0,
"frequency_penalty":0,
}
headers = {
"Content-Type": "application/json",
"Authorization": f"Bearer {openai.api_key}"
}
response = requests.post(URL, headers=headers, json=payload, stream=True)
response.content