Python API
Last updated
Last updated
Initialize a client based on the specified environment.
Arguments:
env
- Name of the environment to use.
Returns:
Cortex client that can be used to deploy and manage APIs in the specified environment.
Create a new environment to connect to an existing Cortex Cluster, and initialize a client to deploy and manage APIs on that cluster.
Arguments:
name
- Name of the environment to create.
operator_endpoint
- The endpoint for the operator of your Cortex Cluster. You can get this endpoint by running the CLI command cortex cluster info
for an AWS provider or cortex cluster-gcp info
for a GCP provider.
Returns:
Cortex client that can be used to deploy and manage APIs on a Cortex Cluster.
List all environments configured on this machine.
Delete an environment configured on this machine.
Arguments:
name
- Name of the environment to delete.
Deploy an API.
Arguments:
predictor
- A Cortex Predictor class implementation. Not required for TaskAPI/TrafficSplitter kinds.
task
- A callable class/function implementation. Not required for RealtimeAPI/BatchAPI/TrafficSplitter kinds.
requirements
- A list of PyPI dependencies that will be installed before the predictor class implementation is invoked.
conda_packages
- A list of Conda dependencies that will be installed before the predictor class implementation is invoked.
project_dir
- Path to a python project.
force
- Override any in-progress api updates.
wait
- Streams logs until the APIs are ready.
Returns:
Deployment status, API specification, and endpoint for each API.
Get information about an API.
Arguments:
api_name
- Name of the API.
Returns:
Information about the API, including the API specification, endpoint, status, and metrics (if applicable).
List all APIs in the environment.
Returns:
List of APIs, including information such as the API specification, endpoint, status, and metrics (if applicable).
Get information about a submitted job.
Arguments:
api_name
- Name of the Batch/Task API.
job_id
- Job ID.
Returns:
Information about the job, including the job status, worker status, and job progress.
Restart all of the replicas for a Realtime API without downtime.
Arguments:
api_name
- Name of the API to refresh.
force
- Override an already in-progress API update.
Update the api specification for an API that has already been deployed.
Arguments:
api_spec
- The new api specification to apply
force
- Override an already in-progress API update.
Delete an API.
Arguments:
api_name
- Name of the API to delete.
keep_cache
- Whether to retain the cached data for this API.
Stop a running job.
Arguments:
api_name
- Name of the Batch/Task API.
job_id
- ID of the Job to stop.
Stream the logs of an API.
Arguments:
api_name
- Name of the API.
Stream the logs of a Job.
Arguments:
api_name
- Name of the Batch API.
job_id
- Job ID.
api_spec
- A dictionary defining a single Cortex API. See for schema.