跳转至

AIMage SDK

Python SDK for the AI-Mage platform.

Services

Service Module Status Description
Search aimage.search Active development Project data, materials, clip search, and agent-readable assets
Review aimage.review Planned Review workflows
Generation aimage.generation Planned Content generation workflows

Highlights

  • ORPC-only Search API client using POST /rpc/<procedure>.
  • Project, clip, character, reference image, resource, translation table, manga, and novel helpers.
  • Email login flow with optional TOTP challenge support.
  • Readable one-line str(model) output for common SDK objects.

Quick Example

from aimage import search

with search.client(token="your_token_here") as client:
    for project in client.projects():
        print(project)

        for clip in project.search(query="sunset"):
            print(clip)

Documentation