Stefan Grandl commited on
Commit
a1bb214
1 Parent(s): f6aef71
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -1,7 +1,6 @@
1
- from transformers import AutoModelForCausalLM, AutoTokenizer
2
  import gradio as gr
3
  import torch
4
-
5
 
6
  title = "🤖AI ChatBot"
7
  description = "A State-of-the-Art Large-scale Pretrained Response generation model (DialoGPT)"
@@ -43,5 +42,6 @@ gr.Interface(
43
  examples=examples,
44
  inputs=["text", "state"],
45
  outputs=["chatbot", "state"],
46
- theme="finlaymacklon/boxy_violet",
 
47
  ).launch()
 
 
1
  import gradio as gr
2
  import torch
3
+ from transformers import AutoModelForCausalLM, AutoTokenizer
4
 
5
  title = "🤖AI ChatBot"
6
  description = "A State-of-the-Art Large-scale Pretrained Response generation model (DialoGPT)"
 
42
  examples=examples,
43
  inputs=["text", "state"],
44
  outputs=["chatbot", "state"],
45
+ # theme="finlaymacklon/boxy_violet",
46
+ theme='HaleyCH/HaleyCH_Theme',
47
  ).launch()