Module: Legion::LLM::API::Namespaces::OpenAI::VectorStores::FileBatches

Extended by:
Legion::Logging::Helper, Sinatra::Extension
Defined in:
lib/legion/llm/api/namespaces/openai/vector_stores/file_batches.rb

Constant Summary collapse

SYNC_BATCH_LIMIT =
20

Instance Method Summary collapse

Instance Method Details

#fetch_file_content(file_id) ⇒ Object



225
226
227
228
229
230
231
232
233
234
# File 'lib/legion/llm/api/namespaces/openai/vector_stores/file_batches.rb', line 225

def fetch_file_content(file_id)
  return nil unless Legion::LLM::VectorStore::Storage.data_available?
  return nil unless Legion::LLM::VectorStore::Storage.db.table_exists?(:llm_files)

  Legion::LLM::VectorStore::Storage.db[:llm_files].where(id: file_id).first&.dig(:content)
rescue StandardError => e
  handle_exception(e, level: :warn, handled: true,
                   operation: "llm.api.vector_stores.batches.fetch_content.#{file_id}")
  nil
end

#format_batch(row) ⇒ Object



254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
# File 'lib/legion/llm/api/namespaces/openai/vector_stores/file_batches.rb', line 254

def format_batch(row)
  return nil unless row

  counts = Legion::JSON.load(row[:file_counts_json] || '{}')
  counts = { in_progress: 0, completed: 0, failed: 0, cancelled: 0, total: 0 }.merge(counts)

  {
    id:              row[:id],
    object:          'vector_store.file_batch',
    vector_store_id: row[:vector_store_id],
    status:          row[:status].to_s,
    file_counts:     counts,
    created_at:      row[:created_at].to_i
  }
end

#format_vsf(row) ⇒ Object



270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
# File 'lib/legion/llm/api/namespaces/openai/vector_stores/file_batches.rb', line 270

def format_vsf(row)
  return nil unless row

  {
    id:                row[:id],
    object:            'vector_store.file',
    vector_store_id:   row[:vector_store_id],
    file_id:           row[:file_id],
    status:            row[:status].to_s,
    usage_bytes:       row[:usage_bytes].to_i,
    created_at:        row[:created_at].to_i,
    chunking_strategy: Legion::JSON.load(row[:chunking_strategy_json] || '{"type":"auto"}'),
    last_error:        row[:last_error_json] ? Legion::JSON.load(row[:last_error_json]) : nil,
    attributes:        Legion::JSON.load(row[:attributes_json] || '{}')
  }
end

#process_batch_files(_batch_id, store_id, file_ids, chunking_strategy) ⇒ Object



182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
# File 'lib/legion/llm/api/namespaces/openai/vector_stores/file_batches.rb', line 182

def process_batch_files(_batch_id, store_id, file_ids, chunking_strategy)
  counts = { in_progress: 0, completed: 0, failed: 0, cancelled: 0, total: file_ids.size }
  chunking_json = chunking_strategy.is_a?(Hash) ? Legion::JSON.dump(chunking_strategy) : '{"type":"auto"}'
  ts = Legion::LLM::VectorStore::Storage.now_ts

  file_ids.each do |file_id|
    vsf_id  = Legion::LLM::VectorStore::Storage.generate_id('vsf')
    status  = 'in_progress'
    usage   = 0

    content_text = fetch_file_content(file_id)

    if content_text
      chunks        = Legion::LLM::VectorStore::Storage.chunk_text(content_text)
      embed_results = Legion::LLM::Call::Embeddings.generate_batch(texts: chunks, task: :document)
      store_chunks(vsf_id, store_id, file_id, chunks, embed_results)
      status = 'completed'
      usage  = content_text.bytesize
      counts[:completed] += 1
    else
      counts[:in_progress] += 1
    end

    Legion::LLM::VectorStore::Storage.db[:llm_vector_store_files].insert(
      id:                     vsf_id,
      vector_store_id:        store_id,
      file_id:                file_id,
      status:                 status,
      usage_bytes:            usage,
      chunking_strategy_json: chunking_json,
      attributes_json:        '{}',
      last_error_json:        nil,
      created_at:             ts
    )
  rescue StandardError => e
    handle_exception(e, level: :warn, handled: true,
                     operation: "llm.api.vector_stores.batches.process_file.#{file_id}")
    counts[:failed] += 1
  end

  counts
end

#store_chunks(vsf_id, store_id, file_id, chunks, embed_results) ⇒ Object



236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
# File 'lib/legion/llm/api/namespaces/openai/vector_stores/file_batches.rb', line 236

def store_chunks(vsf_id, store_id, file_id, chunks, embed_results)
  ts = Legion::LLM::VectorStore::Storage.now_ts
  chunks.each_with_index do |chunk, index|
    result = embed_results[index] || {}
    vec    = result[:vector]
    Legion::LLM::VectorStore::Storage.db[:llm_vector_store_chunks].insert(
      id:                   Legion::LLM::VectorStore::Storage.generate_id('vsc'),
      vector_store_id:      store_id,
      vector_store_file_id: vsf_id,
      file_id:              file_id,
      chunk_index:          index,
      text:                 chunk,
      embedding_json:       vec ? Legion::JSON.dump(vec) : nil,
      created_at:           ts
    )
  end
end