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() secrets = client.beta.jig.secrets.list() print(secrets)
{ "data": [ { "created_at": "<string>", "created_by": "<string>", "description": "<string>", "id": "<string>", "last_updated_by": "<string>", "name": "<string>", "object": "<unknown>", "updated_at": "<string>" } ], "object": "<unknown>" }
Retrieve all secrets in your project
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
List of secrets
Data is the array of secret items
Show child attributes
The object type, which is always list.
list
Was this page helpful?