thedamn commited on
Commit
c5ffbc6
·
1 Parent(s): c6949aa

new update

Browse files
Files changed (2) hide show
  1. app.py +1 -4
  2. onetime.py +4 -0
app.py CHANGED
@@ -1,8 +1,5 @@
1
  import streamlit as st
2
- from gpt4all import GPT4All
3
-
4
- # Instantiate the GPT4All model
5
- gptj = GPT4All("ggml-gpt4all-j-v1.3-groovy")
6
 
7
  # Streamlit app
8
  def main():
 
1
  import streamlit as st
2
+ from onetime import gptj
 
 
 
3
 
4
  # Streamlit app
5
  def main():
onetime.py ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ from gpt4all import GPT4All
2
+
3
+ # Instantiate the GPT4All model
4
+ gptj = GPT4All("ggml-gpt4all-j-v1.3-groovy")