mirror of
https://github.com/microsoft/autogen.git
synced 2026-04-20 03:02:16 -04:00
* improve template for files, integreate files in db * ui update, improvements to file display grid * add new global skill for image generation * update readme to address #739 * utils.py refactor, separate db uitls for ease of development * db utils * add support for sessions both in backend api and ui * improve implementation for session support * add early v1 support for a gallery and publishing to a gallery * rewrite logic for file storage representation. Store only file references on in db * update generate image logic * update ui layout * fix light dark mode bug * v1 support for showing items added to gallery * remove viewer as it is merged in gallery * formatting updates * QOL refactoring * readme and general updates * add example notebook on assistant api * imporve naming conventions and formatting * readme update * Update samples/apps/autogen-assistant/pyproject.toml Co-authored-by: Chi Wang <wang.chi@microsoft.com> * Update samples/apps/autogen-assistant/notebooks/tutorial.ipynb Co-authored-by: Chi Wang <wang.chi@microsoft.com> --------- Co-authored-by: Chi Wang <wang.chi@microsoft.com>
62 lines
1.3 KiB
TOML
62 lines
1.3 KiB
TOML
[build-system]
|
|
requires = ["setuptools", "setuptools-scm"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "autogenra"
|
|
authors = [
|
|
{ name="Autogen Team", email="autogen@microsoft.com" },
|
|
]
|
|
description = "Autogen Assistant UI"
|
|
readme = "README.md"
|
|
license = { file="LICENSE" }
|
|
requires-python = ">=3.9"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
|
|
|
|
dependencies = [
|
|
"pydantic",
|
|
"fastapi",
|
|
"typer",
|
|
"uvicorn",
|
|
"arxiv",
|
|
"pyautogen==0.2.0"
|
|
]
|
|
optional-dependencies = {web = ["fastapi", "uvicorn"]}
|
|
|
|
dynamic = ["version"]
|
|
|
|
[tool.setuptools]
|
|
include-package-data = true
|
|
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "autogenra.version.VERSION"}
|
|
readme = {file = ["README.md"]}
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["autogenra*"]
|
|
exclude = ["*.tests*"]
|
|
namespaces = false
|
|
|
|
[tool.setuptools.package-data]
|
|
"autogenra" = ["*.*"]
|
|
|
|
[tool.pytest.ini_options]
|
|
filterwarnings = [
|
|
"ignore:Deprecated call to `pkg_resources\\.declare_namespace\\('.*'\\):DeprecationWarning",
|
|
"ignore::DeprecationWarning:google.rpc",
|
|
]
|
|
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://github.com/microsoft/autogen"
|
|
"Bug Tracker" = "https://github.com/microsoft/autogen/issues"
|
|
|
|
[project.scripts]
|
|
autogenra = "autogenra.cli:run"
|