from together import Together
client = Together()
volumes = client.beta.jig.storage.volumes.list()
print(volumes){
"data": [
{
"content": {
"source_prefix": "models/",
"type": "files"
},
"created_at": "<string>",
"id": "<string>",
"name": "<string>",
"object": "<unknown>",
"type": "readOnly",
"updated_at": "<string>"
}
],
"object": "<unknown>"
}Retrieve all volumes in your project
from together import Together
client = Together()
volumes = client.beta.jig.storage.volumes.list()
print(volumes){
"data": [
{
"content": {
"source_prefix": "models/",
"type": "files"
},
"created_at": "<string>",
"id": "<string>",
"name": "<string>",
"object": "<unknown>",
"type": "readOnly",
"updated_at": "<string>"
}
],
"object": "<unknown>"
}Was this page helpful?