needs / app.py
ryanrwatkins's picture
Update app.py
1174d13
raw
history blame
348 Bytes
import gradio as gr
description = "Chat with Needs Assessment Experts"
title = "Let's Chat about Needs and Needs Assessments"
examples = [["How should start my needs assessment?"]]
interface = gr.Interface.load("models/pranavpsv/gpt2-genre-story-generator",
description=description,
examples=examples
)
interface.launch()