10 lines
288 B
Ruby
10 lines
288 B
Ruby
|
|
class Captain::Llm::UpdateEmbeddingJob < ApplicationJob
|
||
|
|
queue_as :low
|
||
|
|
|
||
|
|
def perform(record, content)
|
||
|
|
account_id = record.account_id
|
||
|
|
embedding = Captain::Llm::EmbeddingService.new(account_id: account_id).get_embedding(content)
|
||
|
|
record.update!(embedding: embedding)
|
||
|
|
end
|
||
|
|
end
|