Radosław Wolnik commited on
Commit
bbe2ee9
·
1 Parent(s): aa849c4

Responding

Browse files
Files changed (1) hide show
  1. app.py +20 -11
app.py CHANGED
@@ -2,46 +2,55 @@ import discord
2
  from discord.ext import commands
3
  from ChatAI.chat_ai import pipe as ai
4
 
 
5
 
6
  # Set up Discord bot intents and command prefix
7
  intents = discord.Intents.default()
8
  intents.message_content = True
9
  intents.messages = True
10
  bot = commands.Bot(command_prefix="!", intents=intents)
 
11
  # Dictionary to track message count per channel
12
  message_counts = {}
13
 
14
  @bot.event
15
  async def on_message(message):
16
  guild = message.guild # Get the guild (server) the message is from
17
- channel = discord.utils.get(guild.text_channels, name="ai_chatter")
18
 
19
  # Verification
20
- if message.channel != channel: return;
21
- if message.author.bot: return;
22
-
23
  # Ensure tracking exists for this channel
24
  if message.channel.id not in message_counts:
25
  message_counts[message.channel.id] = 0
 
26
  # Increment message count
27
  message_counts[message.channel.id] += 1
28
  print(message_counts[message.channel.id])
29
 
 
 
30
  messages = []
31
- if message_counts[message.channel.id] >= 1: # Check if the count reaches 10
32
- async for message in channel.history(limit=4):
33
  messages.append(message.content)
34
 
35
  previous_messages = ("\n".join(messages))
36
- response = generate(previous_messages, temperature=0.9, max_new_tokens=256, top_p=0.95, repetition_penalty=1.0)
37
- part = split_string(str(response))
38
- for part in part:
39
- await channel.send(part)
40
 
41
  message_counts[message.channel.id] = 0 # Reset the counter
42
 
43
  await bot.process_commands(message) # Ensure commands still work
44
 
 
 
 
 
 
 
 
 
 
45
  def split_string(text: str) -> list[str]:
46
  """Helper function to split text into chunks"""
47
  return [text[i:i+3900] for i in range(0, len(text), 3900)]
@@ -72,7 +81,7 @@ async def on_ready():
72
  guild = discord.utils.get(bot.guilds, name="PrzebieralniaKoedukacyjna")
73
  if guild:
74
  # Get the channel by name
75
- channel = discord.utils.get(guild.channels, name="ai_chatter")
76
  if channel:
77
  print(f"Channel found: {channel.name} (ID: {channel.id})")
78
  else:
 
2
  from discord.ext import commands
3
  from ChatAI.chat_ai import pipe as ai
4
 
5
+ DEFAULT_CHATTER_CHANNEL="ai_chatter"
6
 
7
  # Set up Discord bot intents and command prefix
8
  intents = discord.Intents.default()
9
  intents.message_content = True
10
  intents.messages = True
11
  bot = commands.Bot(command_prefix="!", intents=intents)
12
+
13
  # Dictionary to track message count per channel
14
  message_counts = {}
15
 
16
  @bot.event
17
  async def on_message(message):
18
  guild = message.guild # Get the guild (server) the message is from
19
+ channel = discord.utils.get(guild.text_channels, name=DEFAULT_CHATTER_CHANNEL)
20
 
21
  # Verification
22
+ if message.channel != channel or message.author.bot: return;
 
 
23
  # Ensure tracking exists for this channel
24
  if message.channel.id not in message_counts:
25
  message_counts[message.channel.id] = 0
26
+
27
  # Increment message count
28
  message_counts[message.channel.id] += 1
29
  print(message_counts[message.channel.id])
30
 
31
+ respond_to_chat(message)
32
+
33
  messages = []
34
+ if message_counts[message.channel.id] >= 10: # Check if the count reaches 10
35
+ async for message in channel.history(limit=10):
36
  messages.append(message.content)
37
 
38
  previous_messages = ("\n".join(messages))
39
+ respond_to_chat(message)
 
 
 
40
 
41
  message_counts[message.channel.id] = 0 # Reset the counter
42
 
43
  await bot.process_commands(message) # Ensure commands still work
44
 
45
+ def respond_to_chat(message) ->str:
46
+ response = generate(message)
47
+ parts = split_string(response)
48
+ channel = discord.utils.get(message.guild.text_channels, name=DEFAULT_CHATTER_CHANNEL)
49
+ for part in parts:
50
+ channel.send(part)
51
+ return str("\n".join(parts))
52
+
53
+
54
  def split_string(text: str) -> list[str]:
55
  """Helper function to split text into chunks"""
56
  return [text[i:i+3900] for i in range(0, len(text), 3900)]
 
81
  guild = discord.utils.get(bot.guilds, name="PrzebieralniaKoedukacyjna")
82
  if guild:
83
  # Get the channel by name
84
+ channel = discord.utils.get(guild.channels, name=DEFAULT_CHATTER_CHANNEL)
85
  if channel:
86
  print(f"Channel found: {channel.name} (ID: {channel.id})")
87
  else: