Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,64 +1,84 @@
|
|
1 |
import gradio as gr
|
2 |
-
from
|
|
|
3 |
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
|
10 |
-
def
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
|
26 |
-
|
|
|
|
|
|
|
27 |
|
28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
|
30 |
-
|
31 |
-
|
32 |
-
max_tokens=max_tokens,
|
33 |
-
stream=True,
|
34 |
-
temperature=temperature,
|
35 |
-
top_p=top_p,
|
36 |
-
):
|
37 |
-
token = message.choices[0].delta.content
|
38 |
-
|
39 |
-
response += token
|
40 |
-
yield response
|
41 |
-
|
42 |
-
|
43 |
-
"""
|
44 |
-
For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
|
45 |
-
"""
|
46 |
-
demo = gr.ChatInterface(
|
47 |
-
respond,
|
48 |
-
additional_inputs=[
|
49 |
-
gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
|
50 |
-
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
51 |
-
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
52 |
-
gr.Slider(
|
53 |
-
minimum=0.1,
|
54 |
-
maximum=1.0,
|
55 |
-
value=0.95,
|
56 |
-
step=0.05,
|
57 |
-
label="Top-p (nucleus sampling)",
|
58 |
-
),
|
59 |
-
],
|
60 |
-
)
|
61 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
|
63 |
if __name__ == "__main__":
|
64 |
-
|
|
|
1 |
import gradio as gr
|
2 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
3 |
+
import torch
|
4 |
|
5 |
+
class TextGenerationBot:
|
6 |
+
def __init__(self, model_name="umairrrkhan/english-text-generation"):
|
7 |
+
self.model_name = model_name
|
8 |
+
self.model = None
|
9 |
+
self.tokenizer = None
|
10 |
+
self.history = []
|
11 |
+
self.setup_model()
|
12 |
|
13 |
+
def setup_model(self):
|
14 |
+
self.model = AutoModelForCausalLM.from_pretrained(self.model_name)
|
15 |
+
self.tokenizer = AutoTokenizer.from_pretrained(self.model_name)
|
16 |
+
|
17 |
+
if self.tokenizer.pad_token is None:
|
18 |
+
self.tokenizer.pad_token = self.tokenizer.eos_token
|
19 |
+
|
20 |
+
if self.model.config.pad_token_id is None:
|
21 |
+
self.model.config.pad_token_id = self.model.config.eos_token_id
|
22 |
|
23 |
+
def generate_text(self, input_text, temperature=0.7, max_length=100):
|
24 |
+
inputs = self.tokenizer(input_text, return_tensors="pt", padding=True, truncation=True)
|
25 |
+
|
26 |
+
generation_config = {
|
27 |
+
'input_ids': inputs['input_ids'],
|
28 |
+
'max_length': max_length,
|
29 |
+
'num_return_sequences': 1,
|
30 |
+
'no_repeat_ngram_size': 2,
|
31 |
+
'temperature': temperature,
|
32 |
+
'top_p': 0.95,
|
33 |
+
'top_k': 50,
|
34 |
+
'do_sample': True,
|
35 |
+
'pad_token_id': self.tokenizer.pad_token_id,
|
36 |
+
'attention_mask': inputs['attention_mask']
|
37 |
+
}
|
38 |
+
|
39 |
+
with torch.no_grad():
|
40 |
+
outputs = self.model.generate(**generation_config)
|
41 |
+
|
42 |
+
return self.tokenizer.decode(outputs[0], skip_special_tokens=True)
|
43 |
|
44 |
+
def chat(self, message, history):
|
45 |
+
self.history = history or []
|
46 |
+
bot_response = self.generate_text(message)
|
47 |
+
self.history.append((message, bot_response))
|
48 |
+
return self.history
|
49 |
|
50 |
+
class ChatbotInterface:
|
51 |
+
def __init__(self):
|
52 |
+
self.bot = TextGenerationBot()
|
53 |
+
self.setup_interface()
|
54 |
|
55 |
+
def setup_interface(self):
|
56 |
+
self.interface = gr.ChatInterface(
|
57 |
+
fn=self.bot.chat,
|
58 |
+
title="AI Text Generation Chatbot",
|
59 |
+
description="Chat with an AI model trained on English text. Try asking questions or providing prompts!",
|
60 |
+
examples=[
|
61 |
+
["Tell me a short story about a brave knight"],
|
62 |
+
["What are the benefits of exercise?"],
|
63 |
+
["Write a poem about nature"]
|
64 |
+
],
|
65 |
+
theme=gr.themes.Soft(),
|
66 |
+
retry_btn="Regenerate Response",
|
67 |
+
undo_btn="Remove Last Message",
|
68 |
+
clear_btn="Clear Conversation",
|
69 |
+
)
|
70 |
|
71 |
+
def launch(self, **kwargs):
|
72 |
+
self.interface.launch(**kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
|
74 |
+
def main():
|
75 |
+
chatbot = ChatbotInterface()
|
76 |
+
chatbot.launch(
|
77 |
+
server_name="0.0.0.0",
|
78 |
+
server_port=7860,
|
79 |
+
share=True,
|
80 |
+
debug=True
|
81 |
+
)
|
82 |
|
83 |
if __name__ == "__main__":
|
84 |
+
main()
|