Official Python library for the LandingAI Ade platform for computer vision model development and deployment. Version 1.12.0 supports Python >=3.9. The library is actively maintained with frequent updates.
pip install landingai-adeNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Initialize client with API key, load an image, and run prediction.
Migrate from `client.predict('/path/to/image.jpg')` to `image = Image.from_file('/path/to/image.jpg'); result = client.predict(image)`.Change imports from `from landingai.ade_client import AdeClient` to `from landingai import AdeClient`.
Set `ADE_API_KEY` in environment or pass `api_key` parameter to `AdeClient`.