Suat ATAN
commited on
Commit
·
f1387c9
1
Parent(s):
8598421
ed
Browse files- .vscode/launch.json +16 -0
- README.md +4 -4
- app.py +4 -2
.vscode/launch.json
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
// Use IntelliSense to learn about possible attributes.
|
3 |
+
// Hover to view descriptions of existing attributes.
|
4 |
+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
5 |
+
"version": "0.2.0",
|
6 |
+
"configurations": [
|
7 |
+
|
8 |
+
{
|
9 |
+
"name": "Python Debugger: Current File",
|
10 |
+
"type": "debugpy",
|
11 |
+
"request": "launch",
|
12 |
+
"program": "${file}",
|
13 |
+
"console": "integratedTerminal"
|
14 |
+
}
|
15 |
+
]
|
16 |
+
}
|
README.md
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
-
emoji:
|
4 |
colorFrom: green
|
5 |
-
colorTo:
|
6 |
sdk: streamlit
|
7 |
sdk_version: 1.31.1
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
-
python-version: 3.11
|
11 |
---
|
12 |
|
13 |
Dr. Suat ATAN
|
|
|
1 |
---
|
2 |
+
title: InspectSolv
|
3 |
+
emoji: ☘️
|
4 |
colorFrom: green
|
5 |
+
colorTo: white
|
6 |
sdk: streamlit
|
7 |
sdk_version: 1.31.1
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
+
python-version: 3.11.5
|
11 |
---
|
12 |
|
13 |
Dr. Suat ATAN
|
app.py
CHANGED
@@ -26,8 +26,8 @@ MODEL_LIST = ["gpt-3.5-turbo", "gpt-4"]
|
|
26 |
# Uncomment to enable debug mode
|
27 |
# MODEL_LIST.insert(0, "debug")
|
28 |
|
29 |
-
st.set_page_config(page_title="
|
30 |
-
st.header("☘️
|
31 |
|
32 |
# Enable caching for expensive functions
|
33 |
bootstrap_caching()
|
@@ -62,6 +62,8 @@ with st.expander("Advanced Options"):
|
|
62 |
return_all_chunks = st.checkbox("Show all chunks retrieved from vector search")
|
63 |
show_full_doc = st.checkbox("Show parsed contents of the document")
|
64 |
st.markdown('# config')
|
|
|
|
|
65 |
for dist in metadata.distributions():
|
66 |
st.markdown((f"{dist.name}=={dist.version}"))
|
67 |
|
|
|
26 |
# Uncomment to enable debug mode
|
27 |
# MODEL_LIST.insert(0, "debug")
|
28 |
|
29 |
+
st.set_page_config(page_title="☘️InspectSolv", page_icon="☘️", layout="wide")
|
30 |
+
st.header("☘️InspectSolv")
|
31 |
|
32 |
# Enable caching for expensive functions
|
33 |
bootstrap_caching()
|
|
|
62 |
return_all_chunks = st.checkbox("Show all chunks retrieved from vector search")
|
63 |
show_full_doc = st.checkbox("Show parsed contents of the document")
|
64 |
st.markdown('# config')
|
65 |
+
import sys
|
66 |
+
st.markdown(f'Python version: {sys.version}')
|
67 |
for dist in metadata.distributions():
|
68 |
st.markdown((f"{dist.name}=={dist.version}"))
|
69 |
|