kreneskyp/ix
Fork: 121 Star: 1008 (更新于 2024-11-06 02:15:58)
license: MIT
Language: Python .
Autonomous GPT-4 agent platform
最后发布版本: v0.19.1 ( 2024-02-09 01:24:17)
iX - Autonomous GPT-4 Agent Platform
Amidst the swirling sands of the cosmos, Ix stands as an enigmatic jewel,
where the brilliance of human ingenuity dances on the edge of forbidden
knowledge, casting a shadow of intrigue over the galaxy.
- Atreides Scribe, The Chronicles of Ixian Innovation
🌌 About
Build AI powered workflows:
- QA chat bots
- Code generation
- Data extraction
- Data analysis
- Data augmentation
- Research assistants
Key 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.
⚙️ 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)
- Open powershell
- run `wsl --install` to install and/or activate WSL
Docker
Install Docker Desktop for your OS:https://www.docker.com/products/docker-desktop/
Detailed install instructions:
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.
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.
ix scale 5
The client may start a specific version, including the unstable dev
image built on master
branch.
ix up --version dev
How does it 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.
-
Setup the server and visit http://0.0.0.0:8000, a new chat will be created automatically with the default agents.
-
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. -
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
- Navigate to the chain editor
- Click on the root connector to open the component search
- Drag agents, chains, tools, and other components into the editor
- Connect the components to create a chain
- 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)
- Open powershell
- run `wsl --install` to install and/or activate WSL
Docker
Install Docker Desktop for your OS:https://www.docker.com/products/docker-desktop/
Detailed install instructions:
Git & Make
- Mac:
brew install git make
- Linux:
apt install git make
- Windows (WSL):
apt install git make
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.
-
make bash
-
./manage.py dump_agent -a alias
最近版本更新:(数据更新于 2024-10-05 00:16:06)
2024-02-09 01:24:17 v0.19.1
2024-02-04 03:01:12 v0.18.2
2024-02-04 01:55:19 v0.18.1
2024-02-03 23:56:06 v0.18.0
2024-01-28 07:12:59 v0.17.0
2024-01-24 05:14:38 v0.16.1
2024-01-23 00:54:33 v0.16.0
2024-01-22 11:57:10 v0.16.0.rc1
2024-01-16 03:35:38 v0.15.1
2024-01-08 02:44:53 v0.15.0
主题(topics):
ai, gpt-4, openai, python
kreneskyp/ix同语言 Python最近更新仓库
2024-11-05 16:16:26 Guovin/TV
2024-11-05 15:03:24 Cinnamon/kotaemon
2024-11-05 11:00:51 home-assistant/core
2024-11-04 23:11:11 DS4SD/docling
2024-11-04 10:56:18 open-compass/opencompass
2024-11-04 08:51:21 yt-dlp/yt-dlp