client.usage_limits.get_llm
A method of the Usage Limits endpoint.
- get_llm(id: int) Response
Get a LLM Usage Limit
API URL:
GET /usage_limits/llm/{id}import civis client = civis.APIClient() response = client.usage_limits.get_llm(...)
- Parameters:
- idint
The ID for the limit.
- Returns:
civis.Response- idint
The ID for the limit.
- organization_idint
The ID of the organization to which this limit belongs.
- created_atstr (time)
The time this limit was created.
- updated_atstr (time)
The time the limit was last updated.
- hard_limitint
The limit value. One of 1000, 10000, 50000, and 100000.