<%= t(".title") %>

<%= t(".description") %>

<%= styled_form_with model: Setting.new, url: settings_hosting_path, method: :patch, data: { controller: "auto-submit-form", "auto-submit-form-trigger-event-value": "blur" } do |form| %> <%= form.text_field :synth_api_key, label: t(".label"), type: "password", placeholder: t(".placeholder"), value: Setting.synth_api_key, container_class: @synth_usage.present? && !@synth_usage.success? ? "border-red-500" : "", data: { "auto-submit-form-target": "auto" } %> <% end %> <% if @synth_usage.present? && @synth_usage.success? %>

<%= t(".api_calls_used", used: number_with_delimiter(@synth_usage.used), limit: number_with_delimiter(@synth_usage.limit), percentage: number_to_percentage(@synth_usage.utilization, precision: 1)) %>

<%= t(".plan", plan: @synth_usage.plan) %>

<% end %>