dipesh commited on
Commit
a916588
·
1 Parent(s): 95589ad

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -0
app.py ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from nomic.gpt4all import GPT4All
3
+
4
+ def greet(name):
5
+ m = GPT4All()
6
+ m.open()
7
+ ans = m.prompt(name)
8
+ return ans
9
+
10
+
11
+
12
+ iface = gr.Interface(fn=greet, inputs="text", outputs="text")
13
+ iface.launch()