Go to file
Jack Gerrits 0299009244 Add initial docs site (#15)
* Add initial docs site

* add ci and readme

* Update checks.yml

* Update conf.py
2024-05-24 13:45:23 -04:00
.github/workflows Add initial docs site (#15) 2024-05-24 13:45:23 -04:00
.vscode Add support for task cancellation (#7) 2024-05-20 15:32:08 -04:00
docs/src Add initial docs site (#15) 2024-05-24 13:45:23 -04:00
examples fix some bugs (#14) 2024-05-23 17:17:07 -07:00
src/agnext Add initial docs site (#15) 2024-05-24 13:45:23 -04:00
tests Add require response and remove generic types (#13) 2024-05-23 13:00:05 -07:00
.gitignore Add initial docs site (#15) 2024-05-24 13:45:23 -04:00
CODE_OF_CONDUCT.md CODE_OF_CONDUCT.md committed 2024-05-07 15:12:54 -07:00
LICENSE LICENSE committed 2024-05-07 15:12:54 -07:00
README.md Add initial docs site (#15) 2024-05-24 13:45:23 -04:00
SECURITY.md SECURITY.md committed 2024-05-07 15:12:56 -07:00
SUPPORT.md SUPPORT.md committed 2024-05-07 15:12:55 -07:00
pyproject.toml Add initial docs site (#15) 2024-05-24 13:45:23 -04:00
test.sh Implement intervention (#8) 2024-05-20 16:30:45 -07:00

README.md

AutoGenNext

Package layering

  • core are the the foundational generic interfaces upon which all else is built. This module must not depend on any other module.
  • agent_components are the building blocks for creating single agents
  • application_components are implementations of core components that are used to compose an application
  • chat is the concrete implementation of multi-agent interactions. Most users will deal with this module.

Development

Setup

python -m venv .venv
source .venv/bin/activate

pip install -e ".[dev]"

Running tests

pytest

Type checking

mypy
pyright

Linting

ruff check

Formatting

ruff format

Build docs

pip install -e ".[docs]"

sphinx-build docs/src docs/build

# To view the docs:
python -m http.server -d docs/build/html