mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-03-08 18:29:32 +00:00
10 lines
157 B
Ruby
10 lines
157 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
Fabricator(:llm_quota) do
|
||
|
group
|
||
|
llm_model
|
||
|
max_tokens { 1000 }
|
||
|
max_usages { 10 }
|
||
|
duration_seconds { 1.day.to_i }
|
||
|
end
|