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

17
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Run Streamlit Demo",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/src/demo_streamlit.py",
"console": "integratedTerminal",
"args": [
"--server.port", "80",
"--server.address", "0.0.0.0"
],
"python": "${workspaceFolder}/.venv/bin/python"
}
]
}