caretech-owl / gerd

Generating and evaluating relevant documentation (GERD)
https://towardsdatascience.com/running-llama-2-on-cpu-inference-for-document-q-a-3d636037a3d8
MIT License
4 stars 0 forks source link

[UC]: GEN: Generate a document from user input #19

Closed Ashtonville closed 2 months ago

Ashtonville commented 12 months ago

Summary

Generate a document from user input. A user can select from a drop-down menu the type of document that he wants to be generated. Based on his choice, the form structure and necessary data fields will change. The model will use these data fields to generate the desired document.

Rationale

Give the user the choice to generate alternate documents based on their workfield.

Level

user goal

Actors

User

Preconditions

Postconditions

Basic Flow

  1. User starts the application
  2. User selects document template out of drop-down menu at the top of the frontent
  3. User fills out form for letter of dismissal
  4. User submits the form by pressing a button at the end of the form
  5. Document is generated by the model and displayed in an editable text area underneath

Alternative Paths

3.1 User fills out form for development report

  1. User edits the generated document inside the text area for rewording by adding or removing text 6.1 User submits the edited document by pressing a button

Visualisation

flowchart LR;
  1-->2
  2-- LOD selected -->3
  2-- DR selected -->3.1
  3-->4
  3.1-->4
  4-->5
  5-->6
  6-->6.1
  6.1 --> 5

Other related issues, use cases, features

No response