Registry / ai-ml / landingai-ade

landingai-ade

JSON →
library1.12.0pypypi✓ verified 80d ago

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-ade
INSTALL
IMPORT
SIG · LANDINGAI-ADE
L
landingai-ade
ai-mlpythonv1.12.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Client
from landingai_ade import Client
from landingai import AdeClient
AsyncClient
from landingai_ade import AsyncClient
AsyncLandingAIADE
from landingai_ade import AsyncLandingAIADE

Initialize client with API key, load an image, and run prediction.

import os from landingai import AdeClient, Image client = AdeClient(api_key=os.environ.get('ADE_API_KEY', '')) image = Image.from_url('https://example.com/image.jpg') result = client.predict(image) print(result)
Debug
Known issues
breakingAs of v1.10, the `predict` method no longer accepts raw file paths; use `Image.from_file()` or `Image.from_url()`.
fix
Migrate from `client.predict('/path/to/image.jpg')` to `image = Image.from_file('/path/to/image.jpg'); result = client.predict(image)`.
affects: >=1.10
deprecatedThe `landingai.ade_client` module is deprecated in favor of `landingai.AdeClient`.
fix
Change imports from `from landingai.ade_client import AdeClient` to `from landingai import AdeClient`.
affects: >=1.9
gotchaAPI key must be set as environment variable `ADE_API_KEY` or passed directly; missing key causes authentication error.
fix
Set `ADE_API_KEY` in environment or pass `api_key` parameter to `AdeClient`.
affects: all
Upgrade
Version history
1.12.0latest on PyPI · released Apr 23, 2026
Audit
Dependencies
requestsrequiredHTTP client for API calls
python-dotenvoptionalEnvironment variable loading for API keys
Agent activity
12 hits · last 30 days
node
10
Amazon
1
Resources
landingai-ade — pip install landingai-ade · libregistry