mirror of
https://github.com/microsoft/autogen.git
synced 2025-08-10 17:51:22 +00:00

* add react-flow * update tutorial, some ui improvement for agent thread layout * v1 for interactive viz for agent state * add Ui visualization of message based transitions * minor updates * fix node edges, support visualization of self loops * improve edges and layout, add support for selector group chat prompt * minor ui tweaks * ui and layout updates * ugrade dependencies to fix dependabot scan errors * persist sidebar, enable contentbar title mechanism #4191 * add support for user proxy agent, support human in put mode. #4011 * add UI support for human input mode via a userproxy agent #4011 * version update * fix db initialization bug * support for human input mode in UI, fix backend api route minor bugs * update pyproject toml and uv lock * readme update, support full screen mode for agent visualiation * update uv.lock
72 lines
1.6 KiB
TOML
72 lines
1.6 KiB
TOML
[build-system]
|
|
requires = ["setuptools", "setuptools-scm"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "autogenstudio"
|
|
authors = [
|
|
{ name="AutoGen Team", email="autogen@microsoft.com" },
|
|
]
|
|
description = "AutoGen Studio"
|
|
readme = "README.md"
|
|
license = {file = "LICENSE-CODE"}
|
|
requires-python = ">=3.9, <3.13"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
|
|
|
|
dependencies = [
|
|
"pydantic",
|
|
"pydantic-settings",
|
|
"fastapi",
|
|
"typer",
|
|
"uvicorn",
|
|
"python-dotenv",
|
|
"websockets",
|
|
"numpy < 2.0.0",
|
|
"sqlmodel",
|
|
"psycopg",
|
|
"alembic",
|
|
"loguru",
|
|
"pyyaml",
|
|
"autogen-core==0.4.0.dev6",
|
|
"autogen-agentchat==0.4.0.dev6",
|
|
"autogen-ext==0.4.0.dev6"
|
|
]
|
|
optional-dependencies = {web = ["fastapi", "uvicorn"], database = ["psycopg"]}
|
|
|
|
dynamic = ["version"]
|
|
|
|
[tool.setuptools]
|
|
include-package-data = true
|
|
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "autogenstudio.version.VERSION"}
|
|
readme = {file = ["README.md"]}
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["autogenstudio*"]
|
|
exclude = ["*.tests*"]
|
|
namespaces = false
|
|
|
|
[tool.setuptools.package-data]
|
|
"autogenstudio" = ["*.*"]
|
|
|
|
[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]
|
|
autogenstudio = "autogenstudio.cli:run"
|