6ad67f24a3f628901944e8f80143ac86ce8dcf06
Setting up the environment (Windows)
- Run
python setup_venv.pyto create the virtual environment and install dependencies. - To activate the virtual environment, run
activate_venvin the Windows Terminal. - To deactivate the virtual environment, simply type
deactivate.
Running the code (Any)
- Run telegram_inference_bot.py after entering the environment
- now we're cooking with gas!
Tools Overview
The tools directory contains essential utilities that extend the capabilities of the main application. Below are key Python files and their roles:
- tools/base_tool.py:
- Purpose: Serves as an abstract base class for other tools.
- Core Methods:
get_functions(): Abstract method to list available functions.execute(function_name, **kwargs): Abstract method to execute a specified function with given arguments.
Description
Languages
Python
100%