File size: 846 Bytes
6edfd36
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

## Reqxtract 

The general use flow for the project is as follows

```mermaid

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
```