2024-01-07 02:18:13 +00:00
"""
project : lollms
file : lollms_discussion_events . py
author : ParisNeo
description :
This module contains a set of Socketio routes that provide information about the Lord of Large Language and Multimodal Systems ( LoLLMs ) Web UI
application . These routes are specific to discussion operation
"""
from fastapi import APIRouter , Request
from fastapi import HTTPException
from pydantic import BaseModel
import pkg_resources
from lollms . server . elf_server import LOLLMSElfServer
from fastapi . responses import FileResponse
from lollms . binding import BindingBuilder , InstallOption
from ascii_colors import ASCIIColors
from lollms . personality import MSG_TYPE , AIPersonality
from lollms . types import MSG_TYPE , SENDER_TYPES
from lollms . utilities import load_config , trace_exception , gc
from lollms . utilities import find_first_available_file_index , convert_language_name
from lollms_webui import LOLLMSWebUI
from pathlib import Path
from typing import List
import socketio
import threading
import os
2024-02-26 00:55:44 +00:00
from lollms . databases . discussions_database import Discussion
2024-01-07 02:18:13 +00:00
from datetime import datetime
router = APIRouter ( )
lollmsElfServer = LOLLMSWebUI . get_instance ( )
# ----------------------------------- events -----------------------------------------
def add_events ( sio : socketio ) :
@sio.on ( ' new_discussion ' )
2024-01-10 20:22:17 +00:00
async def new_discussion ( sid , data ) :
if lollmsElfServer . personality is None :
lollmsElfServer . error ( " Please select a personality first " )
return
2024-01-07 02:18:13 +00:00
ASCIIColors . yellow ( " New descussion requested " )
client_id = sid
title = data [ " title " ]
2024-02-26 00:55:44 +00:00
lollmsElfServer . session . get_client ( client_id ) . discussion = lollmsElfServer . db . create_discussion ( title )
2024-01-07 02:18:13 +00:00
# Get the current timestamp
timestamp = datetime . now ( ) . strftime ( " % Y- % m- %d % H: % M: % S " )
# Return a success response
2024-02-26 00:55:44 +00:00
if lollmsElfServer . session . get_client ( client_id ) . discussion is None :
lollmsElfServer . session . get_client ( client_id ) . discussion = lollmsElfServer . db . load_last_discussion ( )
2024-01-07 02:18:13 +00:00
if lollmsElfServer . personality . welcome_message != " " :
if lollmsElfServer . config . force_output_language_to_be and lollmsElfServer . config . force_output_language_to_be . lower ( ) . strip ( ) != " english " :
welcome_message = lollmsElfServer . personality . fast_gen ( f " !@>instruction: Translate the following text to { lollmsElfServer . config . force_output_language_to_be . lower ( ) } : \n { lollmsElfServer . personality . welcome_message } \n !@>translation: " )
else :
welcome_message = lollmsElfServer . personality . welcome_message
2024-02-26 00:55:44 +00:00
message = lollmsElfServer . session . get_client ( client_id ) . discussion . add_message (
2024-01-07 02:18:13 +00:00
message_type = MSG_TYPE . MSG_TYPE_FULL . value if lollmsElfServer . personality . include_welcome_message_in_disucssion else MSG_TYPE . MSG_TYPE_FULL_INVISIBLE_TO_AI . value ,
sender_type = SENDER_TYPES . SENDER_TYPES_AI . value ,
sender = lollmsElfServer . personality . name ,
content = welcome_message ,
metadata = None ,
rank = 0 ,
parent_message_id = - 1 ,
binding = lollmsElfServer . config . binding_name ,
model = lollmsElfServer . config . model_name ,
personality = lollmsElfServer . config . personalities [ lollmsElfServer . config . active_personality_id ] ,
created_at = None ,
finished_generating_at = None
)
2024-01-16 23:06:38 +00:00
await lollmsElfServer . sio . emit ( ' discussion_created ' ,
2024-02-26 00:55:44 +00:00
{ ' id ' : lollmsElfServer . session . get_client ( client_id ) . discussion . discussion_id } ,
2024-01-07 02:18:13 +00:00
to = client_id
)
else :
2024-01-16 23:06:38 +00:00
await lollmsElfServer . sio . emit ( ' discussion_created ' ,
2024-01-07 02:18:13 +00:00
{ ' id ' : 0 } ,
to = client_id
)
@sio.on ( ' load_discussion ' )
async def load_discussion ( sid , data ) :
client_id = sid
ASCIIColors . yellow ( f " Loading discussion for client { client_id } ... " , end = " " )
if " id " in data :
discussion_id = data [ " id " ]
2024-02-26 00:55:44 +00:00
lollmsElfServer . session . get_client ( client_id ) . discussion = Discussion ( discussion_id , lollmsElfServer . db )
2024-01-07 02:18:13 +00:00
else :
2024-02-26 00:55:44 +00:00
if lollmsElfServer . session . get_client ( client_id ) . discussion is not None :
discussion_id = lollmsElfServer . session . get_client ( client_id ) . discussion . discussion_id
lollmsElfServer . session . get_client ( client_id ) . discussion = Discussion ( discussion_id , lollmsElfServer . db )
2024-01-07 02:18:13 +00:00
else :
2024-02-26 00:55:44 +00:00
lollmsElfServer . session . get_client ( client_id ) . discussion = lollmsElfServer . db . create_discussion ( )
messages = lollmsElfServer . session . get_client ( client_id ) . discussion . get_messages ( )
2024-01-07 02:18:13 +00:00
jsons = [ m . to_json ( ) for m in messages ]
2024-01-16 23:06:38 +00:00
await lollmsElfServer . sio . emit ( ' discussion ' ,
2024-01-07 02:18:13 +00:00
jsons ,
to = client_id
)
ASCIIColors . green ( f " ok " )