Reqxtract-v2 / doc /doc.md
Lucas ARRIESSE
Implement user insights
6edfd36
|
raw
history blame
846 Bytes

Reqxtract

The general use flow for the project is as follows


graph LR
    RetrievingStep("Selecting pCRs from 3GPP meetings")
    ExtractionStep("Extracting requirements from selected pCRs (server-side)")
    GroupingStep("Group requirements together using a LLM (server-side)")
    BootstrapSolutions("Boostrap solutions solving groups of requirements using a LLM (server-side)")
    AssessAndRefineSolution("Assess idea for patentability against a virtual patent committee, and refine the idea iteratively (client-side).")
    FindRelevantReqs("Find the requirements that are relevant to a given user idea / query")

    RetrievingStep --> ExtractionStep
    ExtractionStep --> FindRelevantReqs
    ExtractionStep --> GroupingStep
    GroupingStep --> BootstrapSolutions
    BootstrapSolutions --> AssessAndRefineSolution