Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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/
|
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 = "
|
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(
|
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 |
|