feat: Add UI to chat

This commit is contained in:
2026-02-09 15:46:36 -05:00
parent 620d5158d7
commit 69b0dad14d
8 changed files with 1485 additions and 0 deletions

19
ui/pyproject.toml Normal file
View File

@@ -0,0 +1,19 @@
[project]
name = "ui"
version = "0.1.0"
description = ""
authors = [
{name = "aserrador",email = "alejandro.ayala@onecluster.org"}
]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"streamlit (>=1.54.0,<2.0.0)"
]
[tool.poetry]
packages = [{include = "ui", from = "src"}]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"