Spaces:
Sleeping
Sleeping
Commit
·
5dc0c70
1
Parent(s):
fd11df0
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
from git import Repo
|
| 3 |
import os
|
|
|
|
| 4 |
|
| 5 |
st.set_page_config(
|
| 6 |
page_title="CognitoAI",
|
|
@@ -28,6 +29,7 @@ if not os.path.exists('./ConversationalAI'):
|
|
| 28 |
Repo.clone_from(f"https://DataRaptor:{gitsecret}@github.com/DataRaptor/ConversationalAI.git", './ConversationalAI')
|
| 29 |
|
| 30 |
|
|
|
|
| 31 |
from ConversationalAI import app_viewport
|
| 32 |
app_viewport()
|
| 33 |
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
from git import Repo
|
| 3 |
import os
|
| 4 |
+
import sys
|
| 5 |
|
| 6 |
st.set_page_config(
|
| 7 |
page_title="CognitoAI",
|
|
|
|
| 29 |
Repo.clone_from(f"https://DataRaptor:{gitsecret}@github.com/DataRaptor/ConversationalAI.git", './ConversationalAI')
|
| 30 |
|
| 31 |
|
| 32 |
+
print(sys.version_info)
|
| 33 |
from ConversationalAI import app_viewport
|
| 34 |
app_viewport()
|
| 35 |
|