Start building awesome documentation in under 5 minutes
1. Installation: How to install SuperAgentX on your system.
2. Create an Application: Set up a new SuperAgentX project with the basic structure.
3. Virtual Environment Setup: How to create and configure a Python virtual environment for your project.
4. Building a Use Case: Customizing the pipe.py file to fit your application’s needs.
5. Run the Application: Finally, how to execute your new project with a simple command.
superagentx-cli
will be available in the path ~/.local/bin
on linux
. You may need to add
this to your environment’s path variable.Cli
superagentx
project, run the following command in your terminal. This will prompt you to create
project with the basic structure set up for your superagentx
.
superagentx-cli
create a application like a below structure.
/home/ben/Content Creator/content_creator/pipe.py
.
The path in this file will be generated based on the input you provide through the SuperAgentX application. In that
file you can do your changes.
get_content_creator_pipe
initializes a content creation pipeline by configuring an LLM
(Large Language Model) client using OpenAI’s API, for more detail about LLMClient
refer here.
memory
functionality in the pipeline by configuring a Memory
object that created llm_client
for storing and retrieving, for more detail about Memory
refer here.
Engine
object for the handlers
, combining it with the llm_client
and prompt_template
to process tasks with the specified handler and prompt structure, for more details refer here.
Agent
with the role and goal to generate a list of URLs, and configuring it with the llm_client
,
prompt_template
, and engine
to perform, for more details about engine
refer here.
Verbose
wspipe.py
and restpipe.py
. Even with your custom implementation.
Valid options are 1
, True
, true
and TRUE