client.usage_limits.list_llm

A method of the Usage Limits endpoint.

list_llm(*, organization_id: int = None) ListResponse

List LLM Usage Limits

API URL: GET /usage_limits/llm

import civis
client = civis.APIClient()
response = client.usage_limits.list_llm(...)
Parameters:
organization_idint, optional

If specified, return limits for this organization only.

Returns:
civis.ListResponse
  • 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.