-
Notifications
You must be signed in to change notification settings - Fork 0
/
les_60.py
38 lines (31 loc) · 1.28 KB
/
les_60.py
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
import logging
from aiogram import Bot, Dispatcher, types
from aiogram.filters import Command
from aiogram.types import Message
from transformers import pipeline
from aiogram import F
# Включаем логирование
logging.basicConfig(level=logging.INFO)
# Инициализация бота
API_TOKEN = '6941489417:AAFiNIiGfIXfAmNl3sSb00cXTTNzVfDuf44'
bot = Bot(token=API_TOKEN)
dp = Dispatcher()
# Инициализация NLP модели (предобученная DialoGPT)
nlp = pipeline('text-generation', model="microsoft/DialoGPT-medium")
# Команда /start
@dp.message(Command("start"))
async def send_welcome(message: Message):
await message.answer("Привет! Я чат-бот, задавай мне вопросы.")
# Обработка текстовых сообщений
@dp.message(F.text)
async def handle_message(message: Message):
user_input = message.text
response = nlp(user_input, max_length=100, num_return_sequences=1)[0]['generated_text']
await message.answer(response)
# Основная функция запуска бота
async def main():
# Пропуск всех предыдущих апдейтов при запуске
await dp.start_polling(bot)
if __name__ == '__main__':
import asyncio
asyncio.run(main())