Bard / app.py
Rooni's picture
Create app.py
367912e verified
raw
history blame contribute delete
586 Bytes
import bardapi
# Загружаем модель
model = bardapi.BardModel("bard-base")
# Создаем функцию, которая генерирует текст
def generate_text(prompt):
return model.generate_text(prompt)
# Создаем интерфейс
gr.Interface(generate_text,
title="Генератор текста",
description="Генерирует текст по заданному запросу",
input_components=[gr.TextInput(label="Запрос")],
output_components=[gr.OutputText(label="Текст")])