Spaces:
Sleeping
Sleeping
Joshua Sundance Bailey
commited on
Commit
·
41db616
1
Parent(s):
b4506bc
version str
Browse files- bumpver.toml +3 -0
- streamlit-gpt4o/app.py +7 -0
bumpver.toml
CHANGED
@@ -14,3 +14,6 @@ push = true
|
|
14 |
"bumpver.toml" = [
|
15 |
'current_version = "{version}"',
|
16 |
]
|
|
|
|
|
|
|
|
14 |
"bumpver.toml" = [
|
15 |
'current_version = "{version}"',
|
16 |
]
|
17 |
+
"streamlit-gpt4o/app.py" = [
|
18 |
+
'__version__ = "{version}"',
|
19 |
+
]
|
streamlit-gpt4o/app.py
CHANGED
@@ -13,6 +13,13 @@ from langchain_core.runnables.history import RunnableWithMessageHistory
|
|
13 |
from langchain_openai import ChatOpenAI
|
14 |
from st_multimodal_chatinput import multimodal_chatinput
|
15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
logging.basicConfig(level=logging.DEBUG)
|
17 |
|
18 |
|
|
|
13 |
from langchain_openai import ChatOpenAI
|
14 |
from st_multimodal_chatinput import multimodal_chatinput
|
15 |
|
16 |
+
__version__ = "0.0.1"
|
17 |
+
|
18 |
+
st.set_page_config(
|
19 |
+
page_title=f"streamlit-gpt4o v{__version__}",
|
20 |
+
page_icon="🤖",
|
21 |
+
)
|
22 |
+
|
23 |
logging.basicConfig(level=logging.DEBUG)
|
24 |
|
25 |
|