from truefoundry import TrueFoundryclient = TrueFoundry( api_key="YOUR_API_KEY", base_url="https://yourhost.com/path/to/api",)client.list( fqn="value", prompt_id="value", ml_repo_id="value", name="value", version="value", offset=10, limit=10,)# 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.