mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-10 09:06:19 +00:00
This pull request introduces several changes to implement and manage usage limits for the Captain AI service. The key changes include adding configuration for plan limits, updating error messages, modifying controllers and models to handle usage limits, and updating tests to ensure the new functionality works correctly. ## Implementation Checklist - [x] Ability to configure captain limits per check - [x] Update response for `usage_limits` to include captain limits - [x] Methods to increment or reset captain responses limits in the `limits` column for the `Account` model - [x] Check documents limit using a count query - [x] Ensure Captain hand-off if a limit is reached - [x] Ensure limits are enforced for Copilot Chat - [x] Ensure limits are reset when stripe webhook comes in - [x] Increment usage for FAQ generation and Contact notes - [x] Ensure documents limit is enforced These changes ensure that the Captain AI service operates within the defined usage limits for different subscription plans, providing appropriate error messages and handling when limits are exceeded.
61 lines
1.6 KiB
Ruby
61 lines
1.6 KiB
Ruby
class Api::V1::Accounts::Captain::DocumentsController < Api::V1::Accounts::BaseController
|
|
before_action :current_account
|
|
before_action -> { check_authorization(Captain::Assistant) }
|
|
|
|
before_action :set_current_page, only: [:index]
|
|
before_action :set_documents, except: [:create]
|
|
before_action :set_document, only: [:show, :destroy]
|
|
before_action :set_assistant, only: [:create]
|
|
RESULTS_PER_PAGE = 25
|
|
|
|
def index
|
|
base_query = @documents
|
|
base_query = base_query.where(assistant_id: permitted_params[:assistant_id]) if permitted_params[:assistant_id].present?
|
|
|
|
@documents_count = base_query.count
|
|
@documents = base_query.page(@current_page).per(RESULTS_PER_PAGE)
|
|
end
|
|
|
|
def show; end
|
|
|
|
def create
|
|
return render_could_not_create_error('Missing Assistant') if @assistant.nil?
|
|
|
|
@document = @assistant.documents.build(document_params)
|
|
@document.save!
|
|
rescue Captain::Document::LimitExceededError => e
|
|
render_could_not_create_error(e.message)
|
|
end
|
|
|
|
def destroy
|
|
@document.destroy
|
|
head :no_content
|
|
end
|
|
|
|
private
|
|
|
|
def set_documents
|
|
@documents = Current.account.captain_documents.includes(:assistant).ordered
|
|
end
|
|
|
|
def set_document
|
|
@document = @documents.find(permitted_params[:id])
|
|
end
|
|
|
|
def set_assistant
|
|
@assistant = Current.account.captain_assistants.find_by(id: document_params[:assistant_id])
|
|
end
|
|
|
|
def set_current_page
|
|
@current_page = permitted_params[:page] || 1
|
|
end
|
|
|
|
def permitted_params
|
|
params.permit(:assistant_id, :page, :id, :account_id)
|
|
end
|
|
|
|
def document_params
|
|
params.require(:document).permit(:name, :external_link, :assistant_id)
|
|
end
|
|
end
|