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