renamed to open assistant

This commit is contained in:
Yannic Kilcher
2022-12-17 23:56:05 +01:00
parent a6c957ccfd
commit 13551ae3e4
32 changed files with 22 additions and 757 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
# open-chat-gpt
# open-assistant
This is the github repo for the open-chat-gpt project.
This is the github repo for the open-assistant project.
We are currently building a discord bot in order to make everyone contribute with great prompts and answers.
Join us!
https://discord.gg/ZUfPw6jP
+2 -2
View File
@@ -33,7 +33,7 @@ guild_ids = [TEST_GUILD, TEST_GUILD_LAION]
# Initiate the client and command tree to create slash commands.
class OpenChatGPTClient(discord.Client):
class OpenAssistantClient(discord.Client):
def __init__(self, *, intents: discord.Intents):
super().__init__(intents=intents)
self.tree = app_commands.CommandTree(self)
@@ -59,7 +59,7 @@ class OpenChatGPTClient(discord.Client):
# List the set of intents needed for commands to operate properly.
intents = discord.Intents.default()
intents.message_content = True
client = OpenChatGPTClient(intents=intents)
client = OpenAssistantClient(intents=intents)
class LikeButton(discord.ui.Button):
+2 -2
View File
@@ -12,11 +12,11 @@ if __name__ == "__main__":
REQUIREMENTS = _read_reqs("requirements.txt")
setup(
name="open-chat-gpt",
name="open-assistant",
packages=find_packages(),
version="0.0.1",
license="Apache 2.0",
description="A Discord Bot for collecting and ranking prompts to train an Open ChatGPT",
description="A Discord Bot for collecting and ranking prompts to train an Open Assistant",
keywords=["machine learning", "natural language processing", "discord"],
install_requires=REQUIREMENTS,
classifiers=[