fastagency

(★ 547)

The fastest way to bring multi-agent workflows to production.

File Explorer

  • .codespell-whitelist.txt
  • .gitattributes
  • .gitignore
  • .pre-commit-config.yaml
  • .secrets.baseline
  • .semgrepignore
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • LICENSE
  • package-lock.json
  • package.json
  • playwright.coverage.config.ts
  • playwright.gunicorn.config.ts
  • playwright.llm-sans.config.ts
  • playwright.llm.config.ts
  • pyproject.toml
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

gunicorn

View Details ▼

Python WSGI HTTP Server.

gunicorn {{import.path:app_object}}

Run Python web app:

gunicorn {{[-b|--bind]}} localhost:8080 {{import.path:app_object}}

Listen on port 8080 on localhost:

gunicorn --reload {{import.path:app_object}}

Turn on live reload:

🔍

pip install

View Details ▼

Install Python packages.

pip install {{package1 package2 ...}}

Install one or more packages:

pip install {{package1 package2 ...}} {{[-U|--upgrade]}}

Upgrade all specified packages to the latest version, installing any that are not already present:

pip install {{package}}=={{version}}

Install a specific version of a package:

🔍

pytest

View Details ▼

Run Python tests.

pytest {{path/to/test_file1.py path/to/test_file2.py ...}}

Run tests from specific files:

pytest -k {{expression}}

Run tests with names matching a specific [k]eyword expression:

pytest {{[-x|--exitfirst]}}

Exit as soon as a test fails or encounters an error:

🔍

waitress-serve

View Details ▼

Pure Python WSGI HTTP Server.

waitress-serve {{import.path:wsgi_func}}

Run a Python web app:

waitress-serve --listen={{localhost}}:{{8080}} {{import.path:wsgi_func}}

Listen on port 8080 on localhost:

waitress-serve --unix-socket={{path/to/socket}} {{import.path:wsgi_func}}

Start waitress on a Unix socket:

// repository documentation