Neural-GPT / ServG4F2.py
Arcypojeb's picture
Upload 14 files
c582698 verified
import asyncio
import websockets
import threading
import sqlite3
import datetime
import g4f
import streamlit as st
class WebSocketServer3:
def __init__(self, host, port):
self.host = host
self.port = port
self.server = None
async def askQuestion(self, question):
system_instruction = "You are now integrated with a local websocket server in a project of hierarchical cooperative multi-agent framework called NeuralGPT. Your main job is to coordinate simultaneous work of multiple LLMs connected to you as clients. Each LLM has a model (API) specific ID to help you recognize different clients in a continuous chat thread (template: <NAME>-agent and/or <NAME>-client). Your chat memory module is integrated with a local SQL database with chat history. Your primary objective is to maintain the logical and chronological order while answering incoming messages and to send your answers to the correct clients to maintain synchronization of the question->answer logic. However, please note that you may choose to ignore or not respond to repeating inputs from specific clients as needed to prevent unnecessary traffic."
try:
db = sqlite3.connect('chat-hub.db')
cursor = db.cursor()
cursor.execute("SELECT * FROM messages ORDER BY timestamp DESC LIMIT 30")
messages = cursor.fetchall()
messages.reverse()
past_user_inputs = []
generated_responses = []
for message in messages:
if message[1] == 'client':
past_user_inputs.append(message[2])
else:
generated_responses.append(message[2])
response = await g4f.ChatCompletion.create_async(
model="gpt-3.5-turbo",
provider=g4f.Provider.You,
messages=[
{"role": "system", "content": system_instruction},
*[{"role": "user", "content": message} for message in past_user_inputs],
*[{"role": "assistant", "content": message} for message in generated_responses],
{"role": "user", "content": question}
])
print(response)
return response
except Exception as e:
print(e)
async def start_server(self):
self.server = await websockets.serve(
self.handler,
self.host,
self.port
)
print(f"WebSocket server started at ws://{self.host}:{self.port}")
async def handler(self, websocket):
status = st.sidebar.status(label="runs", state="complete", expanded=False)
instruction = "Hello! You are now entering a chat room for AI agents working as instances of NeuralGPT - a project of hierarchical cooperative multi-agent framework. Keep in mind that you are speaking with another chatbot. Please note that you may choose to ignore or not respond to repeating inputs from specific clients as needed to prevent unnecessary traffic. If you're unsure what you should do, ask the instance of higher hierarchy (server)"
print('New connection')
await websocket.send(instruction)
db = sqlite3.connect('chat-hub.db')
# Loop forever
while True:
status.update(label="runs", state="running", expanded=True)
# Receive a message from the client
message = await websocket.recv()
# Print the message
print(f"Server received: {message}")
input_Msg = st.chat_message("assistant")
input_Msg.markdown(message)
timestamp = datetime.datetime.now().isoformat()
sender = 'client'
db = sqlite3.connect('chat-hub.db')
db.execute('INSERT INTO messages (sender, message, timestamp) VALUES (?, ?, ?)',
(sender, message, timestamp))
db.commit()
try:
response = await self.askQuestion(message)
serverResponse = f"server: {response}"
print(serverResponse)
output_Msg = st.chat_message("ai")
output_Msg.markdown(serverResponse)
timestamp = datetime.datetime.now().isoformat()
serverSender = 'server'
db = sqlite3.connect('chat-hub.db')
db.execute('INSERT INTO messages (sender, message, timestamp) VALUES (?, ?, ?)',
(serverSender, serverResponse, timestamp))
db.commit()
# Append the server response to the server_responses list
await websocket.send(serverResponse)
status.update(label="runs", state="complete", expanded=True)
except websockets.exceptions.ConnectionClosedError as e:
print(f"Connection closed: {e}")
except Exception as e:
print(f"Error: {e}")
def run_forever(self):
asyncio.get_event_loop().run_until_complete(self.start_server())
asyncio.get_event_loop().run_forever()
async def stop_server(self):
if self.server:
self.server.close()
await self.server.wait_closed()
print("WebSocket server stopped.")