Spaces:
Runtime error
Runtime error
Nitish Raghav
commited on
Create gptcall.py
Browse files- gptcall.py +28 -0
gptcall.py
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import requests
|
2 |
+
import json
|
3 |
+
import openai
|
4 |
+
import configparser
|
5 |
+
|
6 |
+
# Load configuration
|
7 |
+
config = configparser.ConfigParser()
|
8 |
+
config.read('test.env')
|
9 |
+
API_KEY = config.get('API', 'OPEN_AI_KEY')
|
10 |
+
API_URL = config.get('API', 'OPEN_AI_URL')
|
11 |
+
|
12 |
+
# Set the OpenAI API key
|
13 |
+
openai.api_key = API_KEY
|
14 |
+
|
15 |
+
def generate(prompt):
|
16 |
+
try:
|
17 |
+
response = openai.ChatCompletion.create(
|
18 |
+
model="gpt-4-turbo",
|
19 |
+
messages=[
|
20 |
+
{"role": "system", "content": "You are a helpful assistant."},
|
21 |
+
{"role": "user", "content": prompt}
|
22 |
+
],
|
23 |
+
max_tokens=2000,
|
24 |
+
temperature=0.9
|
25 |
+
)
|
26 |
+
return response['choices'][0]['message']['content']
|
27 |
+
except Exception as e:
|
28 |
+
return str(e)
|