-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Modularize extractors, classifiers #134
base: main
Are you sure you want to change the base?
Conversation
[puLL-Merge] - brave/cookiemonster@134 DescriptionThis PR introduces significant changes to the cookie consent detection system, including new extractors and classifiers, improved test cases, and development enhancements. The changes aim to improve the accuracy and flexibility of cookie consent notice detection. ChangesChanges
sequenceDiagram
participant User
participant API
participant Extractors
participant Classifiers
participant LLM
participant Browser
User->>API: Request page check
API->>Browser: Load page
Browser->>API: Page loaded
API->>Extractors: Extract potential elements
Extractors->>API: Candidate elements
loop For each candidate element
API->>Classifiers: Classify element
Classifiers->>LLM: LLM classification
LLM->>Classifiers: LLM result
Classifiers->>API: Classification results
end
API->>User: Return detection results
Possible Issues
Security Hotspots
|
No description provided.