mirror of
https://github.com/discourse/discourse.git
synced 2026-08-06 13:08:40 +08:00
9 lines
157 B
Ruby
Vendored
9 lines
157 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
Fabricator(:llm_quota) do
|
|
group
|
|
llm_model
|
|
max_tokens { 1000 }
|
|
max_usages { 10 }
|
|
duration_seconds { 1.day.to_i }
|
|
end
|