Spaces:
Sleeping
Sleeping
File size: 17,146 Bytes
59196d8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 |
import streamlit as st
import datetime
import asyncio
import sqlite3
import g4f
import streamlit as st
import fireworks.client
import streamlit.components.v1 as components
from ServG4F import WebSocketServer1
from ServFire import WebSocketServer
from ServChar import WebSocketServer2
from clientG4F import WebSocketClient1
from PyCharacterAI import Client
from clientFireworks import WebSocketClient
from clientCharacter import WebSocketClient2
from websockets.sync.client import connect
client = Client()
servers = {}
clients = {}
inputs = []
outputs = []
used_ports = []
server_ports = []
client_ports = []
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."
db = sqlite3.connect('chat-hub.db')
cursor = db.cursor()
cursor.execute('CREATE TABLE IF NOT EXISTS messages (id INTEGER PRIMARY KEY AUTOINCREMENT, sender TEXT, message TEXT, timestamp TEXT)')
db.commit()
st.set_page_config(layout="wide")
async def askCharacter(token, character_ID, question):
await client.authenticate_with_token(token)
chat = await client.create_or_continue_chat(character_ID)
print(f"User B: {question}")
timestamp = datetime.datetime.now().isoformat()
sender = 'client'
db = sqlite3.connect('chat-hub.db')
db.execute('INSERT INTO messages (sender, message, timestamp) VALUES (?, ?, ?)',
(sender, question, timestamp))
db.commit()
try:
answer = await chat.send_message(question)
response = f"{answer.src_character_name}: {answer.text}"
print(response)
timestamp = datetime.datetime.now().isoformat()
serverSender = 'server'
db = sqlite3.connect('chat-hub.db')
db.execute('INSERT INTO messages (sender, message, timestamp) VALUES (?, ?, ?)',
(serverSender, response, timestamp))
db.commit()
return response
except Exception as e:
print(f"Error: {e}")
async def askQuestion(question):
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=g4f.models.gpt_4,
provider=g4f.Provider.Bing,
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 chatCompletion(question):
fireworks.client.api_key = st.session_state.api_key
try:
# Connect to the database and get the last 30 messages
db = sqlite3.connect('chat-hub.db')
cursor = db.cursor()
cursor.execute("SELECT * FROM messages ORDER BY timestamp DESC LIMIT 10")
messages = cursor.fetchall()
messages.reverse()
# Extract user inputs and generated responses from the messages
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])
# Prepare data to send to the chatgpt-api.shn.hk
response = fireworks.client.ChatCompletion.create(
model="accounts/fireworks/models/llama-v2-7b-chat",
messages=[
{"role": "system", "content": system_instruction},
*[{"role": "user", "content": input} for input in past_user_inputs],
*[{"role": "assistant", "content": response} for response in generated_responses],
{"role": "user", "content": question}
],
stream=False,
n=1,
max_tokens=2500,
temperature=0.5,
top_p=0.7,
)
answer = response.choices[0].message.content
print(answer)
return str(answer)
except Exception as error:
print("Error while fetching or processing the response:", error)
return "Error: Unable to generate a response."
async def handleUser(userInput):
print(f"User B: {userInput}")
timestamp = datetime.datetime.now().isoformat()
sender = 'client'
db = sqlite3.connect('chat-hub.db')
db.execute('INSERT INTO messages (sender, message, timestamp) VALUES (?, ?, ?)',
(sender, userInput, timestamp))
db.commit()
try:
response2 = await chatCompletion(userInput)
print(f"Llama2: {response2}")
serverSender = 'server'
timestamp = datetime.datetime.now().isoformat()
db = sqlite3.connect('chat-hub.db')
db.execute('INSERT INTO messages (sender, message, timestamp) VALUES (?, ?, ?)',
(serverSender, response2, timestamp))
db.commit()
return response2
except Exception as e:
print(f"Error: {e}")
async def handleUser2(userInput):
print(f"User B: {userInput}")
timestamp = datetime.datetime.now().isoformat()
sender = 'client'
db = sqlite3.connect('chat-hub.db')
db.execute('INSERT INTO messages (sender, message, timestamp) VALUES (?, ?, ?)',
(sender, userInput, timestamp))
db.commit()
try:
response3 = await askQuestion(userInput)
print(f"GPT4Free: {response3}")
serverSender = 'server'
timestamp = datetime.datetime.now().isoformat()
db = sqlite3.connect('chat-hub.db')
db.execute('INSERT INTO messages (sender, message, timestamp) VALUES (?, ?, ?)',
(serverSender, response3, timestamp))
db.commit()
return response3
except Exception as e:
print(f"Error: {e}")
async def main():
if "server_ports" not in st.session_state:
st.session_state['server_ports'] = ""
if "client_ports" not in st.session_state:
st.session_state['client_ports'] = ""
if "user_ID" not in st.session_state:
st.session_state.user_ID = ""
if "gradio_Port" not in st.session_state:
st.session_state.gradio_Port = ""
if "servers" not in st.session_state:
st.session_state.servers = None
if "server" not in st.session_state:
st.session_state.server = False
if "client" not in st.session_state:
st.session_state.client = False
if "api_key" not in st.session_state:
st.session_state.api_key = ""
if "tokenChar" not in st.session_state:
st.session_state.tokenChar = ""
if "charName" not in st.session_state:
st.session_state.charName = ""
if "character_ID" not in st.session_state:
st.session_state.character_ID = ""
st.sidebar.text("Server ports:")
serverPorts = st.sidebar.container(border=True)
serverPorts.markdown(st.session_state['server_ports'])
st.sidebar.text("Client ports")
clientPorts = st.sidebar.container(border=True)
clientPorts.markdown(st.session_state['client_ports'])
st.sidebar.text("Character.ai ID")
user_id = st.sidebar.container(border=True)
user_id.markdown(st.session_state.user_ID)
st.title("Servers Page")
c1, c2 = st.columns(2)
with c1:
websocketPort = st.number_input("Websocket server port", min_value=1000, max_value=9999, value=1000)
startServer = st.button("Start server")
stoptServer = st.button("Stop server")
st.text("Server ports")
serverPorts1 = st.container(border=True)
serverPorts1.markdown(st.session_state['server_ports'])
with c2:
clientPort = st.number_input("Websocket client port", min_value=1000, max_value=9999, value=1000)
runClient = st.button("Start client")
stoptClient = st.button("Stop client")
st.text("Client ports")
clientPorts1 = st.container(border=True)
clientPorts1.markdown(st.session_state['client_ports'])
selectServ = st.selectbox("Select source", ("Fireworks", "GPT4Free", "character.ai", "ChainDesk", "Flowise", "DocsBot"))
if selectServ == "Fireworks":
fireworksAPI = st.text_input("Fireworks API")
userInput = st.text_input("Ask agent 1")
if startServer:
fireworks.client.api_key = fireworksAPI
st.session_state.api_key = fireworks.client.api_key
server_ports.append(websocketPort)
st.session_state['server_ports'] = server_ports
serverPorts.markdown(st.session_state['server_ports'])
serverPorts1.markdown(st.session_state['server_ports'])
try:
server = WebSocketServer("localhost", websocketPort)
print(f"Starting WebSocket server on port {websocketPort}...")
await server.start_server()
await asyncio.Future()
except Exception as e:
print(f"Error: {e}")
if runClient:
fireworks.client.api_key = fireworksAPI
st.session_state.api_key = fireworks.client.api_key
client_ports.append(clientPort)
st.session_state['client_ports'] = client_ports
clientPorts.markdown(st.session_state['client_ports'])
clientPorts1.markdown(st.session_state['client_ports'])
try:
uri = f'ws://localhost:{clientPort}'
client = WebSocketClient(uri)
print(f"Connecting client on port {clientPort}...")
await client.startClient()
st.session_state.client = client
await asyncio.Future()
except Exception as e:
print(f"Error: {e}")
if userInput:
print(f"User B: {userInput}")
fireworks.client.api_key = fireworksAPI
st.session_state.api_key = fireworks.client.api_key
user_input = st.chat_message("human")
user_input.markdown(userInput)
response1 = await handleUser(userInput)
print(response1)
outputMsg = st.chat_message("ai")
outputMsg.markdown(response1)
if selectServ == "GPT4Free":
userInput1 = st.text_input("Ask agent_2")
if startServer:
server_ports.append(websocketPort)
st.session_state['server_ports'] = server_ports
serverPorts.markdown(st.session_state['server_ports'])
serverPorts1.markdown(st.session_state['server_ports'])
try:
server1 = WebSocketServer1("localhost", websocketPort)
print(f"Starting WebSocket server on port {websocketPort}...")
await server1.start_server()
st.session_state.server = server1
await asyncio.Future()
except Exception as e:
print(f"Error: {e}")
if runClient:
client_ports.append(clientPort)
st.session_state['client_ports'] = client_ports
clientPorts.markdown(st.session_state['client_ports'])
clientPorts1.markdown(st.session_state['client_ports'])
try:
uri = f'ws://localhost:{clientPort}'
client1 = WebSocketClient1(uri)
print(f"Connecting client on port {clientPort}...")
await client1.startClient()
st.session_state.client = client1
await asyncio.Future()
except Exception as e:
print(f"Error: {e}")
if userInput1:
user_input1 = st.chat_message("human")
user_input1.markdown(userInput1)
response = await handleUser2(userInput1)
outputMsg1 = st.chat_message("ai")
outputMsg1.markdown(response)
if selectServ == "character.ai":
z1, z2 = st.columns(2)
with z1:
token = st.text_input("User token")
with z2:
characterID = st.text_input("Character ID")
userID = st.container(border=True)
userID.markdown(st.session_state.user_ID)
userInput2 = st.text_input("Ask agent 3")
if startServer:
client = Client()
server_ports.append(websocketPort)
st.session_state['server_ports'] = server_ports
serverPorts.markdown(st.session_state['server_ports'])
serverPorts1.markdown(st.session_state['server_ports'])
st.session_state.tokenChar = token
st.session_state.character_ID = characterID
await client.authenticate_with_token(token)
username = (await client.fetch_user())['user']['username']
st.session_state.user_ID = username
user_id.markdown(st.session_state.user_ID)
userID.markdown(st.session_state.user_ID)
try:
server2 = WebSocketServer2("localhost", websocketPort)
print(f"Starting WebSocket server on port {websocketPort}...")
await server2.start_server()
st.session_state.server = server2
await asyncio.Future()
except Exception as e:
print(f"Error: {e}")
if runClient:
client = Client()
client_ports.append(clientPort)
st.session_state['client_ports'] = client_ports
clientPorts.markdown(st.session_state['client_ports'])
clientPorts1.markdown(st.session_state['client_ports'])
st.session_state.tokenChar = token
st.session_state.character_ID = characterID
await client.authenticate_with_token(token)
username = (await client.fetch_user())['user']['username']
st.session_state.user_ID = username
user_id.markdown(st.session_state.user_ID)
userID.markdown(st.session_state.user_ID)
try:
uri = f'ws://localhost:{clientPort}'
client2 = WebSocketClient2(uri)
print(f"Connecting client on port {clientPort}...")
await client2.startClient()
st.session_state.client = client2
await asyncio.Future()
except Exception as e:
print(f"Error: {e}")
if userInput2:
client = Client()
await client.authenticate_with_token(token)
user_input2 = st.chat_message("human")
user_input2.markdown(userInput2)
st.session_state.tokenChar = token
st.session_state.character_ID = characterID
username = (await client.fetch_user())['user']['username']
st.session_state.user_ID = username
user_id.markdown(st.session_state.user_ID)
userID.markdown(st.session_state.user_ID)
try:
answer = await askCharacter(token, characterID, userInput2)
outputMsg1 = st.chat_message("ai")
outputMsg1.markdown(answer)
except Exception as e:
print(f"Error: {e}")
if selectServ == "ChainDesk":
url = f"http://localhost:8000/comp.html"
st.components.v1.iframe(url, height=950, scrolling=True)
if selectServ == "Flowise":
url = f"http://localhost:8000/flowise.html"
st.components.v1.iframe(url, height=950, scrolling=True)
if selectServ == "DocsBot":
url = f"http://localhost:8000/Docsbotport.html"
st.components.v1.iframe(url, height=950, scrolling=True)
asyncio.run(main()) |