mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-24 17:31:41 +00:00

* Initial work on multimodal websurfer * A little more progress. * Getting function calling to work. * Some basic progress with navigation. * Added ability to print multimodal messages to console. * Fixed hatch error * Nicely print multimodal messages to console. * Got OCR working. * Fixed the click action. * Solved some hatch errors. * Fixed some formatting errors. * Fixed more type errors. * Yet more fixes to types. * Fixed many type errors. * Fixed all type errors. Some needed to be ignored. See todos. * Fixed all? hatch errors? * Fixed multiline aria-names in prompts.
AGNext
Package layering
core
are the the foundational generic interfaces upon which all else is built. This module must not depend on any other module.application
are implementations of core components that are used to compose an application.components
are the building blocks for creating agents.
Development
TL;DR, run all checks with:
hatch run check
Setup
Virtual environment
To get a shell with the package available (virtual environment), in the current directory, run:
hatch shell
Common tasks
- Format:
hatch run check
- Lint:
hatch run lint
- Test:
hatch run pytest -n auto
- Mypy:
hatch run mypy
- Pyright:
hatch run pyright
- Build docs:
hatch run docs:build
- Auto rebuild+serve docs:
hatch run docs:serve
Note
These don't need to be run in a virtual environment,
hatch
will automatically manage it for you.