Initial Demo

This commit is contained in:
zin
2026-01-15 02:05:34 +00:00
parent 2acb29a598
commit 025cc061f7
10 changed files with 4012 additions and 1 deletions

21
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,21 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Run Streamlit Demo",
"type": "shell",
"command": "streamlit run src/demo_streamlit.py --server.port 80 --server.address 0.0.0.0",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"echo": true,
"reveal": "always",
"focus": true,
"panel": "shared"
},
"problemMatcher": []
}
]
}