Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
from AssistantService import GPTAssistant
|
2 |
from openai.error import AuthenticationError
|
3 |
import streamlit as st
|
|
|
4 |
import configparser
|
5 |
|
6 |
config = configparser.ConfigParser()
|
@@ -59,3 +60,7 @@ if 'code_generated' in st.session_state:
|
|
59 |
st.table(result)
|
60 |
else:
|
61 |
st.write("error extracting data")
|
|
|
|
|
|
|
|
|
|
1 |
from AssistantService import GPTAssistant
|
2 |
from openai.error import AuthenticationError
|
3 |
import streamlit as st
|
4 |
+
import analytics.gs as ga_tag
|
5 |
import configparser
|
6 |
|
7 |
config = configparser.ConfigParser()
|
|
|
60 |
st.table(result)
|
61 |
else:
|
62 |
st.write("error extracting data")
|
63 |
+
|
64 |
+
|
65 |
+
ga_tag.ga_markdown()
|
66 |
+
|