Skip to main content

Introduction

Build and deploy production-ready agentic AI solutions with minimal code.

What is aiXplain?

aiXplain is a platform designed to streamline the development and deployment of multi-agent systems and pipelines. Here’s what it offers:

  • Discover thousands of LLMs, AI models, utilities, and tools with a single API key on a pay-as-you-go (PAYG) payment.
  • Create agents with built-in reasoning, memory, and plug-and-play tools.
  • Build team agents (multi-agent systems) to tackle complex problems with embedded guardrails.
  • Design agentic solutions with deterministic workflows using pipelines.
  • Use FineTune, Benchmark, and Index services to tailor and ground your solutions.
  • Publish agents and pipelines as APIs with one click and integrate them into any application.

Quick Start

Install aiXplain in one line of code—no setup, dependencies, or environment configuration required. Start building your AI agent with just five lines of code.

Deploy an AI agent

Step 1: Create an access key.

Step 2: Install the aiXplain SDK.

Step 3: Copy the code snippet to build and deploy an agent.

Next: Build a multi-agent system.

Start building!
pip install aixplain
## Create an Agent
import os
os.environ["AIXPLAIN_API_KEY"] = "<ACCESS_KEY>"

from aixplain.factories import AgentFactory
from aixplain.modules.agent import ModelTool

agent = AgentFactory.create(
name="Google Search agent",
description="You are an agent that uses Google Search to answer queries.",
tools=[
# Google Search
ModelTool(model="65c51c556eb563350f6e1bb1"),
],
)
agent_response = agent.run("What's an AI agent?")