CCockrum commited on
Commit
dfc360a
·
verified ·
1 Parent(s): 0db7027

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +45 -22
app.py CHANGED
@@ -1,11 +1,38 @@
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,
@@ -35,30 +62,26 @@ def respond(
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
  demo.launch()
 
1
  import gradio as gr
2
  from huggingface_hub import InferenceClient
3
 
4
+ # Custom background CSS with styled title and panel
5
+ css = """
6
+ @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Playfair+Display&display=swap');
7
+
8
+ body {
9
+ background-image: url('https://cdn-uploads.huggingface.co/production/uploads/67351c643fe51cb1aa28f2e5/wuyd5UYTh9jPrMJGmV9yC.jpeg');
10
+ background-size: cover;
11
+ background-position: center;
12
+ background-repeat: no-repeat;
13
+ font-family: 'Noto Sans JP', sans-serif;
14
+ }
15
+ #chat-panel {
16
+ background-color: rgba(255, 255, 255, 0.85);
17
+ padding: 2rem;
18
+ border-radius: 12px;
19
+ max-width: 700px;
20
+ height: 90vh;
21
+ margin: auto;
22
+ box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
23
+ overflow-y: auto;
24
+ }
25
+ #chat-title {
26
+ color: #2c3e50;
27
+ font-family: 'Noto Sans', serif;
28
+ font-size: 1.8rem;
29
+ font-weight: bold;
30
+ text-align: center;
31
+ margin-bottom: 1rem;
32
+ }
33
  """
 
 
 
34
 
35
+ client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
36
 
37
  def respond(
38
  message,
 
62
  top_p=top_p,
63
  ):
64
  token = message.choices[0].delta.content
 
65
  response += token
66
  yield response
67
 
68
+ with gr.Blocks(css=css) as demo:
69
+ with gr.Column(elem_id="chat-panel"):
70
+ gr.Markdown("## 🇯🇵 Japanese Tutor Chatbot", elem_id="chat-title")
71
 
72
+ with gr.Accordion("⚙️ Settings", open=False):
73
+ system_message = gr.Textbox(
74
+ value="You are an expert Japanese tutor. Help users understand Japanese grammar, vocabulary, sentence structure, particles, and kanji readings. Reply clearly in English unless the user specifies otherwise.",
75
+ label="System message"
76
+ )
77
+ max_tokens = gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens")
78
+ temperature = gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature")
79
+ top_p = gr.Slider(minimum=0.1, maximum=1.0, value=0.95, step=0.05, label="Top-p (nucleus sampling)")
 
 
 
 
 
 
 
 
 
 
80
 
81
+ gr.ChatInterface(
82
+ respond,
83
+ additional_inputs=[system_message, max_tokens, temperature, top_p]
84
+ )
85
 
86
  if __name__ == "__main__":
87
  demo.launch()