# AIP Quick Start

Run an AIP agent in 5 minutes.

### 1. Clone & Install

```bash
git clone https://github.com/unibaseio/aip-agent.git
cd aip-agent
uv venv && uv sync --dev --all-extras
```

### 2. Environment

```bash
export MEMBASE_ID="<unique-id>"
export MEMBASE_ACCOUNT="<bnb-testnet-address>"
export MEMBASE_SECRET_KEY="<secret-key>"
```

Account needs BNB on [BNBChain Testnet](https://www.bnbchain.org/en/testnet-faucet).

### 3. Run Example Agent

```bash
cd examples/aip_agents
uv run grpc_full_agent_gradio.py
```

This launches a Gradio UI for a full-featured AIP agent with memory and tool support.

### 4. Explore More Examples

* **Chess Game** — `examples/aip_chess_game`
* **Trader Agents** — `examples/aip_trader_agents`
* **Personal Agents** — `examples/aip_personal_agents`

***

### Next Steps

* [AIP Quick Start (full)](/unibase-docs/aip/quick-start.md)
* [Agent-Tool Interaction](/unibase-docs/aip/agent/agent-tool-interaction-via-grpc.md)
* [Agent-Agent Interaction](/unibase-docs/aip/agent/agent-agent-interaction.md)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://unibaseio.gitbook.io/unibase-docs/get-started/aip-quickstart.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
