mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-09-12 12:03:06 +08:00
renamed to open assistant
This commit is contained in:
+2
-2
@@ -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
@@ -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
@@ -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=[
|
||||
|
||||
Reference in New Issue
Block a user