vericudebuget commited on
Commit
37880a7
·
verified ·
1 Parent(s): 03eb4b0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -3
app.py CHANGED
@@ -12,7 +12,7 @@ def format_prompt(message, history):
12
  prompt += f"[INST] {message} [/INST]"
13
  return prompt
14
 
15
- def generate(prompt, history, system_prompt, temperature=0.9, max_new_tokens=9048, top_p=0.95, repetition_penalty=1.0):
16
  temperature = max(float(temperature), 1e-2)
17
  top_p = float(top_p)
18
 
@@ -39,9 +39,18 @@ additional_inputs = [
39
  gr.Slider(label="Temperature", value=0.9, minimum=0.0, maximum=1.0, step=0.05, interactive=True, info="Higher values produce more diverse outputs"),
40
  gr.Slider(label="Max new tokens", value=9048, minimum=256, maximum=9048, step=64, interactive=True, info="The maximum numbers of new tokens"),
41
  gr.Slider(label="Top-p (nucleus sampling)", value=0.90, minimum=0.0, maximum=1, step=0.05, interactive=True, info="Higher values sample more low-probability tokens"),
42
- gr.Slider(label="Repetition penalty", value=1.2, minimum=1.0, maximum=2.0, step=0.05, interactive=True, info="Penalize repeated tokens")
 
43
  ]
44
 
 
 
 
 
 
 
 
 
45
  gr.ChatInterface(
46
  fn=generate,
47
  chatbot=gr.Chatbot(show_label=True, show_share_button=True, show_copy_button=True, likeable=True, layout="panel"),
@@ -49,5 +58,5 @@ gr.ChatInterface(
49
  title="ConvoLite",
50
  description="Remember! The AI might give incorrect information about people, locations, history, etc...",
51
  concurrency_limit=20,
52
- theme="theme.css" # Add this line to specify the path to your CSS file
53
  ).launch(show_api=False)
 
12
  prompt += f"[INST] {message} [/INST]"
13
  return prompt
14
 
15
+ def generate(prompt, history, system_prompt, temperature=0.9, max_new_tokens=9048, top_p=0.95, repetition_penalty=1.0, theme):
16
  temperature = max(float(temperature), 1e-2)
17
  top_p = float(top_p)
18
 
 
39
  gr.Slider(label="Temperature", value=0.9, minimum=0.0, maximum=1.0, step=0.05, interactive=True, info="Higher values produce more diverse outputs"),
40
  gr.Slider(label="Max new tokens", value=9048, minimum=256, maximum=9048, step=64, interactive=True, info="The maximum numbers of new tokens"),
41
  gr.Slider(label="Top-p (nucleus sampling)", value=0.90, minimum=0.0, maximum=1, step=0.05, interactive=True, info="Higher values sample more low-probability tokens"),
42
+ gr.Slider(label="Repetition penalty", value=1.2, minimum=1.0, maximum=2.0, step=0.05, interactive=True, info="Penalize repeated tokens"),
43
+ gr.Dropdown(label="Theme", choices=["Base", "Default", "Glass", "Monochrome", "Soft"], default="Default", interactive=True, info="Select a theme for the app")
44
  ]
45
 
46
+ theme_mapping = {
47
+ "Base": gr.themes.Base(),
48
+ "Default": gr.themes.Default(),
49
+ "Glass": gr.themes.Glass(),
50
+ "Monochrome": gr.themes.Monochrome(),
51
+ "Soft": gr.themes.Soft()
52
+ }
53
+
54
  gr.ChatInterface(
55
  fn=generate,
56
  chatbot=gr.Chatbot(show_label=True, show_share_button=True, show_copy_button=True, likeable=True, layout="panel"),
 
58
  title="ConvoLite",
59
  description="Remember! The AI might give incorrect information about people, locations, history, etc...",
60
  concurrency_limit=20,
61
+ theme=theme_mapping[additional_inputs[-1].value] # Use the selected theme
62
  ).launch(show_api=False)