Kek-bot / app.py
allekssandr's picture
Update app.py
ccac5b1 verified
raw
history blame
274 Bytes
from llama_cpp import Llama
llm = Llama.from_pretrained(
repo_id="microsoft/Phi-3-mini-4k-instruct-gguf",
filename="Phi-3-mini-4k-instruct-fp16.gguf",
)
output = llm(
"Once upon a time,",
max_tokens=512,
echo=True
)
print(output)
if __name__ == '__app__':
app()