In ACES_LLMs we implement and explore OpenAI's Swarm.
The observations.txt file provides a detailed breakdown of:
- The structure of this repository.
- Core functionality of agents.
- Observations
Ensure you have OpenAI's Swarm installed on your system.
To begin, install the required Swarm library:
pip install openai_swarm
After installation, adjust the Swarm library settings to work with your preferred API or local language model:
-
Locate the Core File:
- Navigate to the
site-packagesdirectory of your Python installation. - Locate the
core.pyfile within theswarmmodule.
- Navigate to the
-
Modify the API Key or Local Model Settings:
- If using OpenAI's API:
- Add your OpenAI API key in the appropriate configuration section.
- If using a local LLM:
- Specify the port number associated with your local LLM application.
- If using OpenAI's API:
Follow the instructions in observations.txt.