pc.list_all_llms
pc.list_all_llms()
This method lists all of your deployments, including pending and failed, in Predibase.
Parameters:
None
Returns:
A list of all your LLM deployments in Predibase, represented by their configurations.
Example Usage:
List an existing LLM.
pc.list_all_llms()
# [
# {
# 'id': 2025,
# 'name': 'llama-2-13b',
# 'modelName': 'meta-llama/Llama-2-13b',
# 'deploymentStatus': 'active',
# ...
# },
# {...},
# ...
# ]