Kukedlc commited on
Commit
8841c02
1 Parent(s): 0519fa6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -1,6 +1,7 @@
1
  import gradio as gr
2
  from llama_cpp import Llama
3
 
 
4
  llm = Llama(model_path="model.gguf", n_ctx=8000, n_threads=2, chat_format="chatml")
5
 
6
  def generate(message, history,temperature=0.3,max_tokens=512):
 
1
  import gradio as gr
2
  from llama_cpp import Llama
3
 
4
+
5
  llm = Llama(model_path="model.gguf", n_ctx=8000, n_threads=2, chat_format="chatml")
6
 
7
  def generate(message, history,temperature=0.3,max_tokens=512):