matrix_chatgpt_bot/ask_gpt.py

40 lines
1.3 KiB
Python
Raw Normal View History

2023-03-05 14:07:25 +00:00
import aiohttp
import asyncio
import json
2023-03-10 13:43:18 +00:00
from log import getlogger
logger = getlogger()
2023-03-05 14:07:25 +00:00
async def ask(prompt: str, api_endpoint: str, headers: dict) -> str:
2023-03-05 14:07:25 +00:00
jsons = {
"model": "gpt-3.5-turbo",
"messages": [
{
"role": "user",
"content": prompt,
},
],
}
async with aiohttp.ClientSession() as session:
max_try = 5
while max_try > 0:
2023-03-05 14:07:25 +00:00
try:
async with session.post(url=api_endpoint,
2023-03-14 14:37:30 +00:00
json=jsons, headers=headers, timeout=30) as response:
2023-03-05 14:07:25 +00:00
status_code = response.status
if not status_code == 200:
2023-03-10 13:43:18 +00:00
# print failed reason
logger.warning(str(response.reason))
max_try = max_try - 1
2023-03-05 14:07:25 +00:00
# wait 2s
await asyncio.sleep(2)
2023-03-05 14:07:25 +00:00
continue
resp = await response.read()
await session.close()
return json.loads(resp)['choices'][0]['message']['content']
except Exception as e:
2023-03-10 13:43:18 +00:00
logger.error("Error Exception", exc_info=True)
2023-03-05 14:07:25 +00:00
print(e)
pass