-
Set up a virtual environment (optional but recommended):
- Create a new directory for your project.
- Open a terminal or command prompt and navigate to the project directory.
- Create a virtual environment using the following command:
python3 -m venv myenv
- Activate the virtual environment:
- On macOS and Linux:
source myenv/bin/activate
- On Windows:
myenv\Scripts\activate
- On macOS and Linux:
-
Install all the required dependencies:
- While inside the virtual environment, install the requirements using pip:
pip install -r requirements.txt
- While inside the virtual environment, install the requirements using pip:
Add the following env variables in order to use the postgres database locally
OPEN_AI_API_KEY
/bin/python3 /${your-path}/openai-examples/src/main.py
Take a look at the following ROLES examples:
/${your-path}/resources/openai/assistant/roles
Take a look at the following FUNCTIONS (skills) examples:
/${your-path}/resources/openai/assistant/functions
Take a look at the following examples:
Using Microsoft autogen to orquestrate and Agent conversation
/${your-path}/openai-examples/src/research-agents-main/README.md