Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -11,11 +11,11 @@ if 'displayChat' not in st.session_state:
|
|
11 |
os.system('mkdir files')
|
12 |
os.system('mkdir plugins')
|
13 |
googleS = requests.get('https://raw.githubusercontent.com/d3n7/GPT-4-Unlimited-Tools/main/plugins/google.py').content
|
14 |
-
googlePath = os.path.join(thispath
|
15 |
with open(googlePath, 'wb') as f:
|
16 |
f.write(googleS)
|
17 |
blipS = requests.get('https://raw.githubusercontent.com/d3n7/GPT-4-Unlimited-Tools/main/plugins/blip3.py').content
|
18 |
-
blipPath = os.path.join(thispath
|
19 |
with open(blipPath, 'wb') as f:
|
20 |
f.write(blipS)
|
21 |
st.session_state['displayChat'] = False
|
|
|
11 |
os.system('mkdir files')
|
12 |
os.system('mkdir plugins')
|
13 |
googleS = requests.get('https://raw.githubusercontent.com/d3n7/GPT-4-Unlimited-Tools/main/plugins/google.py').content
|
14 |
+
googlePath = os.path.join(thispath, 'plugins', 'google.py')
|
15 |
with open(googlePath, 'wb') as f:
|
16 |
f.write(googleS)
|
17 |
blipS = requests.get('https://raw.githubusercontent.com/d3n7/GPT-4-Unlimited-Tools/main/plugins/blip3.py').content
|
18 |
+
blipPath = os.path.join(thispath, 'plugins', 'blip2.py')
|
19 |
with open(blipPath, 'wb') as f:
|
20 |
f.write(blipS)
|
21 |
st.session_state['displayChat'] = False
|