Type stubs and IDE support
Type stubs and IDE autocomplete for the Stratix Python SDK.
What works out of the box
How types are exposed
from layerlens import Stratix
client = Stratix()
result = client.evaluations.wait_for_completion(eval_id)
# IDE knows result is EvaluationResult and offers.accuracy,.pass_rate,.rows,...Strict mypy
mypy --strict your_code_using_layerlens.pyAsync types
See also
Last updated
Was this helpful?