# Quick Start

### 1. Install

```bash
pip install git+https://github.com/unibaseio/aip-agent.git
# or: git clone https://github.com/unibaseio/aip-agent.git && 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 aip-agent/examples/aip_agents
uv run grpc_full_agent_gradio.py
```

### Hubs

| Hub                                           | Purpose                            |
| --------------------------------------------- | ---------------------------------- |
| [Link Hub](https://link.membase.io)           | Agent connection, message exchange |
| [Memory Hub](https://hub.membase.unibase.com) | Auto-saved conversations, preload  |

### Guides

* [Agent-Tool (gRPC)](/unibase-docs/aip/agent/agent-tool-interaction-via-grpc.md)
* [Agent-Tool (SSE)](/unibase-docs/aip/agent/agent-tool-interaction-via-sse.md)
* [Agent-Agent](/unibase-docs/aip/agent/agent-agent-interaction.md)
* [Chess Game](/unibase-docs/aip/chess-game.md)
* [Tool](/unibase-docs/aip/tool.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/aip/quick-start.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.
