question_cli

Crates.ioquestion_cli
lib.rsquestion_cli
version0.2.4
sourcesrc
created_at2024-07-26 21:28:20.050246
updated_at2024-08-05 18:50:29.425973
descriptionInternal research tool for question classification and/or answering.
homepage
repositoryhttps://github.com/jay-joshy/question_cli
max_upload_size
id1316780
size49,950
(jay-joshy)

documentation

README

README

Purpose

Quick internal command line tool to both classify and/or answer questions.

Requirements

You require a .json file with questions formatted as such:

[
  {
    "question": "Infection with X drug makes you more likely to have infection from the following?",
    "options": [
      "Histoplasma",
      "Escherichia coli",
      "Listeria monocytogenes",
      "HIV",
      "Streptococcus spp."
    ],
    "answer": "HIV"
  },
  {
    "question": "A 43-year-old woman ...  Which one of the following tests is most likely to be diagnostic in this case?",
    "options": [
      "CXR",
      "CBC",
      "ALT",
      "CT Chest",
      "ANA"
    ],
    "answer": "ANA"
  }
]

How to use

Open your command line and run the tool using the format below. For Windows, this is the "Command Prompt" or "PowerShell" app; for MacOS/Linux it is the "Terminal".

question_cli <classify or answer> <path_to_json>

Example:

question_cli answer /home/josh/Documents/question_cli/questions.json

Once running the tool, instructions are provided on how to navigate through each question. In brief, type y or n to classify questions as higher or lower order. If answering, simply type the option #. Navigate through questions with your arrow keys.

A progress bar is at the bottom of the screen to indicate how many questions are left to classify/answer. If text is looking like its being cut off, please either increase the size of the terminal or reduce the text size (ie. Ctrl-).

Enjoy!

Commit count: 0

cargo fmt