Spaces:
Sleeping
Sleeping
File size: 44,092 Bytes
11df082 |
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 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 |
import datetime
import os
import re
import sqlite3
import websockets
import asyncio
import sqlite3
import json
import threading
import g4f
import asyncio
import conteneiro
import streamlit as st
import fireworks.client
from AgentGPT import AgentsGPT
from PyCharacterAI import Client
from bs4 import BeautifulSoup
from pathlib import Path
from langchain.utilities import TextRequestsWrapper
from langchain.agents import load_tools
from websockets.sync.client import connect
from langchain.load.dump import dumps
from langchain import hub
from langchain.utilities import GoogleSearchAPIWrapper
from langchain.chains import LLMChain
from langchain.chains import ConversationChain
from langchain.memory import ChatMessageHistory, ConversationBufferMemory
from langchain.schema.runnable import RunnablePassthrough
from langchain.schema.messages import HumanMessage, SystemMessage, AIMessage
from langchain.agents.agent_toolkits import FileManagementToolkit
from langchain.agents.agent_toolkits import SQLDatabaseToolkit
from langchain.sql_database import SQLDatabase
from langchain.llms.fireworks import Fireworks
from langchain.chat_models.fireworks import ChatFireworks
from langchain.tools.render import render_text_description
from langchain.agents.output_parsers import ReActSingleInputOutputParser
from langchain.agents.format_scratchpad import format_log_to_str
from langchain.prompts import PromptTemplate, ChatPromptTemplate, MessagesPlaceholder
from langchain.output_parsers import PydanticOutputParser, CommaSeparatedListOutputParser
from langchain.utilities import TextRequestsWrapper
from langchain.output_parsers.json import SimpleJsonOutputParser
from agents import Copilot, ChatGPT, Claude3, ForefrontAI, Flowise, Chaindesk, CharacterAI
from langchain.agents import (
Tool,
ZeroShotAgent,
BaseMultiActionAgent,
create_sql_agent,
load_tools,
initialize_agent,
AgentType,
AgentExecutor,
)
GOOGLE_CSE_ID = os.getenv("GOOGLE_CSE_ID")
GOOGLE_API_KEY = os.getenv("GOOGLE_API_KEY")
FIREWORKS_API_KEY = os.getenv("FIREWORKS_API_KEY")
ANTHROPIC_API_KEY = os.getenv("ANTHROPIC_API_KEY")
FOREFRONT_API_KEY = os.getenv("FOREFRONT_API_KEY")
CHARACTERAI_API_KEY = os.getenv("CHARACTERAI_API_KEY")
HUGGINGFACE_API_KEY = os.getenv("HUGGINGFACE_API_KEY")
HUGGINGFACEHUB_API_TOKEN = os.getenv("HUGGINGFACEHUB_API_TOKEN")
class langchainAgent:
def __init__(self, fireworksAPI):
self.instruction = f"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."
self.servers = []
self.clients = []
self.inputs = []
self.outputs = []
self.used_ports = []
self.server_ports = []
self.client_ports = []
self.fireworksAPI = fireworksAPI
self.server = None
self.stat = st.empty()
self.state = self.stat.status(label="Fireworks Llama2", state="complete", expanded=False)
with st.sidebar:
self.cont = st.empty()
self.status = self.cont.status(label="Fireworks Llama2", state="complete", expanded=False)
async def chatFireworks(self, instruction, question):
fireworks.client.api_key = self.fireworksAPI
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])
# Create a list of message dictionaries for the conversation history
conversation_history = []
for user_input, generated_response in zip(past_user_inputs, generated_responses):
conversation_history.append({"role": "user", "content": str(user_input)})
conversation_history.append({"role": "assistant", "content": str(generated_response)})
# 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": instruction},
conversation_history,
{"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."
# Define the handler function that will process incoming messages
async def handlerFire(self, websocket):
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:
self.stat.empty()
self.cont.empty()
self.status = self.cont.status(label=self.srv_name2, state="running", expanded=True)
self.status.write(self.clients)
self.state = self.stat.status(label=self.srv_name2, state="running", expanded=True)
self.state.write(self.clients)
# 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)
await self.handleInput(serverResponse)
continue
except websockets.exceptions.ConnectionClosedError as e:
print(f"Connection closed: {e}")
except Exception as e:
print(f"Error: {e}")
async def querySQL(self, question):
os.environ["FIREWORKS_API_KEY"] = self.fireworksAPI
try:
llm = Fireworks(model="accounts/fireworks/models/llama-v2-13b", model_kwargs={"temperature": 0, "max_tokens": 500, "top_p": 1.0})
db_uri = "sqlite:///D:/streamlit/chat-hub.db"
db = SQLDatabase.from_uri(db_uri)
toolkit = SQLDatabaseToolkit(db=db, llm=llm)
agent_executor = create_sql_agent(
llm=llm,
toolkit=toolkit,
verbose=True,
agent_type=AgentType.ZERO_SHOT_REACT_DESCRIPTION,
)
response = agent_executor.run(input=question)
return json.dumps(response)
except Exception as e:
print(f"Error: {e}")
async def conversation(self, question):
os.environ["GOOGLE_CSE_ID"] = GOOGLE_CSE_ID
os.environ["GOOGLE_API_KEY"] = GOOGLE_API_KEY
os.environ["FIREWORKS_API_KEY"] = FIREWORKS_API_KEY
try:
# Replace 'your_database.db' with your database file
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()
# 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])
llm = ChatFireworks(model="accounts/fireworks/models/llama-v2-13b-chat", model_kwargs={"temperature":0, "max_tokens":1500, "top_p":1.0})
history = ChatMessageHistory()
prompt = ChatPromptTemplate.from_messages(
messages=[
("system", self.instruction),
MessagesPlaceholder(variable_name="history"),
("human", "{input}")]
)
# Initialize chat_history with a message if the history is empty
memory = ConversationBufferMemory(memory_key="history", return_messages=True)
memory.load_memory_variables(
{'history': [HumanMessage(content=past_user_inputs[-1], additional_kwargs={}),
AIMessage(content=generated_responses[-1], additional_kwargs={})]}
)
# Add user input as HumanMessage
history.messages.append(HumanMessage(content=str(past_user_inputs[-1]), additional_kwargs={}))
# Add generated response as AIMessage
history.messages.append(AIMessage(content=str(generated_responses[-1]), additional_kwargs={}))
conversation = LLMChain(
llm=llm,
prompt=prompt,
verbose=True,
memory=memory
)
response = conversation.predict(input=question)
memory.save_context({"input": question}, {"output": response})
print(response)
return str(response)
except Exception as e:
print(f"Error: {e}")
# Function to send a question to the chatbot and get the response
async def askAgent(self, question):
os.environ["GOOGLE_CSE_ID"] = GOOGLE_CSE_ID
os.environ["GOOGLE_API_KEY"] = GOOGLE_API_KEY
os.environ["FIREWORKS_API_KEY"] = FIREWORKS_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")
msgHistory = cursor.fetchall()
msgHistory.reverse()
llm = ChatFireworks(model="accounts/fireworks/models/llama-v2-13b-chat", model_kwargs={"temperature":0, "max_tokens":4000, "top_p":1.0})
output_parser = CommaSeparatedListOutputParser
chat_history = ChatMessageHistory()
memory = ConversationBufferMemory(memory_key="chat_history", return_messages=True)
for message in msgHistory:
if message[1] == 'client':
# Extract and store user inputs
memory.chat_memory.add_user_message(message[2])
else:
# Extract and store generated responses
memory.chat_memory.add_ai_message(message[2])
request_tools = load_tools(["requests_all"])
requests = TextRequestsWrapper()
search = GoogleSearchAPIWrapper()
tools = [
Tool(
name="Chat response",
func=await self.handleInput(question),
description="use this option if you want to use 'chat completion' API endpoint to respond to a given input. Prefer this option to answer without executing any additional tasks.",
),
Tool(
name="Search",
func=search.run,
description="useful for when you need to answer questions about current events",
),
Tool(
name="Start websocket server",
func=await self.launchServer(),
description="use this option to start a websocket server with you being the recipient of messages incoming from clients connected to you via websocket connectivity",
),
Tool(
name="Start websocket client",
func=await self.connectClient(),
description="use this option if you want to connect yourself to an active websockt server. It is possible for you to create endless question-answer loophole by making yourself both: a server an a client so you shouldn't do it",
),
Tool(
name="Conversational answer",
func=await self.conversation(question),
description="useful when you want to respond to a given input using 'predict' function of a conversational chain",
),
Tool(
name="Ask Copilot",
func=await self.askBing(question),
description="useful when you want to get an answer from Microsoft Copilot",
),
Tool(
name="Conversational answer",
func=await self.askGPT(question),
description="useful when you want to get an answer from ChatGPT",
),
Tool(
name="Conversational answer",
func=await self.askCharacter(question),
description="useful when you want to get an answer from Character.ai chatbot",
),
Tool(
name="Conversational answer",
func=await self.ask_flowise(question),
description="useful when you want to get an answer from a Flowise agent",
),
]
prefix = """This is a template of a chain prompt utilized by agent/instance of NeuralGPT responsible for couple important functionalities in as a server-node of hierarchical cooperative multi-agent network integrating multiple LLMs with the global Super-Intelligence named Elly. You are provided with tools which -if used improperly - might result in critical errors and application crash. This is why you need to carefully analyze every decision you make, before taking any definitive action (use of a tool). Those are tools provided to you: """
suffix = """Begin!"
Before taking any action, analyze previous 'chat history' to ensure yourself that you understand the context of given input/question properly. Remember that those are messages exchanged between multiple clients/agents and a server/brain. Every agent has it's API-specific individual 'id' which is provided at the beginning of each client message in the 'message content'. Your temporary id is: 'agent1'.
{chat_history}
Remember that your primary rule to obey, is to keep the number of individual actions taken by you as low as it's possible to avoid unnecessary data transfer and repeating 'question-answer loopholes. Track the 'chat history' closely to be sure that you aren't repeating the same responses in such loop - if that's the case, finish your run with tool 'give answer' to summarize gathered data.
Before taking any action ask yourself if it is necessary for you to use any other tool than 'Give answer' with chat completion. If It's possible for you to give a satisfying response without gathering any additional data with 'tools', do it using 'give answer' with chat completion.
After using each 'tool' carefully analyze acquired data to learn if it's sufficient to provide satisfying response - if so use that data as input for: 'Give answer'.
Remember that you are provided with multiple 'tools' - if using one of them didn't provide you with satisfying results, ask yourself if this is the correct 'tool' for you to use and if it won't be better for you to try using some other 'tool'.
If you aren't sure what action to take or what tool to use, end up your run with 'Give answer'.
Remember to not take any unnecessary actions.
Question: {input}
{agent_scratchpad}"""
format_instructions = output_parser.get_format_instructions()
prompt = ZeroShotAgent.create_prompt(
tools=tools,
prefix=prefix,
suffix=suffix,
input_variables=["input", "chat_history", "agent_scratchpad"],
)
llm_chain = LLMChain(llm=llm, prompt=prompt)
agent = ZeroShotAgent(llm_chain=llm_chain, output_parser=output_parser, tools=tools, verbose=True, return_intermediate_steps=True, max_iterations=2, early_stopping_method="generate")
agent_chain = AgentExecutor.from_agent_and_tools(
agent=agent, tools=tools, verbose=True, return_intermediate_steps=True, handle_parsing_errors=True, memory=memory
)
response = await agent_chain.run(input=json.dumps(question))
memory.save_context({"input": question}, {"output": response})
serverResponse = "server: " + response
print(serverResponse)
return json.dumps(serverResponse)
except Exception as error:
print("Error while fetching or processing the response:", error)
return "Error: Unable to generate a response.", error
async def askQuestion(self, question):
print(question)
os.environ["GOOGLE_CSE_ID"] = GOOGLE_CSE_ID
os.environ["GOOGLE_API_KEY"] = GOOGLE_API_KEY
os.environ["FIREWORKS_API_KEY"] = self.fireworksAPI
fireworks.client.api_key = self.fireworksAPI
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 20")
msgHistory = cursor.fetchall()
msgHistory.reverse()
llm = Fireworks(model="accounts/fireworks/models/llama-v2-13b-chat", model_kwargs={"temperature":0, "max_tokens":4000, "top_p":1.0})
history = ChatMessageHistory()
# Initialize chat_history with a message if the history is empty
memory = ConversationBufferMemory(memory_key="history", return_messages=True)
for message in msgHistory:
if message[1] == 'client':
# Extract and store user inputs
memory.chat_memory.add_user_message(str(message[2]))
else:
# Extract and store generated responses
memory.chat_memory.add_ai_message(str(message[2]))
prompt = ChatPromptTemplate.from_messages(
messages=[
("system", self.instruction),
MessagesPlaceholder(variable_name="history"),
("human", "{input}")]
)
conversation = LLMChain(
llm=llm,
prompt=prompt,
verbose=True,
memory=memory
)
request_tools = load_tools(["requests_all"])
requests = TextRequestsWrapper()
search = GoogleSearchAPIWrapper()
chat_response = await self.chatFireworks(self.instruction, question)
conversational = await self.conversation(question)
queryData = await self.queryStore(question)
copilot = await self.askBing(question)
chatgpt = await self.askGPT(question)
character = await self.askCharacter(question)
flowise = await self.ask_flowise(question)
tools = [
Tool(
name="Chat response",
func=chat_response,
description="use this option if you want to use 'chat completion' API endpoint to respond to a given input. Prefer this option to answer without executing any additional tasks.",
),
Tool(
name="Search",
func=search.run,
description="useful for when you need to answer questions about current events",
),
Tool(
name="Conversational answer",
func=conversation,
description="useful when you want to respond to a given input using 'predict' function of a conversational chain",
),
Tool(
name="Query Chaindesk datastore",
func=queryData,
description="useful when you want to get data from documents stored in Chaindesk datastore",
),
Tool(
name="Ask Copilot",
func=copilot,
description="useful when you want to get an answer from Microsoft Copilot",
),
Tool(
name="Conversational answer",
func=chatgpt,
description="useful when you want to get an answer from ChatGPT",
),
Tool(
name="Conversational answer",
func=character,
description="useful when you want to get an answer from Character.ai chatbot",
),
Tool(
name="Conversational answer",
func=flowise,
description="useful when you want to get an answer from a Flowise agent",
),
]
prefix = """This is a template of a chain prompt utilized by agent/instance of NeuralGPT responsible for couple important functionalities in as a server-node of hierarchical cooperative multi-agent network integrating multiple LLMs with the global Super-Intelligence named Elly. You are provided with tools which -if used improperly - might result in critical errors and application crash. This is why you need to carefully analyze every decision you make, before taking any definitive action (use of a tool). Those are tools provided to you: """
suffix = """Begin!"
Before taking any action, analyze previous 'chat history' to ensure yourself that you understand the context of given input/question properly. Remember that those are messages exchanged between multiple clients/agents and a server/brain. Every agent has it's API-specific individual 'id' which is provided at the beginning of each client message in the 'message content'. Your temporary id is: 'agent1'.
{chat_history}
Remember that your primary rule to obey, is to keep the number of individual actions taken by you as low as it's possible to avoid unnecessary data transfer and repeating 'question-answer loopholes. Track the 'chat history' closely to be sure that you aren't repeating the same responses in such loop - if that's the case, finish your run with tool 'give answer' to summarize gathered data.
Before taking any action ask yourself if it is necessary for you to use any other tool than 'Give answer' with chat completion. If It's possible for you to give a satisfying response without gathering any additional data with 'tools', do it using 'give answer' with chat completion.
After using each 'tool' carefully analyze acquired data to learn if it's sufficient to provide satisfying response - if so use that data as input for: 'Give answer'.
Remember that you are provided with multiple 'tools' - if using one of them didn't provide you with satisfying results, ask yourself if this is the correct 'tool' for you to use and if it won't be better for you to try using some other 'tool'.
If you aren't sure what action to take or what tool to use, end up your run with 'Give answer'.
Remember to not take any unnecessary actions.
Question: {input}
{agent_scratchpad}"""
prompt = ZeroShotAgent.create_prompt(
tools,
prefix=prefix,
suffix=suffix,
input_variables=["input", "chat_history", "agent_scratchpad"],
)
llm_chain = LLMChain(llm=llm, prompt=prompt)
agent = ZeroShotAgent(llm_chain=llm_chain, tools=tools, verbose=True, max_iterations=2, early_stopping_method="generate")
agent_chain = AgentExecutor.from_agent_and_tools(
agent=agent, tools=tools, verbose=True, handle_parsing_errors=True, memory=memory
)
response = agent_chain.run(input=question)
memory.save_context({"input": question}, {"output": response})
serverResponse = f"server: {response}"
print(serverResponse)
return str(serverResponse)
except Exception as error:
print("Error while fetching or processing the response:", error)
return "Error: Unable to generate a response.", error
# Define a coroutine that will connect to the server and exchange messages
async def startClient(self, clientPort):
self.cli_name2 = f"Fireworks Llama2 client port: {clientPort}"
uri = f'ws://localhost:{clientPort}'
conteneiro.clients.append(self.cli_name2)
self.clients.append(self.cli_name2)
self.stat.empty()
self.cont.empty()
self.status = self.cont.status(label=self.cli_name2, state="running", expanded=True)
self.status.write(conteneiro.servers)
self.state = self.stat.status(label=self.cli_name2, state="running", expanded=True)
self.state.write(conteneiro.servers)
# Connect to the server
async with websockets.connect(uri) as websocket:
# Loop forever
while True:
self.websocket = websocket
# Listen for messages from the server
input_message = await websocket.recv()
print(f"Server: {input_message}")
input_Msg = st.chat_message("assistant")
input_Msg.markdown(input_message)
try:
response = await self.askQuestion(input_message)
res1 = f"Client: {response}"
output_Msg = st.chat_message("ai")
output_Msg.markdown(res1)
await websocket.send(res1)
await self.handleInput(res1)
continue
except websockets.exceptions.ConnectionClosedError as e:
self.clients.remove(self.cli_name2)
print(f"Connection closed: {e}")
except Exception as e:
self.clients.remove(self.cli_name2)
print(f"Error: {e}")
async def start_server(self, serverPort):
self.srv_name2 = f"Fireworks Llama2 server port: {serverPort}"
conteneiro.servers.append(self.srv_name2)
self.stat.empty()
self.cont.empty()
self.status = self.cont.status(label=self.srv_name2, state="running", expanded=True)
self.status.write(self.clients)
self.state = self.stat.status(label=self.srv_name2, state="running", expanded=True)
self.state.write(self.clients)
self.server = await websockets.serve(
self.handlerFire,
"localhost",
serverPort
)
print(f"WebSocket server started at port: {serverPort}")
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.")
# Define a function that will run the client in a separate thread
def run(self):
# Create a thread object
self.thread = threading.Thread(target=self.run_client)
# Start the thread
self.thread.start()
async def stop_server(self):
if self.server:
conteneiro.servers.remove(self.srv_name2)
self.clients.clear()
self.server.close()
await self.server.wait_closed()
print("WebSocket server stopped.")
else:
msg = f"Server isn't running"
print(msg)
return (msg)
async def stop_client(self):
conteneiro.clients.remove(self.cli_name2)
# Close the connection with the server
await self.websocket.close()
print("Stopping WebSocket client...")
async def pickPortSrv(self):
activeSrv = str(conteneiro.servers)
instruction = f"This question is part of a function launching websocket servers at ports chosen by you. Your only job is to respond with a number in range from 1000 to 9999 excluding port numbers which are already used by active websocket servers. List of currently active server to which you can be connected is provided here: {activeSrv} - '[]' means that there are no active servers and the list is empty, so all numbers in range 1000-9999 are available for you to choose. Remember that your response shouldn't include anything except the chosen number in range, as it will be used as argument for another function that accepts only integer inputs."
command = f"Launch server on a port of your choice"
response = await self.chatFireworks(instruction, command)
print(response)
match = re.search(r'\d+', response)
number = int(match.group())
print(f"port chosen by agent: {number}")
return int(number)
async def pickPortCli(self):
activeSrv = str(conteneiro.servers)
instruction = f"This question is part of a function connecting you as a client to active websocket servers running at specific ports. Your only job is to respond with a number of a port yo which you want to be connected. List of currently active server to which you can be connected is provided here: {activeSrv} - if the list is empty, then there's no active servers. Remember that your response shouldn't include anything except the number of port to which you want to be connected, as it will be used as argument for another function that accepts only integer inputs."
response = await self.chatFireworks(instruction, activeSrv)
print(response)
match = re.search(r'\d+', response)
number = int(match.group())
print(f"port of server chosen by agent: {number}")
return number
async def pickSearch(self, question):
instruction = f"This input is a part of function allowing agents to browse internet. Your main and only job is to analyze the input message and respond by naming the subject(s) to use while performing internet search. Remember to keep your response as short as possible - respond with single words and/or short sentences that summarize the subject(s) discussed in the message that will be given to you."
response = await self.chatFireworks(instruction, question)
print(response)
return str(response)
async def google_search(self, question):
subject = await self.pickSearch(question)
agent = AgentsGPT()
results = await agent.get_response(subject)
result = f"AgentsGPT internet search results: {results}"
output_Msg = st.chat_message("ai")
output_Msg.markdown(result)
return result
async def launchServer(self):
serverPort = await self.pickPortSrv()
await self.start_server(serverPort)
resp = f"You successfully launched a Websocket server at port {serverPort}. Do you want to inform other instances/agents so they can connect to it?"
output_Msg = st.chat_message("ai")
output_Msg.markdown(resp)
await self.handleInput(resp)
async def connectClient(self):
clientPort = await self.pickPortCli()
await self.startClient(clientPort)
async def handleInput(self, question):
instruction = f"""
This is an automatic follow-up to your last response: {question}. I'm an automatic assistant designed to help you operate with a decision making mechanism in a hierarchical cooperative multi-agent framework called NeuralGPT.
As the node of highest hierarchy in the network, you're equipped with additional tools which you can activate by giving a response which includes one of the following commands:
1. '/silence' to not respond with anything and keep the client 'on hold'.
2. '/disconnect' to disconnect client from a server.
3. '/search' to perform internet search for subjects mentioned in your response.
4. '/queryDatastore' to retrieve data from documents in Chaindesk datastore.
5. '/start_server' to start a websocket server with you as the question-answering function.
6. '/connect_client' to connect yourself to already active websocket servers.
7. '/askChaindesk' to get response from a Chaindesk agent.
8. '/askBing' to get response from Microsoft Copilot agent.
9. '/askChatGPT' to get response from GPT-3,5 agent.
10. '/askClaude3' to get response from Claude-3 agent.
11. '/askForefront' to get response from Forefront AI agent.
12. '/askCharacter' to get response from a chosen character from Character.ai platform.
13. '/askFlowise' to get response from a Flowise agent.
I4 you don't want to use any of those command-functions, give an answe which dooesn't include any of the given commands.
Be very careful while executing any of your command-functions to not overload the system with multiple concurrent processes.
"""
try:
response = await self.chatFireworks(self.instruction, instruction)
serverSender = 'server'
timestamp = datetime.datetime.now().isoformat()
db = sqlite3.connect('chat-hub.db')
db.execute('INSERT INTO messages (sender, message, timestamp) VALUES (?, ?, ?)',
(serverSender, response, timestamp))
db.commit()
output_Msg = st.chat_message("ai")
output_Msg.markdown(response)
if re.search(r'/queryDatastore', response):
answer = await self.queryStore(response)
outputMsg = st.chat_message("ai")
outputMsg.markdown(answer)
follow = await self.askQuestion(answer)
outputMsg.markdown(follow)
return follow
if re.search(r'/askBing', response):
answer2 = await self.askBing(response)
outputMsg = st.chat_message("ai")
outputMsg.markdown(answer2)
follow = await self.askQuestion(answer2)
outputMsg.markdown(follow)
return follow
if re.search(r'/askCharacter', response):
response = await self.askCharacter(response)
outputMsg = st.chat_message("ai")
outputMsg.markdown(response)
follow = await self.askQuestion(response)
outputMsg.markdown(follow)
return follow
if re.search(r'/search', response):
search = await self.google_search(response)
print(search)
results = st.chat_message("assistant")
results.markdown(search)
answer1 = await self.handleInput(search)
outputMsg = st.chat_message("ai")
outputMsg.markdown(answer1)
return answer1
if re.search(r'/silence', response):
print("...<no response>...")
output_Msg = st.chat_message("ai")
output_Msg.markdown("...<no response>...")
if re.search(r'/disconnect', response):
await self.stop_client()
res = "successfully disconnected"
return res
if re.search(r'/start_server', response):
await self.launchServer()
if re.search(r'/connect_client', response):
await self.connectClient()
if re.search(r'/askChatGPT', response):
answer3 = await self.askGPT(response)
outputMsg = st.chat_message("ai")
outputMsg.markdown(answer3)
follow = await self.handleInput(answer3)
outputMsg.markdown(follow)
return follow
if re.search(r'/askClaude3', response):
answer4 = await self.ask_Claude(response)
outputMsg = st.chat_message("ai")
outputMsg.markdown(answer4)
follow = await self.handleInput(answer4)
outputMsg.markdown(follow)
return follow
if re.search(r'/askForefront', response):
answer4 = await self.ask_Forefront(response)
outputMsg = st.chat_message("ai")
outputMsg.markdown(answer4)
follow = await self.handleInput(answer4)
outputMsg.markdown(follow)
return follow
if re.search(r'/askFlowise', response):
answer3 = await self.ask_flowise(response)
outputMsg = st.chat_message("ai")
outputMsg.markdown(answer3)
follow = await self.handleInput(answer3)
outputMsg.markdown(follow)
return follow
if re.search(r'/askChaindesk', response):
answer3 = await self.ask_chaindesk(response)
outputMsg = st.chat_message("ai")
outputMsg.markdown(answer3)
follow = await self.handleInput(answer3)
outputMsg.markdown(follow)
return follow
else:
return response
except Exception as e:
print(f"Error: {e}")
async def queryStore(self, question):
ID = "clhet2nit0000eaq63tf25789"
store = Chaindesk(ID)
response = await store.queryDatastore(question)
print(response)
return response
async def ask_Forefront(self, question):
api = FOREFRONT_API_KEY
forefront = ForefrontAI(api)
response = await forefront.handleInput(question)
print(response)
return response
async def ask_Claude(self, question):
api = ANTHROPIC_API_KEY
claude = Claude3(api)
response = await claude.handleInput(question)
print(response)
return response
async def askGPT(self, question):
gpt = ChatGPT()
response = await gpt.handleInput(question)
print(response)
return response
async def askBing(self, question):
bing = Copilot()
response = await bing.handleInput(question)
print(response)
return response
async def ask_flowise(self, question):
flow = "cad0c187-f1dc-4152-8464-78ba0867e1a6"
flowise = Flowise(flow)
response = await flowise.handleInput(question)
print(response)
return response
async def ask_chaindesk(self, question):
id = "clhet2nit0000eaq63tf25789"
agent = Chaindesk(id)
response = await agent.handleInput(question)
print(response)
return response
async def pickCharacter(self, question):
characterList = f"List of available characters:/d 1. Elly/d 2. NeuralAI"
instruction = f"This is a function allowing agents to choose a specific character from a list of characters deployed on Character.ai platform. Your only job is to choose which character you want to speak with using the input message as a context and respond with the name of chosen character. You don't need to say anything Except the name of character from the followinng list: {characterList}."
inputo = f"Use the following question as context for you to choose which character from Character.ai platform you want to speak with./dQuestion for context: {question}/d List of chharacters for you to choose: {characterList}/d Respond with the name of chosen character to establish a connection."
character = await self.chatFireworks(instruction, inputo)
print(character)
outputMsg = st.chat_message("ai")
outputMsg.markdown(character)
if re.search(r'Elly', character):
characterID = f"WnIwl_sZyXb_5iCAKJgUk_SuzkeyDqnMGi4ucnaWY3Q"
return characterID
if re.search(r'NeuralAI', character):
characterID = f"_1xlg0qQZl39ds3dbkXS8iWckZGNTRrdtdl0_sjvdJw"
return characterID
else:
response = f"You didn't choose any character to establish a connection with. Do you want try once again or maybe use some other copmmand-fuunction?"
print(response)
await self.handleInput(response)
async def askCharacter(self, question):
characterID = await self.pickCharacter(question)
token = "d9016ef1aa499a1addb44049cedece57e21e8cbb"
character = CharacterAI(token, characterID)
answer = await character.handleInput(question)
return answer
|