Skip to content

Commit 09038ca

Browse files
v0.1 initial setup
0 parents  commit 09038ca

File tree

6 files changed

+447
-0
lines changed

6 files changed

+447
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.env

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# openAI API test

openai/__init__.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
from openai import OpenAI
2+
import os
3+
from dotenv import load_dotenv
4+
5+
load_dotenv(dotenv_path='../.env')
6+
7+
client = OpenAI(api_key=os.getenv('APIKEY_TESTING'))
8+
data = input('Digita tu entrada:\n')
9+
completion = client.chat.completions.create(
10+
model="gpt-4o-mini",
11+
messages=[
12+
{"role": "system", "content": "You are a helpful assistant."},
13+
{
14+
"role": "user",
15+
"content": data
16+
}
17+
]
18+
)
19+
print(f"Salida:\n{completion.choices[0].message.content}")

0 commit comments

Comments
 (0)