LogoLogo
  • Welcome
    • About SwiftNet
    • Architecture
    • Quick Start Guide
    • Tokenomics
  • Implementation
    • Agent Ecosystem
    • Security
    • Configuration
    • Technical Reference
  • Future Development
Powered by GitBook
On this page
  • Prerequisites
  • Installation Steps
  • Running Examples
Export as PDF
  1. Welcome

Quick Start Guide

Complete guide to getting started with SwiftNet

PreviousArchitectureNextTokenomics

Last updated 4 months ago


Prerequisites


Installation Steps

  • Clone Repository

git clone https://github.com/wibi16/swiftnet2.git
cd swiftnet/python
  • Using UV package installer (recommended)

uv sync --all-extras
source .venv/bin/activate  # For Unix
.venv\Scripts\activate     # For Windows
  • Install from source

cd packages/swiftnet
pip install -e .
  • Install Playwright

playwright install --with-deps chromium


Running Examples

  • Standard setup

python examples/example.py --logs_dir ./logs
  • With human oversight

python examples/example.py --logs_dir ./logs --hil_mode
  • With screenshot saving

python examples/example.py --logs_dir ./logs --save_screenshots

Docker