Agent-friendly Python facade over fal.ai for generating and managing AI media (images, video, audio).
Project description
falaw
Agent-friendly Python facade over fal.ai for generating and managing AI media (images, video, audio).
from falaw import generate_image, list_models, journal
r = generate_image("a tiger eye, macro, 35mm", quality="fast")
r.first.download(to="./tiger.png")
[m.id for m in list_models(category="video")]
journal.note("schnell at quality='fast' defaults to 1024x1024")
Why
fal-client already gives you 100+ models behind a uniform call. What
agents (and humans) still struggle with is which model to use, what
parameters it takes, and what to do with the URL it returns. falaw
adds:
- Task-level verbs (
generate_image,text_to_speech, ...) with smart model selection by quality tier. - A queryable model registry --- no more grepping docs for IDs.
Result/Assetobjects that download, name, and organize outputs.- A journal so each session leaves notes for the next one.
- A Claude skill, plus stub bridges for MCP and HTTP services --- all derived from the same tool registry.
Install
pip install -e .
export FAL_KEY="your-fal-api-key"
Core surface
| Function | Purpose |
|---|---|
generate_image(prompt, *, quality, image_size, model_id, extra) |
Text-to-image, picks FLUX by quality tier. |
text_to_speech(text, *, quality, voice, model_id, extra) |
TTS, picks a voice model by tier. |
list_models(*, category, quality_tier) |
Browse the catalog. |
pick_model(*, category, quality_tier) |
Pick a sensible default. |
call_fal(application, arguments) |
Escape hatch to any fal model. Auto-journals on error. |
journal.note / issue / improvement(...) |
Leave a trace for future sessions. |
Session(output_dir=...) |
Optional stateful controller. |
Architecture
Single source of truth: a ToolSpec dataclass per tool. From it we derive every external surface:
falaw.registry ──► bridges/skill.py ──► .claude/skills/falaw/SKILL.md
──► bridges/mcp.py ──► MCP server (planned)
──► bridges/service.py ──► qh HTTP service (planned)
──► (UI) (planned)
Adding a new surface is a new bridge module, never a re-implementation of the operations.
Self-improvement loop
Every session can read and write the agent journal at ~/.config/falaw/journal/. The Claude skill instructs Claude to:
- Read recent entries before novel work.
- Write a note / issue / improvement when something surprises it.
call_fal auto-journals failures with the application id and arguments, so the next session recognizes the trap.
Layout
falaw/
base.py ToolSpec, ModelRecord
core.py call_fal: subscribe + auto-journal
registry.py register_tool, list/get/pick model
results.py Asset, Result, parse_response
session.py Session
journal.py file-backed journal
operations/
images.py generate_image
audio.py text_to_speech
bridges/
skill.py render Claude SKILL.md from registry
mcp.py (stub)
service.py (stub)
data/
models.json seed catalog
skills/falaw/ generated skill files (shipped with package)
misc/
docs/ aggregated fal.ai docs (3MB md, llms.txt, llms-full.txt)
regenerate_skill.py
tests/
Regenerate the skill after adding a tool
python misc/regenerate_skill.py
Writes falaw/data/skills/falaw/SKILL.md and .claude/skills/falaw/SKILL.md.
Status
v0 --- functional core, real Claude skill, stubs for MCP and HTTP service. The bridges share the same registry, so filling in the stubs is additive.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file falaw-0.0.4.tar.gz.
File metadata
- Download URL: falaw-0.0.4.tar.gz
- Upload date:
- Size: 991.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
471836f97855bcbb5a744fe51cd69858e8916e077c7520fae86c54d9cd651ad5
|
|
| MD5 |
de096af851b10463975dec829535a452
|
|
| BLAKE2b-256 |
4e708cd4a94f401593163ba978f4bac6975357a0f6aa1f8d12b1470ecfe55b55
|
File details
Details for the file falaw-0.0.4-py3-none-any.whl.
File metadata
- Download URL: falaw-0.0.4-py3-none-any.whl
- Upload date:
- Size: 34.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.8 {"installer":{"name":"uv","version":"0.11.8","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
907683261c4dd4994877a1ddc1f5e2e05a998146173c037d4c06da9ea185fbd8
|
|
| MD5 |
856c6b8d971b79c3c219dafee219b857
|
|
| BLAKE2b-256 |
5848a81d230fd6b06a085f412510db3a86fe3849d10ef89c2b17dc50ecd82f6b
|