import gradio as gr title = "LLAMA2" description = "LLAMA2" article = "

test ...

" 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, ).launch()