Spaces:
Runtime error
Runtime error
import discord | |
from discord.ext import commands | |
from ChatAI.chat_ai import pipe as ai | |
# Set up Discord bot intents and command prefix | |
intents = discord.Intents.default() | |
intents.message_content = True | |
intents.messages = True | |
bot = commands.Bot(command_prefix="!", intents=intents) | |
# Dictionary to track message count per channel | |
message_counts = {} | |
async def on_message(message): | |
guild = message.guild # Get the guild (server) the message is from | |
channel = message.channel | |
if message.channel != discord.utils.get(guild.text_channels, name="ai_chatter"): | |
print("not ai_chatter channel"); return; | |
print("channel: ai_chatter") | |
if message.author.bot: | |
print("not taking own messages into count"); return; | |
if message.author.name!="sandra_n": pass; | |
print("I can see its you, sis"); await message.channel.send("I can see its you, sis") | |
if message.channel.id not in message_counts: # Ensure tracking exists for this channel | |
message_counts[message.channel.id] = 0 | |
message_counts[message.channel.id] += 1 # Increment message count | |
print(message_counts[message.channel.id]) | |
messages = [] | |
if message_counts[message.channel.id] >= 4: # Check if the count reaches 10 | |
async for message in channel.history(limit=4): | |
messages.append(message.content) | |
await message.channel.send("\n".join(messages)) | |
message_counts[message.channel.id] = 0 # Reset the counter | |
await bot.process_commands(message) # Ensure commands still work | |
async def on_ready(): | |
print(f'Logged in as {bot.user}') # Logs bot login in console | |
guild = discord.utils.get(bot.guilds, name="PrzebieralniaKoedukacyjna") | |
if guild: | |
# Get the channel by name | |
channel = discord.utils.get(guild.channels, name="ai_chatter") # Replace "general" with your channel name | |
if channel: | |
print(f"Channel found: {channel.name} (ID: {channel.id})") | |
else: | |
print("Channel not found!") | |
await channel.send(f"{bot.user} logged in, runnin on 'huggingface.co/spaces") | |
bot.run("MTMzODQ4NTY2MzY3MDA3OTQ4OA.GlmK1T.7ZeEiDz7ViY3zvuSqlacVocDMSZ-ln80c09AS4") |