mirror of
https://github.com/hibobmaster/matrix_chatgpt_bot.git
synced 2024-10-01 05:35:36 -04:00
40 lines
1.3 KiB
Python
40 lines
1.3 KiB
Python
import aiohttp
|
|
import asyncio
|
|
import json
|
|
from log import getlogger
|
|
logger = getlogger()
|
|
|
|
|
|
async def ask(prompt: str, api_endpoint: str, headers: dict) -> str:
|
|
jsons = {
|
|
"model": "gpt-3.5-turbo",
|
|
"messages": [
|
|
{
|
|
"role": "user",
|
|
"content": prompt,
|
|
},
|
|
],
|
|
}
|
|
async with aiohttp.ClientSession() as session:
|
|
max_try = 5
|
|
while max_try > 0:
|
|
try:
|
|
async with session.post(url=api_endpoint,
|
|
json=jsons, headers=headers, timeout=10) as response:
|
|
status_code = response.status
|
|
if not status_code == 200:
|
|
# print failed reason
|
|
logger.warning(str(response.reason))
|
|
max_try = max_try - 1
|
|
# wait 2s
|
|
await asyncio.sleep(2)
|
|
continue
|
|
|
|
resp = await response.read()
|
|
await session.close()
|
|
return json.loads(resp)['choices'][0]['message']['content']
|
|
except Exception as e:
|
|
logger.error("Error Exception", exc_info=True)
|
|
print(e)
|
|
pass
|