rishiraj commited on
Commit
220b2e5
·
verified ·
1 Parent(s): efe9046

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +99 -2
app.py CHANGED
@@ -1,5 +1,10 @@
 
1
  import gradio as gr
2
 
 
 
 
 
3
  # Function to handle dynamic content display
4
  def show_info(section):
5
  if section == "Experiences":
@@ -28,5 +33,97 @@ with gr.Blocks() as app:
28
 
29
  section_dropdown.change(show_info, inputs=section_dropdown, outputs=info_display)
30
 
31
- # Launch the app
32
- app.launch()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from huggingface_hub import InferenceClient
2
  import gradio as gr
3
 
4
+ client = InferenceClient(
5
+ "mistralai/Mixtral-8x7B-Instruct-v0.1"
6
+ )
7
+
8
  # Function to handle dynamic content display
9
  def show_info(section):
10
  if section == "Experiences":
 
33
 
34
  section_dropdown.change(show_info, inputs=section_dropdown, outputs=info_display)
35
 
36
+ def format_prompt(message, history):
37
+ prompt = "<s>"
38
+ for user_prompt, bot_response in history:
39
+ prompt += f"[INST] {user_prompt} [/INST]"
40
+ prompt += f" {bot_response}</s> "
41
+ prompt += f"[INST] {message} [/INST]"
42
+ return prompt
43
+
44
+ def generate(
45
+ prompt, history, system_prompt, temperature=0.9, max_new_tokens=256, top_p=0.95, repetition_penalty=1.0,
46
+ ):
47
+ temperature = float(temperature)
48
+ if temperature < 1e-2:
49
+ temperature = 1e-2
50
+ top_p = float(top_p)
51
+
52
+ generate_kwargs = dict(
53
+ temperature=temperature,
54
+ max_new_tokens=max_new_tokens,
55
+ top_p=top_p,
56
+ repetition_penalty=repetition_penalty,
57
+ do_sample=True,
58
+ seed=42,
59
+ )
60
+
61
+ formatted_prompt = format_prompt(f"{system_prompt}, {prompt}", history)
62
+ stream = client.text_generation(formatted_prompt, **generate_kwargs, stream=True, details=True, return_full_text=False)
63
+ output = ""
64
+
65
+ for response in stream:
66
+ output += response.token.text
67
+ yield output
68
+ return output
69
+
70
+
71
+ additional_inputs=[
72
+ gr.Textbox(
73
+ label="System Prompt",
74
+ max_lines=1,
75
+ interactive=True,
76
+ ),
77
+ gr.Slider(
78
+ label="Temperature",
79
+ value=0.9,
80
+ minimum=0.0,
81
+ maximum=1.0,
82
+ step=0.05,
83
+ interactive=True,
84
+ info="Higher values produce more diverse outputs",
85
+ ),
86
+ gr.Slider(
87
+ label="Max new tokens",
88
+ value=256,
89
+ minimum=0,
90
+ maximum=1048,
91
+ step=64,
92
+ interactive=True,
93
+ info="The maximum numbers of new tokens",
94
+ ),
95
+ gr.Slider(
96
+ label="Top-p (nucleus sampling)",
97
+ value=0.90,
98
+ minimum=0.0,
99
+ maximum=1,
100
+ step=0.05,
101
+ interactive=True,
102
+ info="Higher values sample more low-probability tokens",
103
+ ),
104
+ gr.Slider(
105
+ label="Repetition penalty",
106
+ value=1.2,
107
+ minimum=1.0,
108
+ maximum=2.0,
109
+ step=0.05,
110
+ interactive=True,
111
+ info="Penalize repeated tokens",
112
+ )
113
+ ]
114
+
115
+ examples=[["Can you explain how the QuickSort algorithm works and provide a Python implementation?", None, None, None, None, None,],
116
+ ["What are some unique features of Rust that make it stand out compared to other systems programming languages like C++?", None, None, None, None, None,],
117
+ ]
118
+
119
+ llm = gr.ChatInterface(
120
+ fn=generate,
121
+ chatbot=gr.Chatbot(show_label=True, show_share_button=True, show_copy_button=True, likeable=True, layout="bubble"),
122
+ additional_inputs=additional_inputs,
123
+ title="Hi 👋, I'm Rishiraj Acharya (ঋষিরাজ আচার্য্য)",
124
+ examples=examples,
125
+ concurrency_limit=20,
126
+ )
127
+
128
+ demo = gr.TabbedInterface([app, llm], ["About", "Chat"])
129
+ demo.launch()