application-tools
Default set of tools available in ELITEA for Agents
Link other dependencies to alita-sdk as source code
Create any python file in the root folder (for instance, link.py) with the content below:
import os
source_file = 'C:\\\\myProjects\\application-tools\\src\\alita_tools'
symlink_path = 'C:\\\\myProjects\\alita-sdk\\alita_tools'
os.symlink(source_file, symlink_path)
Then execute it:
python link.py
Expected result is linked alita_tools folder in project structure.
alita-sdk
|-- ...
|-- aliata_tools
|-- ...
|-- src
|-- ...