Spaces:
Runtime error
Runtime error
File size: 589 Bytes
637df7e 6bf19a4 637df7e effb069 46e4680 a45f8b7 effb069 6bf19a4 effb069 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import gradio as gr
import os
title = "LLAMA2"
description = "LLAMA2"
article = "<p style='text-align: center'>test ...</p>"
examples = [
["Test message 1"],
["What you can?"],
["Гладкая Бореальная низина на северном полушарии занимает 40%"],
]
gr.load(
"huggingface/meta-llama/Llama-2-7b-chat-hf",
inputs=gr.Textbox(lines=5, label="Входной текст"),
title=title,
description=description,
article=article,
examples=examples,
enable_queue=True,
api_key=os.getenv('api_key')
).launch() |