zac commited on
Commit
397a785
·
1 Parent(s): d3a9044

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -6,7 +6,7 @@ from llama_cpp import Llama
6
  from huggingface_hub import hf_hub_download #load from huggingfaces
7
 
8
 
9
- llm = Llama(model_path= hf_hub_download(repo_id="TheBloke/StableBeluga-7B-GGML", filename="stablebeluga-7b.ggmlv3.q6_K.bin"))
10
 
11
  def generate_text(input_text):
12
  output = llm(f"Q: {input_text} A:", max_tokens=521, stop=["Q:", "\n"], echo=True)
@@ -15,7 +15,7 @@ def generate_text(input_text):
15
  input_text = gr.inputs.Textbox(lines= 10, label="Enter your input text")
16
  output_text = gr.outputs.Textbox(label="Output text")
17
 
18
- description = "bro neil it currently dosent work two people sending it request at the same time so going to fix that but currently running ggml models with llama.cpp implementation in python [https://github.com/abetlen/llama-cpp-python]"
19
 
20
  examples = [
21
  ["What is the capital of France? ", "The capital of France is Paris."],
@@ -24,6 +24,6 @@ examples = [
24
  ]
25
 
26
  demo = gr.Interface(fn=generate_text, inputs=input_text, outputs=output_text, title="Llama Language Model", description=description, examples=examples)
27
- demo.queue(concurrency_count=3)
28
  demo.launch()
29
 
 
6
  from huggingface_hub import hf_hub_download #load from huggingfaces
7
 
8
 
9
+ llm = Llama(model_path= hf_hub_download(repo_id="TheBloke/StableBeluga2-70B-GGML", filename="stablebeluga2-70b.ggmlv3.q2_K.bin"))
10
 
11
  def generate_text(input_text):
12
  output = llm(f"Q: {input_text} A:", max_tokens=521, stop=["Q:", "\n"], echo=True)
 
15
  input_text = gr.inputs.Textbox(lines= 10, label="Enter your input text")
16
  output_text = gr.outputs.Textbox(label="Output text")
17
 
18
+ description = " currently running ggml models with llama.cpp implementation in python [https://github.com/abetlen/llama-cpp-python]"
19
 
20
  examples = [
21
  ["What is the capital of France? ", "The capital of France is Paris."],
 
24
  ]
25
 
26
  demo = gr.Interface(fn=generate_text, inputs=input_text, outputs=output_text, title="Llama Language Model", description=description, examples=examples)
27
+ demo.queue()
28
  demo.launch()
29