Skip to content
This repository was archived by the owner on Jul 22, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion lib/inference/cloudflare_workers_ai.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,12 @@ def perform!(content)
"Authorization" => "Bearer #{api_token}",
}

payload = { text: [content] }

endpoint = "https://api.cloudflare.com/client/v4/accounts/#{account_id}/ai/run/@cf/#{model}"

conn = Faraday.new { |f| f.adapter FinalDestination::FaradayAdapter }
response = conn.post(endpoint, content.to_json, headers)
response = conn.post(endpoint, payload.to_json, headers)

case response.status
when 200
Expand Down
65 changes: 65 additions & 0 deletions spec/lib/inference/cloudflare_workers_ai_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# frozen_string_literal: true

require "rails_helper"
require "webmock/rspec"

RSpec.describe DiscourseAi::Inference::CloudflareWorkersAi do
subject { described_class.new(account_id, api_token, model) }

let(:account_id) { "test_account_id" }
let(:api_token) { "test_api_token" }
let(:model) { "test_model" }
let(:content) { "test content" }
let(:endpoint) do
"https://api.cloudflare.com/client/v4/accounts/#{account_id}/ai/run/@cf/#{model}"
end
let(:headers) do
{
"Referer" => Discourse.base_url,
"Content-Type" => "application/json",
"Authorization" => "Bearer #{api_token}",
}
end
let(:payload) { { text: [content] }.to_json }

before do
stub_request(:post, endpoint).with(body: payload, headers: headers).to_return(
status: response_status,
body: response_body,
)
end

describe "#perform!" do
context "when the response status is 200" do
let(:response_status) { 200 }
let(:response_body) { { result: { data: ["embedding_result"] } }.to_json }

it "returns the embedding result" do
result = subject.perform!(content)
expect(result).to eq("embedding_result")
end
end

context "when the response status is 429" do
let(:response_status) { 429 }
let(:response_body) { "" }

it "doesn't raises a Net::HTTPBadResponse error" do
expect { subject.perform!(content) }.not_to raise_error
end
end

context "when the response status is not 200 or 429" do
let(:response_status) { 500 }
let(:response_body) { "Internal Server Error" }

it "raises a Net::HTTPBadResponse error" do
allow(Rails.logger).to receive(:warn)
expect { subject.perform!(content) }.to raise_error(Net::HTTPBadResponse)
expect(Rails.logger).to have_received(:warn).with(
"Cloudflare Workers AI Embeddings failed with status: #{response_status} body: #{response_body}",
)
end
end
end
end
Loading