ChangranHuuu commited on
Commit
87b381f
·
verified ·
1 Parent(s): be89223

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -134,7 +134,8 @@ def get_answers_func(user_query, model_name_input):
134
  return answer_with_cheatsheet, answer_without_cheatsheet
135
 
136
  # --- Gradio Interface ---
137
- with gr.Blocks(title="Task Caching Demo", theme=gr.themes.Soft()) as demo:
 
138
  gr.Markdown("# Task Caching Demo")
139
  gr.Markdown("Demonstrates the effect of using a dynamically generated cheatsheet (Task Caching) on model inference. Uses SambaNova API via `litellm`.")
140
 
 
134
  return answer_with_cheatsheet, answer_without_cheatsheet
135
 
136
  # --- Gradio Interface ---
137
+
138
+ with gr.Blocks(title="Task Caching Demo", theme=gr.themes.Default(font=[gr.themes.GoogleFont("Inconsolata"), "Arial", "sans-serif"])) as demo:
139
  gr.Markdown("# Task Caching Demo")
140
  gr.Markdown("Demonstrates the effect of using a dynamically generated cheatsheet (Task Caching) on model inference. Uses SambaNova API via `litellm`.")
141