MORENdi commited on
Commit
7189e33
1 Parent(s): dfba262

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +24 -0
app.py ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ from transformers import pipeline # Или другой способ загрузки вашей модели
3
+
4
+ # Загрузка модели (один раз при запуске приложения)
5
+ @st.cache_resource
6
+ def load_model():
7
+ return pipeline("text-generation", model="DeepPavlov/rubert-base-cased-conversational")
8
+
9
+ # Обработка текста
10
+ def process_text_with_model(text):
11
+ # Логика для обработки текста с помощью вашей модели
12
+ # Пример:
13
+ generator = load_model()
14
+ response = generator(text, max_length=100, num_return_sequences=1)[0]['generated_text']
15
+ return response
16
+
17
+ # Интерфейс Streamlit
18
+ st.title("Чат-бот по \"Аленькому цветочку\"")
19
+
20
+ user_input = st.text_input("Введите ваш вопрос:")
21
+
22
+ if user_input:
23
+ response = process_text_with_model(user_input)
24
+ st.write(response)