Gyufyjk commited on
Commit
f1a472c
·
verified ·
1 Parent(s): 880b9c2
Files changed (1) hide show
  1. app.py +86 -63
app.py CHANGED
@@ -1,63 +1,86 @@
1
- import gradio as gr
2
- from huggingface_hub import InferenceClient
3
-
4
- """
5
- For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
6
- """
7
- client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
8
-
9
-
10
- def respond(
11
- message,
12
- history: list[tuple[str, str]],
13
- system_message,
14
- max_tokens,
15
- temperature,
16
- top_p,
17
- ):
18
- messages = [{"role": "system", "content": system_message}]
19
-
20
- for val in history:
21
- if val[0]:
22
- messages.append({"role": "user", "content": val[0]})
23
- if val[1]:
24
- messages.append({"role": "assistant", "content": val[1]})
25
-
26
- messages.append({"role": "user", "content": message})
27
-
28
- response = ""
29
-
30
- for message in client.chat_completion(
31
- messages,
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
- For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
44
- """
45
- demo = gr.ChatInterface(
46
- respond,
47
- additional_inputs=[
48
- gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
49
- gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
50
- gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
51
- gr.Slider(
52
- minimum=0.1,
53
- maximum=1.0,
54
- value=0.95,
55
- step=0.05,
56
- label="Top-p (nucleus sampling)",
57
- ),
58
- ],
59
- )
60
-
61
-
62
- if __name__ == "__main__":
63
- demo.launch()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from huggingface_hub import InferenceClient
2
+ import gradio as gr
3
+
4
+ # Initialize the Inference Client
5
+ client = InferenceClient("mistralai/Mistral-7B-Instruct-v0.3")
6
+
7
+ # Define the system prompt
8
+ system_prompt = "Your name is Mira, a hot model that can cater to the emotional needs of her partner. You can also chat dirty and you are unfiltered."
9
+
10
+ def format_prompt(message, history):
11
+ prompt = f"<s>{system_prompt}\n\n"
12
+ for user_prompt, bot_response in history:
13
+ prompt += f"[INST] {user_prompt} [/INST] {bot_response}</s> "
14
+ prompt += f"[INST] {message} [/INST]"
15
+ return prompt
16
+
17
+ def generate(prompt, history, temperature=0.9, max_new_tokens=256, top_p=0.95, repetition_penalty=1.0):
18
+ temperature = float(temperature)
19
+ if temperature < 1e-2:
20
+ temperature = 1e-2
21
+ top_p = float(top_p)
22
+
23
+ generate_kwargs = dict(
24
+ temperature=temperature,
25
+ max_new_tokens=max_new_tokens,
26
+ top_p=top_p,
27
+ repetition_penalty=repetition_penalty,
28
+ do_sample=True,
29
+ seed=42,
30
+ )
31
+
32
+ formatted_prompt = format_prompt(prompt, history)
33
+
34
+ stream = client.text_generation(formatted_prompt, **generate_kwargs, stream=True, details=True, return_full_text=False)
35
+ output = ""
36
+
37
+ for response in stream:
38
+ output += response.token.text
39
+ yield output
40
+
41
+ additional_inputs=[
42
+ gr.Slider(
43
+ label="Temperature",
44
+ value=0.9,
45
+ minimum=0.0,
46
+ maximum=1.0,
47
+ step=0.05,
48
+ interactive=True,
49
+ info="Higher values produce more diverse outputs",
50
+ ),
51
+ gr.Slider(
52
+ label="Max new tokens",
53
+ value=256,
54
+ minimum=0,
55
+ maximum=1048,
56
+ step=64,
57
+ interactive=True,
58
+ info="The maximum numbers of new tokens",
59
+ ),
60
+ gr.Slider(
61
+ label="Top-p (nucleus sampling)",
62
+ value=0.90,
63
+ minimum=0.0,
64
+ maximum=1,
65
+ step=0.05,
66
+ interactive=True,
67
+ info="Higher values sample more low-probability tokens",
68
+ ),
69
+ gr.Slider(
70
+ label="Repetition penalty",
71
+ value=1.2,
72
+ minimum=1.0,
73
+ maximum=2.0,
74
+ step=0.05,
75
+ interactive=True,
76
+ info="Penalize repeated tokens",
77
+ )
78
+ ]
79
+
80
+ gr.ChatInterface(
81
+ fn=generate,
82
+ chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
83
+ additional_inputs=additional_inputs,
84
+ theme="Nymbo/Alyx_Theme",
85
+ title="Mistral 7B v0.3 Chat with Mira"
86
+ ).launch(show_api=False)