Type something to search...
IX Platform

IX Platform

IX Platform

975 112
03 May, 2024
  Python

What is iX ?

iX is an Autonomous GPT-4 Agent Platform

IX is a platform for designing and deploying autonomous and [semi]-autonomous LLM powered agents and workflows. IX provides a flexible and scalable solution for delegating tasks to AI powered agents. Agents created with the platform

can automate a wide variety of tasks, while running in parallel and communicating with each other.

Build AI powered workflows:

  • QA chat bots

  • Code generation

  • Data extraction

  • Data analysis

  • Data augmentation

  • Research assistants


iX Features

🧠 Models

  • OpenAI

  • Google PaLM (Experimental)

  • Anthropic (Experimental)

  • Llama (Experimental)

⚒️ No-code Agent Editor

No-code editor for creating and testing agents. The editor provides an interface to drop and connect nodes into a graph

representing the cognitive logic of an agent. Chat is embedded in the editor to allow for rapid testing and debugging.

https://github.com/kreneskyp/ix/assets/68635/f43923b9-7bce-4b64-b30e-3204eb1673e4

💬 Multi-Agent Chat interface

Create your own teams of agents and interact with them through a single interface. Chat room support multiple agents.

By default it includes the IX moderator agent, which delegates tasks to other agents. You can @mention specific

agents to complete the tasks.

https://github.com/kreneskyp/ix/assets/68635/d1418c23-afb5-4aed-91c7-bf99b1c165d5

💡 Smart Input

The smart input bar auto-completes agent @mentions and file & data {artifacts} created by tasks.

https://github.com/kreneskyp/ix/assets/68635/27cf7085-7349-4641-9327-d31a3041a94c

⚡ Message Queue Drive Agent Workers

The agent runner backend is dockerized and is triggered with a celery message queue. This allows the backend to scale

horizontally to support a fleet of agents running in parallel.

WorkerScalingTest_V3

⚙️ Component Config Layer

IX implements a component config layer that maps LangChain components to the configuration graph. The config layer

powers a number of other systems and features. For example, component field and connector definitions are used to

render nodes and forms dynamically in the no-code editor.


🛠️ Getting Started

Prerequisites
Windows Linux Subsystem (windows only)
    <li>Open powershell</li>
    <li>run `wsl --install` to install and/or activate WSL</li>
Docker

Install Docker Desktop for your OS:

https://www.docker.com/products/docker-desktop/

Detailed install instructions:

    <li><a href="https://docs.docker.com/desktop/install/mac-install/">Mac</a></li>
    <li><a href="https://docs.docker.com/desktop/install/windows-install/">Windows</a></li>
Python

Python 3.8 or higher is required for the CLI. The app python version is managed by the image.

Agent-IX CLI

The quickest way to start IX is with the agent-ix CLI. The CLI starts a preconfigured docker cluster with

docker-compose. It downloads the required images automatically and starts the app cluster.

Terminal window
pip install agent-ix
ix up

Scale agent workers with the scale command. Each worker will run agent processes in parallel. The limit to the number

of workers is based on available memory and CPU capacity.

Terminal window
ix scale 5

The client may start a specific version, including the unstable dev image built on master branch.

Terminal window
ix up --version dev

How does iX work

Basic Usage

You chat with an agent that uses that direction to investigate, plan, and complete tasks. The agents are

capable of searching the web, writing code, creating images, interacting with other APIs and services. If it can be

coded, it’s within the realm of possibility that an agent can be built to assist you.

  1. Setup the server and visit http://0.0.0.0:8000, a new chat will be created automatically with the default agents.

  2. Enter a request and the IX moderator will delegate the task to the agent best suited for the response. Or @mention

an agent to request a specific agent to complete the task.

  1. Customized agents may be added or removed from the chat as needed to process your tasks

Creating Custom Agents and Chains

IX provides the moderator agent IX, a coder agent, and other example agents. Custom agents

may be built using the chain editor or the python API.

Chain Editor

  1. Navigate to the chain editor

  2. Click on the root connector to open the component search

  3. Drag agents, chains, tools, and other components into the editor

  4. Connect the components to create a chain

  5. Open the test chat to try it out!

Python API

Chains python API docs


🧙 Development setup

1. Prerequisites

Before getting started, ensure you have the following software installed on your system:

Windows Linux Subsystem (windows only)
    <li>Open powershell</li>
    <li>run `wsl --install` to install and/or activate WSL</li>
Docker

Install Docker Desktop for your OS:

https://www.docker.com/products/docker-desktop/

Detailed install instructions:

    <li><a href="https://docs.docker.com/desktop/install/mac-install/">Mac</a></li>
    <li><a href="https://docs.docker.com/desktop/install/windows-install/">Windows</a></li>
Git & Make
    <li><b>Mac:</b> <code>brew install git make</code></li>
    <li><b>Linux:</b> <code>apt install git make</code></li>
    <li><b>Windows (WSL):</b> <code>apt install git make</code></li>

2. Clone the repository

git clone https://github.com/kreneskyp/ix.git
cd ix

3. Setup env

Setup config in .env

cp .env.template .env
OPENAI_API_KEY=YOUR_KEY_HERE

4. Build & Initialize the IX cluster.

The image will build automatically when needed in most cases. Set NO_IMAGE_BUILD=1 to skip rebuilding the image.

Use the image target to build and start the IX images. The dev_setup target will build the frontend and

initialize the database. See the developer tool section for more commands to manage the dev environment.

make dev_setup

5. Run the IX cluster

The IX cluster runs using docker-compose. It will start containers for the web server, app server, agent workers, database,

redis, and other supporting services.

make cluster

6. View logs

Web and app container logs

make server

Agent worker container logs

make worker

7. Open User Interface

Visit http://0.0.0.0:8000 to access the user interface. From there you may create and edit

agents and chains.

The platform will automatically spawn agent processes to complete tasks as needed.

Scaling workers

Adjust the number of active agent workers with the scale target. The default is 1 agent worker to handle tasks. There

is no hard limit on agents, but the number of workers is limited by available memory and CPU capacity.

make scale N=5

Developer Tools

Here are some helpful commands for developers to set up and manage the development environment:

Running:

  • make up / make cluster: Start the application in development mode at http://0.0.0.0:8000.

  • make server: watch logs for web and app containers.

  • make worker: watch logs for agent worker containers.

Building:

  • make image: Build the Docker image.

  • make frontend: Rebuild the front end (GraphQL, relay, webpack).

  • make webpack: Rebuild JavaScript only.

  • make webpack-watch: Rebuild JavaScript on file changes.

  • make dev_setup: Builds frontend and generates database.

  • make node_types_fixture: Builds database fixture for component type definitions.

Database

  • make migrate: Run Django database migrations.

  • make migrations: Generate new Django database migration files.

Utility

  • make bash: Open a bash shell in the Docker container.

  • make shell: Open a Django shell_plus session.

Agent Fixtures

Dump fixtures with the dump_agent django command. This command will gather and dump the agent and chain, including

the component graph.

Terminal window
make bash
./manage.py dump\_agent -a alias