Chris STC
commited on
Commit
·
ed4b678
1
Parent(s):
86a0c79
Update app.py
Browse files
app.py
CHANGED
@@ -10,7 +10,7 @@ filename = wget.download(url)
|
|
10 |
llm2 = Llama(model_path=filename, seed=random.randint(1, 2**31))
|
11 |
|
12 |
title = """<h1 align="center">Chat with awesome WizardLM 7b model!</h1><br>"""
|
13 |
-
with gr.Blocks(theme=
|
14 |
gr.HTML(title)
|
15 |
gr.HTML("This model is awesome for its size! It is only 20th the size of Chatgpt but is around 90% as good as Chatgpt. However, please don't rely on WizardLM to provide 100% true information as it might be wrong sometimes.")
|
16 |
chatbot = gr.Chatbot()
|
|
|
10 |
llm2 = Llama(model_path=filename, seed=random.randint(1, 2**31))
|
11 |
|
12 |
title = """<h1 align="center">Chat with awesome WizardLM 7b model!</h1><br>"""
|
13 |
+
with gr.Blocks(theme=gr.themes.clean) as demo:
|
14 |
gr.HTML(title)
|
15 |
gr.HTML("This model is awesome for its size! It is only 20th the size of Chatgpt but is around 90% as good as Chatgpt. However, please don't rely on WizardLM to provide 100% true information as it might be wrong sometimes.")
|
16 |
chatbot = gr.Chatbot()
|