๐ Installation#
Developer Installation#
Trace itself is a minimal package that only relies on Python.
The ability to capture execution trace of Python program is defined in opto.trace
and does not rely on
any external dependencies.
However, if you want to use optimizer opto.optimizers
,
then we require autogen
package to make LLM API calls.
To install Trace, run:
Installation Command
pip install trace-opt
To contribute to the development, you can clone the repository and install the package in editable mode:
Tip
The installation script will git clone a version of AutoGen. You may require Git Large File Storage if git is unable to clone the repository otherwise.
git clone https://github.com/microsoft/Trace.git
cd Trace
pip install -e .