dipesh commited on
Commit
ed4a612
·
1 Parent(s): 036e397

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -1,9 +1,11 @@
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
 
 
1
  import gradio as gr
2
  from nomic.gpt4all import GPT4All
3
 
4
+ m = GPT4All()
5
+ m.open()
6
+
7
  def greet(name):
8
+
 
9
  ans = m.prompt(name)
10
  return ans
11