new update
Browse files- app.py +1 -4
- onetime.py +4 -0
app.py
CHANGED
@@ -1,8 +1,5 @@
|
|
1 |
import streamlit as st
|
2 |
-
from
|
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")
|