anisotropies commited on
Commit
09ee478
·
verified ·
1 Parent(s): 3e398e8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -1,7 +1,8 @@
1
  import gradio as gr
2
 
3
- gr.load("models/mistralai/Mistral-7B-Instruct-v0.2",
4
- title="Someone's Chatty",
5
- description="What would you like to chat about?"
6
- ).launch()
7
 
 
 
1
  import gradio as gr
2
 
3
+ demo = gr.load("mistralai/Mistral-7B-Instruct-v0.2",
4
+ title="Someone's Chatty",
5
+ description="What would you like to chat about?",
6
+ src="models")
7
 
8
+ demo.launch()