osanseviero HF staff commited on
Commit
ed6faba
1 Parent(s): 449771c

Create new file

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import gradio as gr
3
+ import numpy as np
4
+
5
+
6
+ io = gr.Interface.load("ybelkada/flan-t5-large", api_key=os.environ.get('api_key', None))
7
+
8
+ io.launch()