cigol123 commited on
Commit
93ccc6b
·
verified ·
1 Parent(s): c0f5ddf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -2,7 +2,7 @@ import gradio as gr
2
  from llama_cpp import Llama
3
 
4
  llm = Llama(
5
- model_path="yugogpt-q4_0.gguf",
6
  n_ctx=2048
7
  )
8
 
@@ -16,7 +16,8 @@ def chat(message, history):
16
 
17
  demo = gr.ChatInterface(
18
  chat,
19
- title="YUGO-GPT Chat",
20
  )
21
 
22
  demo.launch(server_name="0.0.0.0", server_port=7860)
 
 
2
  from llama_cpp import Llama
3
 
4
  llm = Llama(
5
+ model_path="YugoGPT-q4_0.gguf",
6
  n_ctx=2048
7
  )
8
 
 
16
 
17
  demo = gr.ChatInterface(
18
  chat,
19
+ title="YugoGPT Chat",
20
  )
21
 
22
  demo.launch(server_name="0.0.0.0", server_port=7860)
23
+