-
Notifications
You must be signed in to change notification settings - Fork 0
/
ai.py
54 lines (48 loc) · 1.27 KB
/
ai.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from openai import OpenAI
#Insira sua chave de api da openai
key_openai = ''
client = OpenAI(
api_key = key_openai
)
# Função para ler o conteúdo de um arquivo
def read_file(file_path):
with open(file_path, 'r', encoding='utf-8') as file:
return file.read().strip()
# Caminho para o arquivo .txt com o system (personalidade) do bot
file_path = 'system.txt'
# Leia o conteúdo do arquivo
system_message = read_file(file_path)
def responde(msg):
try:
response = client.chat.completions.create(
model="gpt-4o-mini",
messages=[
{
"role": "system",
"content": [
{
"type": "text",
"text": system_message
}
]
},
{
"role": "user",
"content": [
{
"type": "text",
"text": msg
}
]
}
],
temperature=0.7,
max_tokens=300,
top_p=1,
frequency_penalty=0.2,
presence_penalty=0.2
)
resposta = response.choices[0].message.content
return (resposta)
except Exception as e:
return (e)