powolnik commited on
Commit
9fc7d0e
·
verified ·
1 Parent(s): ba7e0ae

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +25 -14
app.py CHANGED
@@ -1,7 +1,6 @@
1
  import discord
2
  from discord.ext import commands
3
  from ChatAI.chat_ai import pipe as ai
4
- from huggingface_hub import InferenceClient
5
 
6
 
7
  # Set up Discord bot intents and command prefix
@@ -12,7 +11,6 @@ bot = commands.Bot(command_prefix="!", intents=intents)
12
  # Dictionary to track message count per channel
13
  message_counts = {}
14
 
15
-
16
  @bot.event
17
  async def on_message(message):
18
  guild = message.guild # Get the guild (server) the message is from
@@ -30,30 +28,43 @@ async def on_message(message):
30
  print(message_counts[message.channel.id])
31
 
32
  messages = []
33
- if message_counts[message.channel.id] >= 10: # Check if the count reaches 10
34
- async for message in channel.history(limit=10):
35
  messages.append(message.content)
36
- previous_messages = ("\n".join(messages))
37
 
38
- response = ai.text_generation(previous_messages, temperature=0.9, max_new_tokens=256, top_p=0.95, repetition_penalty=1.0)
39
- splitted_response = split_string(response)
40
- for part in splitted_response:
 
41
  await channel.send(part)
42
 
43
  message_counts[message.channel.id] = 0 # Reset the counter
44
 
45
-
46
- response = str(ai.text_generation(message, details=False, stream=False, temperature=0.9, max_new_tokens=256, top_p=0.95, repetition_penalty=1.0))
47
- splitted_response = split_string(response)
48
- for part in splitted_response:
49
- await channel.send(part)
50
-
51
  await bot.process_commands(message) # Ensure commands still work
52
 
53
  def split_string(text: str) -> list[str]:
54
  """Helper function to split text into chunks"""
55
  return [text[i:i+3900] for i in range(0, len(text), 3900)]
56
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57
  @bot.event
58
  async def on_ready():
59
  print(f'Logged in as {bot.user}') # Logs bot login in console
 
1
  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
 
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
 
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)]
48
 
49
+ def generate(
50
+ prompt, temperature=0.9, max_new_tokens=256, top_p=0.95, repetition_penalty=1.0
51
+ ):
52
+ temperature = float(temperature)
53
+ if temperature < 1e-2:
54
+ temperature = 1e-2
55
+ top_p = float(top_p)
56
+
57
+ generate_kwargs = dict(
58
+ temperature=temperature,
59
+ max_new_tokens=max_new_tokens,
60
+ top_p=top_p,
61
+ repetition_penalty=repetition_penalty,
62
+ do_sample=True,
63
+ seed=42,
64
+ )
65
+
66
+ return ai.text_generation(prompt, **generate_kwargs, stream=False, details=False, return_full_text=True)
67
+
68
  @bot.event
69
  async def on_ready():
70
  print(f'Logged in as {bot.user}') # Logs bot login in console