<%= t(".env_configured_message") %>
<% else %><%= t(".description") %>
<% end %><%= t(".json_mode_help") %>
<%= t(".budget_description") %>
<%= form.number_field :llm_context_window, label: t(".context_window_label"), placeholder: "2048", value: Setting.llm_context_window, min: 256, disabled: ENV["LLM_CONTEXT_WINDOW"].present?, data: { "auto-submit-form-target": "auto" } %><%= t(".context_window_help") %>
<%= form.number_field :llm_max_response_tokens, label: t(".max_response_tokens_label"), placeholder: "512", value: Setting.llm_max_response_tokens, min: 64, disabled: ENV["LLM_MAX_RESPONSE_TOKENS"].present?, data: { "auto-submit-form-target": "auto" } %><%= t(".max_response_tokens_help") %>
<%= form.number_field :llm_max_items_per_call, label: t(".max_items_per_call_label"), placeholder: "25", value: Setting.llm_max_items_per_call, min: 1, disabled: ENV["LLM_MAX_ITEMS_PER_CALL"].present?, data: { "auto-submit-form-target": "auto" } %><%= t(".max_items_per_call_help") %>