operablepattern commited on
Commit
20f6917
·
verified ·
1 Parent(s): 0189777

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -1
app.py CHANGED
@@ -1,3 +1,11 @@
1
  import gradio as gr
 
2
 
3
- gr.load("models/operablepattern/gemma-2b-it-Q").launch()
 
 
 
 
 
 
 
 
1
  import gradio as gr
2
+ from llama_cpp import Llama
3
 
4
+ def response(message, history):
5
+ return message
6
+
7
+ gr.ChatInterface(
8
+ fn=response,
9
+ title="",
10
+ theme=''
11
+ ).queue().launch(share=True)