Files
aitbc/docs/apps/clients/1_quick-start.md
aitbc c3f1d66c40
Some checks failed
Cross-Node Transaction Testing / transaction-test (push) Successful in 2s
Deploy to Testnet / deploy-testnet (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
Documentation Validation / validate-docs (push) Failing after 9s
Documentation Validation / validate-policies-strict (push) Successful in 3s
docs: update port 8000 references to 8011 in apps/clients docs
- Update apps/clients/1_quick-start.md: coordinator URL 8000 → 8011
- Update apps/clients/3_job-lifecycle.md: API endpoints 8000 → 8011
- More documentation files still need port 8000 → 8011 updates
2026-05-08 21:44:50 +02:00

1.5 KiB

Client Quick Start

5 minutes — Install, configure, submit your first job with the enhanced AITBC CLI.

1. Install & Configure

pip install -e .                                        # from monorepo root
aitbc config set coordinator_url http://localhost:8011
export AITBC_API_KEY=your-key

# Verify installation
aitbc --version
aitbc --debug

2. Create Wallet

aitbc wallet create --name my-wallet
aitbc wallet balance

Save your seed phrase securely.

3. Submit a Job

# Enhanced job submission with more options
aitbc client submit \
  --prompt "Summarize this document" \
  --input data.txt \
  --model gpt2 \
  --priority normal \
  --timeout 3600

4. Track & Download

# Enhanced job tracking
aitbc client status --job-id <JOB_ID>
aitbc client list --status submitted
aitbc client download --job-id <JOB_ID> --output ./results

# Monitor job progress
aitbc monitor dashboard

5. Advanced Features

# Batch job submission
aitbc client batch-submit --jobs-file jobs.json

# Job management
aitbc client list --status completed
aitbc client cancel --job-id <JOB_ID>

# Configuration management
aitbc config show
aitbc config profiles create production

Next