pc.list_deployed_llms
pc.list_deployed_llms()
This method lists all of your ready deployments in Predibase. If a deployment is still pending it will not be shown.
Parameters:
None
Returns:
A list of your ready LLM deployments in Predibase, represented by their configurations.
Example Usage:
List a currently deployed LLM (e.g. from the previous page).
pc.list_deployed_llms()
# [
# {
# 'id': 2025,
# 'name': 'llama-2-13b',
# 'modelName': 'meta-llama/Llama-2-13b',
# 'deploymentStatus': 'active',
# ...
# },
# {...},
# ...
# ]