mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-03-08 18:29:32 +00:00
12 lines
220 B
Ruby
12 lines
220 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
Fabricator(:llm_quota_usage) do
|
||
|
user
|
||
|
llm_quota
|
||
|
input_tokens_used { 0 }
|
||
|
output_tokens_used { 0 }
|
||
|
usages { 0 }
|
||
|
started_at { Time.current }
|
||
|
reset_at { Time.current + 1.day }
|
||
|
end
|