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
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>"
}Was this page helpful?