Metadata-Version: 2.4
Name: bricqs
Version: 0.1.0
Summary: BRICQS CLI — deploy AI models to the cloud in seconds
Author-email: BRICQS <hello@bricqsai.com>
License: MIT
Project-URL: Homepage, https://bricqsai.com
Project-URL: Documentation, https://bricqsai.com/docs
Project-URL: Repository, https://github.com/bricqs/bricqs
Keywords: ai,deployment,llm,gpu,cloud,cli
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: typer>=0.12
Requires-Dist: rich>=13
Requires-Dist: httpx>=0.27
Requires-Dist: keyring>=24

# BRICQS CLI

Deploy AI models to the cloud in seconds.

```bash
pip install bricqs
bricqs login
bricqs deploy my-llama-api --model meta-llama/Llama-3-8B-Instruct
```

## Commands

| Command | Description |
|---------|-------------|
| `bricqs login` | Authenticate with your account |
| `bricqs models` | List available AI models |
| `bricqs deploy <name> --model <id>` | Deploy a model |
| `bricqs status` | Show all your deployments |
| `bricqs logs <id>` | Fetch deployment logs |
| `bricqs stop <id>` | Stop a deployment (scales to zero) |
| `bricqs delete <id>` | Permanently delete a deployment |

## Options

```bash
bricqs deploy my-api \
  --model meta-llama/Llama-3-8B-Instruct \
  --env preview \          # production | preview | development
  --min 0 \                # scale to zero when idle
  --max 2 \                # up to 2 replicas under load
  --no-wait                # return immediately without polling
```

## Environment variable

Set `BRICQS_API` to point at a self-hosted or staging API:

```bash
export BRICQS_API=https://your-api.example.com
```

## Quickstart

See [`examples/quickstart-llama3/`](../../examples/quickstart-llama3/) for a full working example.

## Links

- [Dashboard](https://bricqsai.com/deployments)
- [Documentation](https://bricqsai.com/docs)
- [Status page](https://bricqsai.com/status)
