Manual Upload Guide – Hustler Subscription

Already paying for an AI subscription? Or maybe you’d prefer to use a free one? Either way, we’ve got you covered.
Tutorial Video Coming Soon
  1. Start by uploading your study material to your chosen AI tool and ask it to generate the content you need.

    Before prompting your AI, review the “Rules to Keep in Mind” section below. This ensures your flashcards, mock exams, or smart notes contain all the necessary details for the next step.

  2. Next, ask your AI to format the generated content according to one of the templates provided below.

    Be sure to provide both the JSON template and the “Rules to Keep in Mind” for best results.

  3. Save the generated JSON object as a .json, .txt, or .docx (Word) file, then upload it in any tool that supports Manual Upload.

Flashcards

Rules to keep in mind

  • Start your JSON object with a key called `flashcards`.
  • Include at least one flashcard in the list.
  • Each flashcard must have a `question` (text).
  • Each flashcard must have an `answer` (text).
Example (ready to import)
{
  "flashcards": [
    {
      "question": "What is the capital of France?",
      "answer": "Paris"
    },
    {
      "question": "Which planet is known as the Red Planet?",
      "answer": "Mars"
    }
  ]
}