Create app.py
Browse files
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()
|