from truefoundry import TrueFoundryclient = TrueFoundry( api_key="YOUR_API_KEY", base_url="https://yourhost.com/path/to/api",)client.list( fqn="value", model_id="value", ml_repo_id="value", name="value", version="value", run_ids="value", run_steps="value", offset=10, limit=10, include_internal_metadata="value",)# Iterate through resultsfor item in response: print(item.name)# Or paginate page by pagefor page in response.iter_pages(): for item in page: print(item.name)
Was this page helpful?
Assistant
Responses are generated using AI and may contain mistakes.