Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Python
from together import Together client = Together() deployments = client.beta.jig.list() print(deployments)
{ "data": [ { "args": [ "<string>" ], "autoscaling": { "metric": "HTTPTotalRequests", "target": 100, "time_interval_minutes": 10 }, "command": [ "<string>" ], "cpu": 123, "created_at": "2023-11-07T05:31:56Z", "description": "<string>", "desired_replicas": 123, "environment_variables": [ { "name": "<string>", "value": "<string>", "value_from_secret": "<string>" } ], "gpu_count": 123, "health_check_path": "<string>", "id": "<string>", "image": "<string>", "max_replicas": 123, "memory": 123, "min_replicas": 123, "name": "<string>", "object": "<unknown>", "port": 123, "ready_replicas": 123, "replica_events": {}, "storage": 123, "termination_grace_period_seconds": 123, "updated_at": "2023-11-07T05:31:56Z", "volumes": [ { "mount_path": "<string>", "name": "<string>", "version": 123 } ] } ], "object": "<unknown>" }
Get a list of all deployments in your project
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
List of deployments
Data is the array of deployment items
Show child attributes
The object type, which is always list.
list
Was this page helpful?