Spaces:
Paused
Paused
File size: 12,715 Bytes
6c22325 85efe48 6c22325 85efe48 6c22325 80f9977 706ea24 86b14fc da57ba6 a9ead84 8076549 75e656e 5ab077a a584c74 a9ead84 da57ba6 86e9551 169d34c 967eb7c 169d34c 9a0cfb7 b1d2d00 72bece2 169d34c da57ba6 0ddd980 03b0f62 b740dff da57ba6 03b0f62 169d34c 967eb7c 169d34c 8ca9e2b da57ba6 85efe48 0a397b1 85efe48 80f9977 0a397b1 6c22325 72bece2 5abc30e 9893941 72bece2 ab0b90d f30b399 fed6af9 706ea24 6c22325 8ca9e2b 85efe48 6c22325 03b0f62 967eb7c 03b0f62 85efe48 24c8880 0cc05a6 85efe48 03b0f62 5fb599f 03b0f62 6c22325 e6f469c 6c22325 119ba54 85d7fd8 119ba54 b6a3952 119ba54 85d7fd8 119ba54 85efe48 5659fa4 119ba54 6c22325 85efe48 5659fa4 85efe48 1bd8e61 af646f4 1bd8e61 fd90e09 85efe48 6b2fa83 505cd66 f9013ff c0f134c eef37bc 6b2fa83 5659fa4 505cd66 5659fa4 505cd66 5659fa4 eef37bc 6b2fa83 5659fa4 df4d28d 505cd66 df4d28d 505cd66 df4d28d eef37bc 00e2b05 d1fef5f d3b64de d1fef5f f737663 d1fef5f f8ceb30 d1fef5f 23e687f d1fef5f a8dd034 d086a67 7aa5741 a8dd034 4bf7e75 8b0de47 4bf7e75 00e2b05 4bf7e75 f7ad380 4bf7e75 d1fef5f b1c6f90 e71c827 aacd191 b1c6f90 aacd191 bb92734 aacd191 6c22325 85efe48 |
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 |
import json
import os
import re
import asyncio
import random
import datetime
from threading import Thread
import discord
from discord.ext import tasks
from PIL import Image
import streamlit as st
from huggingface_hub import AsyncInferenceClient, login
import time
import os
from gradio_client import Client
async def C(x):
c = Client("https://ybelkada-llava-1-5-dlai.hf.space/--replicas/5ppw4/")
print(c.view_api(return_format="dict"))
result = c.predict(
"Make a detailed description of the image. This would be sufficient for an LLM to answer questions about it with just your answer.",
"ip.png",
api_name="/predict"
)
launch_time = datetime.datetime.utcnow()
ph = st.empty()
def syncMessages():
with ph.container():
st.link_button(label="Invite the Bot", url="https://discord.com/api/oauth2/authorize?client_id=1116821362695221349&permissions=1067299753024&scope=bot", type="primary")
st.markdown(f"`Status:` :green[**Running**]")
if os.listdir("data") == []:
return 0
dirs = st.tabs(os.listdir("data"))
i = -1
for dir in os.listdir("data"):
i += 1
with dirs[i]:
if os.listdir(f"data/{dir}") == []:
return 0
files = st.tabs(os.listdir("data/" + dir))
k = -1
for file in os.listdir("data/" + dir):
k += 1
with files[k]:
with open(f"data/{dir}/{file}", "r") as f:
o = f.read().split("<|end_of_turn|>")
for item in o:
if item == "":
continue
item = item.split(": ", 1)
st.markdown(f":blue[{item[0].split('GPT4 Correct ')[1]}]: {item[1]}")
lock_file_path = "test.txt"
if not os.path.exists(lock_file_path):
with open(lock_file_path, "w") as f:
f.write("running")
clone = False
st.markdown("Bot is running, reload the page to see activity.")
else:
print("Streamlit app is already running, only streaming activity.")
clone = True
while True:
syncMessages()
time.sleep(0.5)
exit()
try:
os.mkdir("data")
except:
pass
HF_TOKEN = os.environ["HF_TOKEN"]
login(HF_TOKEN)
sd_turbo = "stabilityai/sd-turbo"
sdxl_turbo = "stabilityai/sd-turbo"
sdxl = "stabilityai/stable-diffusion-xl-base-1.0"
proteus = "dataautogpt3/ProteusV0.2"
sd_2_1 = "stabilityai/stable-diffusion-2-1"
open_journey = "prompthero/openjourney-v4"
SD = AsyncInferenceClient(model=sd_2_1)
SDT = AsyncInferenceClient(model=sdxl_turbo)
PT = AsyncInferenceClient(model=proteus)
LLM = AsyncInferenceClient(model="openchat/openchat-3.5-0106")
RF = AsyncInferenceClient(model="stabilityai/stable-diffusion-xl-refiner-1.0")
def ec(x, fd="<|image|>", sd="<|image|>"):
matches = re.findall(re.escape(fd) + "(.*?)" + re.escape(sd), x)
matches = matches if matches else [""]
return matches
intents = discord.Intents.default()
intents.message_content = True
client = discord.Client(intents=intents)
@client.event
async def on_ready():
if clone:
print(f"Clone started.")
syncMessages()
else:
print(f"Logged in as {client.user}")
presence.start()
@client.event
async def on_guild_join(guild):
await guild.system_channel.send("Hi! I'm Lyre! Use the `--help` command for instructions on setup!")
@tasks.loop(seconds=60)
async def presence():
if not clone:
delta_uptime = datetime.datetime.utcnow() - launch_time
hours, remainder = divmod(int(delta_uptime.total_seconds()), 3600)
minutes, seconds = divmod(remainder, 60)
days, hours = divmod(hours, 24)
print(f"Online Time: {days:02d}d | {hours:02d}h | {minutes:02d}m | {seconds:02d}s")
await client.change_presence(
status=discord.Status.idle,
activity=discord.Activity(
type=discord.ActivityType.playing,
large_image="https://i.imgur.com/Kk2BvJg.jpg",
large_text="This is Game Icon",
name="Escaping the IRS.",
details="",
state=f"Running for {days:02d}d | {hours:02d}h | {minutes:02d}m",
),
)
@client.event
async def on_disconnect():
print("Disconnected, Clone status:", clone)
@client.event
async def on_message(message):
if message.content == "--help":
def check(reaction, user):
return reaction.message.id == msg.id and user == message.author
page = 0
titles = ["hoi", "hoi2"]
pages = ["hi", "hi2"]
embed = discord.Embed(title=titles[page], description=pages[page])
msg = await message.reply(embed=embed)
msg.add_reaction("◀️")
msg.add_reaction("▶️")
while True:
try:
reaction, _ = await bot.wait_for('reaction_add', timeout= 20.0, check=check)
if reaction.emoji == '◀️' and page > 0:
page -= 1
embed = discord.Embed(title=titles[page], description=pages[page]
await msg.edit(embed=embed)
if reaction.emoji == '▶️' and page < len(pages) -1:
page += 1
embed = discord.Embed(title=titles[page], description= pages[page]
await msg.edit(embed=embed)
except asyncio.TimeoutError:
await msg.delete()
return 0
for user in message.mentions:
if user.bot:
message.content = message.content.replace(f"<@{user.id}>",
f"<@{str(user)}[bot]>")
else:
message.content = message.content.replace(f"<@{user.id}>",
f"<@{str(user)}>")
try:
msgchannel = message.channel
try:
msgchannel_name = msgchannel.name
guild = message.guild
guild_name = guild.name
except:
guild_name = "Direct"
msgchannel_name = str(message.author)
s = f":green[{message.author}]: :violet[{message.content}] :blue[{msgchannel_name}] :orange[{guild_name}]"
if message.author == client.user:
return
sysp = f"""GPT4 Correct System:
Instructions for Assistant:
You are lyre, a discord bot. You were made by Araeyn.
Your username is lyre#9828.
You must use the markdown format for your responses.
Do not excessively use bullet points.
Use emojis at the start of your responses.
Use <|title|> at the start of your title for the response and <|title|> at the end of the title.
Your title is a conversation name that ChatGPT would make for the response and question.
If the user asks you to generate an image, use the start tag <|image|> and the end tag <|image|> around the prompt to generate it. Put this at the end of your response. Do not use a link for the image.
For example, if the user asks you to generate an image of a cat, you could say <|image|>A cute cat with long fur that is looking out a window with curious eyes, hd, realistic<|image|>
Always include a title.
Do not generate images unless the user speciifes that they want an image.
If a user has [bot] next to their username, they are a bot.
If there is ImageParsed stuff at the end of the message, that is the text relative to the image."""
try:
os.mkdir("data/" + guild_name)
except:
pass
caption = ""
if len(message.attachments) > 0:
await message.attachments[0].save('ip.png')
caption = f"(ImageParsed:[{await C('ip.png')}])"
if os.path.exists(f"data/{guild_name}/{msgchannel_name}"):
with open(f"data/{guild_name}/{msgchannel_name}", "a") as f:
n = "\n"
if message.author.bot:
f.write(
f"""GPT4 Correct {message.author}[bot]: {message.content.strip(n)}{caption}<|end_of_turn|>"""
)
else:
f.write(
f"""GPT4 Correct {message.author}: {message.content.strip(n)}{caption}<|end_of_turn|>"""
)
else:
with open(f"data/{guild_name}/{msgchannel_name}", "w") as f:
if message.author.bot:
f.write(
f"GPT4 Correct system: {sysp}<|end_of_turn|>GPT4 Correct {message.author}[bot]: {message.content}{caption}<|end_of_turn|>"
)
else:
f.write(
f"GPT4 Correct system: {sysp}<|end_of_turn|>GPT4 Correct {message.author}: {message.content}{caption}<|end_of_turn|>"
)
with open(f"data/{guild_name}/{msgchannel_name}", "r") as f:
context = f.read()
if ("Feeway" in guild_name) or guild_name == "Direct":
async with msgchannel.typing():
context += f"GPT4 Correct Assistant:"
load = random.choice(
[
"https://i.pinimg.com/originals/49/23/29/492329d446c422b0483677d0318ab4fa.gif"
]
)
output = await LLM.text_generation(context,
stop_sequences=["<|end_of_turn|>"],
max_new_tokens=4096)
title = ec(output, "<|title|>", "<|title|>")[0]
imgp = ec(output)[0]
with open(f"data/{guild_name}/{msgchannel_name}", "a") as f:
f.write(f"GPT4 Correct Assistant: {output}<|end_of_turn|>")
embed = discord.Embed(title=title,
description=output.replace(
f"<|title|>{title}<|title|>", "").replace(f"<|image|>{imgp}<|image|>", ""),
color=0x1E81B0)
if imgp != "":
embed.set_image(url=load)
embed.set_footer(
text=
"""Creating..."""
)
else:
embed.set_footer(
text=
"""Information or code generated by Lyre may not always be correct. Lyre was made by Araeyn."""
)
e = await message.reply(embed=embed)
if imgp != "":
np = """lowres, text, error, cropped, worst quality, low quality, jpeg artifacts, ugly, duplicate, morbid, mutilated, out of frame, extra fingers, mutated hands, poorly drawn hands, poorly drawn face, mutation, deformed, blurry, dehydrated, bad anatomy, bad proportions, extra limbs, cloned face, disfigured, gross proportions, malformed limbs, missing arms, missing legs, extra arms, extra legs, fused fingers, too many fingers, long neck, username, watermark, signature"""
image = await SD.text_to_image(imgp, negative_prompt=np)
image.save("image.png")
embed.set_footer(
text=
"""Refining..."""
)
file = discord.File("image.png", filename="image.png", description=imgp)
embed.set_image(url="attachment://image.png")
await e.edit(embed=embed, attachments=[file])
image = await RF.image_to_image("image.png")
embed.set_footer(
text=
"""Information or code generated by Lyre may not always be correct."""
)
image.save("image.png")
file = discord.File("image.png", filename="image.png")
embed.set_image(url="attachment://image.png")
await e.edit(embed=embed, attachments=[file])
except Exception as exc:
print(exc)
c = client.get_channel(1202160048126840882)
embed = discord.Embed(title="ERROR",
description=exc,
color=0xFF3348)
await c.send(embed=embed)
embed = discord.Embed(title="ERROR", color=0xFF3348)
await e.edit(embed=embed)
token = os.environ["TOKEN"]
client.run(token)
|