mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-19 05:35: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
|