Summarize / app.py
MVesalA's picture
Update app.py
5bb4890 verified
raw
history blame contribute delete
405 Bytes
from util import SUMMARIZE
import gradio
interface = gradio.Interface(fn=SUMMARIZE,
inputs=gradio.TextArea(lines=2, value="https://medium.com/analytics-vidhya/openai-gpt-3-language-models-are-few-shot-learners-82531b3d3122"),
outputs=gradio.TextArea(placeholder='This link is an article by Soheil Tehrani about OAI'))
interface.launch(share=True)