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() volumes = client.beta.jig.storage.volumes.list() print(volumes)
{ "data": [ { "content": { "files": [ { "last_modified": "<string>", "name": "<string>", "size": 123 } ], "source_prefix": "models/", "type": "files" }, "created_at": "<string>", "current_version": 123, "id": "<string>", "mounted_by": [ "<string>" ], "name": "<string>", "object": "<string>", "type": "readOnly", "updated_at": "<string>", "version_history": {} } ], "object": "<unknown>" }
Retrieve all volumes in your project
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
List of volumes
Data is the array of volume items
Show child attributes
The object type, which is always list.
list
Was this page helpful?