Spaces:
Running on CPU Upgrade

File size: 1,139 Bytes
cf1e692
7187a61
 
cf1e692
 
5cb8bba
11fb06f
5086fc0
5a56b6c
5086fc0
d692f1f
d8bda33
2c62f50
e43992b
14bf818
546104d
bfb4d01
63aba02
d3233ce
6d949e0
7187a61
 
 
f8e106c
a5603d3
7187a61
cf1e692
 
a5603d3
0aa83ad
6b5ae25
 
 
 
ddcc64f
3d8b513
cf1e692
 
6d949e0
cf1e692
7187a61
bfb4d01
 
 
 
 
 
c9b3b36
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
import discord
import os
import threading
from discord.ext import commands
import json
import datetime
import requests
import os.path
import random
import gspread
import re
import asyncio
import csv
from tabulate import tabulate
import logging
import time
import pandas as pd
from apscheduler.schedulers.background import BackgroundScheduler
import sys

import gradio_client
import gradio as gr
from gradio_client import Client
from huggingface_hub import HfApi, list_models, list_liked_repos, list_metrics

DISCORD_TOKEN = os.environ.get("DISCORD_TOKEN", None)
intents = discord.Intents.all() 
bot = commands.Bot(command_prefix='!', intents=intents)


@bot.event
async def on_ready():
    print(f'Logged in as {bot.user.name}')
    print(f"XP_PER_MESSAGE: {XP_PER_MESSAGE}")
    # testing sheet -> read -> paste sheet

""""""
DISCORD_TOKEN = os.environ.get("DISCORD_TOKEN", None)
def run_bot():
    bot.run(DISCORD_TOKEN)
threading.Thread(target=run_bot).start()


demo = gr.Blocks()
with demo:
    TITLE = """<h1 align="center" id="space-title">🤗 Hugging Face Level Leaderboard</h1>"""
    gr.HTML(TITLE)
demo.queue().launch()