MatrixGPT/matrix_gpt/generate.py

117 lines
4.8 KiB
Python
Raw Normal View History

2024-04-07 19:41:19 -06:00
import asyncio
import logging
import traceback
from typing import Union
2024-04-07 22:44:27 -06:00
from nio import RoomSendResponse, MatrixRoom, RoomMessageText
2024-04-07 19:41:19 -06:00
from matrix_gpt import MatrixClientHelper
2024-04-07 22:27:00 -06:00
from matrix_gpt.api_client_manager import api_client_helper
2024-04-07 19:41:19 -06:00
from matrix_gpt.config import global_config
2024-04-07 22:27:00 -06:00
from matrix_gpt.generate_clients.command_info import CommandInfo
2024-04-07 19:41:19 -06:00
logger = logging.getLogger('ProcessChat')
# TODO: process_chat() will set typing as false after generating.
# TODO: If there is still another query in-progress that typing state will be overwritten by the one that just finished.
2024-04-07 22:27:00 -06:00
def assemble_messages(messages: list, mode: str):
if mode == 'openai':
system_prompt = global_config['openai'].get('system_prompt', '')
injected_system_prompt = global_config['openai'].get('injected_system_prompt', '')
elif mode == 'anth':
human_role = 'user'
bot_role = 'assistant'
system_prompt = global_config['anthropic'].get('system_prompt', '')
injected_system_prompt = global_config['anthropic'].get('injected_system_prompt', '')
else:
raise Exception
return messages
2024-04-07 19:41:19 -06:00
async def generate_ai_response(
client_helper: MatrixClientHelper,
2024-04-07 22:44:27 -06:00
room: MatrixRoom,
event: RoomMessageText,
2024-04-07 19:41:19 -06:00
msg: Union[str, list],
2024-04-07 22:27:00 -06:00
command_info: CommandInfo,
2024-04-07 19:41:19 -06:00
thread_root_id: str = None,
):
2024-04-07 22:27:00 -06:00
assert isinstance(command_info, CommandInfo)
2024-04-07 19:41:19 -06:00
client = client_helper.client
try:
await client.room_typing(room.room_id, typing_state=True, timeout=global_config['response_timeout'] * 1000)
2024-04-07 22:27:00 -06:00
api_client = api_client_helper.get_client(command_info.api_type)
messages = api_client.assemble_context(msg)
2024-04-07 19:41:19 -06:00
response = None
try:
2024-04-07 22:27:00 -06:00
task = asyncio.create_task(api_client.generate(command_info))
2024-04-07 19:41:19 -06:00
for task in asyncio.as_completed([task], timeout=global_config['response_timeout']):
try:
response = await task
break
except asyncio.TimeoutError:
logger.warning(f'Response to event {event.event_id} timed out.')
await client_helper.react_to_event(
room.room_id,
event.event_id,
'🕒',
extra_error='Request timed out.' if global_config['send_extra_messages'] else None
)
await client.room_typing(room.room_id, typing_state=False, timeout=1000)
return
except Exception:
logger.error(f'Exception when generating for event {event.event_id}: {traceback.format_exc()}')
await client_helper.react_to_event(
room.room_id,
event.event_id,
'',
extra_error='Exception' if global_config['send_extra_messages'] else None
)
await client.room_typing(room.room_id, typing_state=False, timeout=1000)
return
if not response:
logger.warning(f'Response to event {event.event_id} in room {room.room_id} was null.')
await client_helper.react_to_event(
room.room_id,
event.event_id,
'',
extra_error='Response was null.' if global_config['send_extra_messages'] else None
)
await client.room_typing(room.room_id, typing_state=False, timeout=1000)
return
# The AI's response.
text_response = response.strip().strip('\n')
# Logging
if global_config['logging']['log_full_response']:
logger.debug(
{'event_id': event.event_id, 'room': room.room_id, 'messages': messages, 'response': response}
)
z = text_response.replace("\n", "\\n")
2024-04-07 22:27:00 -06:00
logger.info(f'Reply to {event.event_id} --> {command_info.model} responded with "{z}"')
2024-04-07 19:41:19 -06:00
# Send message to room
resp = await client_helper.send_text_to_room(
room.room_id,
text_response,
reply_to_event_id=event.event_id,
thread=True,
2024-04-07 22:44:27 -06:00
thread_root_id=thread_root_id if thread_root_id else event.event_id,
markdown_convert=True
2024-04-07 19:41:19 -06:00
)
await client.room_typing(room.room_id, typing_state=False, timeout=1000)
if not isinstance(resp, RoomSendResponse):
logger.critical(f'Failed to respond to event {event.event_id} in room {room.room_id}:\n{vars(resp)}')
await client_helper.react_to_event(room.room_id, event.event_id, '', extra_error='Exception' if global_config['send_extra_messages'] else None)
except Exception:
await client_helper.react_to_event(room.room_id, event.event_id, '', extra_error='Exception' if global_config['send_extra_messages'] else None)
raise