Overview
Studley AI offers public access to study material generators. You can create quizzes, flashcards, study guides, and more without signing up or logging in. Generated content is stored locally in your browser.Available Tools
Access 12 study tools from the navigation dropdown:Content Generators
- Quiz Generator - Create custom multiple-choice quizzes
- Flashcard Generator - Generate flip-card study sets
- Study Guide - Create comprehensive study materials
- Notes Generator - Convert content to organized notes
- Writing Generator - Generate writing prompts
- Worksheet Generator - Create practice worksheets
- Fill in the Blank - Generate fill-in-the-blank exercises
Grading Tools
- Essay Grader - Get AI feedback on essays
- Paper Grader - Grade academic papers
Utility Tools
- Citation Generator - Generate proper citations
- GPA Calculator - Calculate your GPA
- Pomodoro Timer - Focus timer for studying
Accessing Public Tools
Open Tools Menu
- Desktop: Hover over “Tools” in the navigation bar to reveal the dropdown
- Mobile: Tap the menu icon and expand the “Tools” submenu
Using Generators Without Authentication
Quiz Generator
Add Content (Optional)
Paste or type any reference material, notes, or textbook content to help the AI generate better questions.
Generate Quiz
Click “Generate Quiz”. The system:
- Sends your topic to the Groq AI API (
mixtral-8x7b-32768model) - Generates questions with options, correct answers, and explanations
- Returns structured JSON data
Saved to Browser
The quiz is automatically saved to localStorage with:
- Unique ID (generated via
Math.random().toString(36)) - Topic name
- Array of questions
- Creation timestamp
Flashcard Generator
Generate Flashcards
Click “Generate Flashcards”. The AI creates:
- Multiple flashcards with front and back content
- Organized by topic
- Returned as JSON
Client-Side Storage
How It Works
Public tools use browser localStorage for persistence:Data Structures
QuizData:Storage Functions
Saving:saveQuiz(quiz)- Saves quiz and returns QuizData with IDsaveFlashcard(flashcard)- Saves flashcard set with IDsaveStudyGuide(guide)- Saves study guide with ID
getQuizzes()- Returns all saved quizzesgetQuiz(id)- Returns specific quiz by IDgetFlashcards()- Returns all flashcard setsgetFlashcard(id)- Returns specific set
deleteQuiz(id)- Removes quiz from storagedeleteFlashcard(id)- Removes flashcard setdeleteStudyGuide(id)- Removes study guide
Storage Lifespan
Content stored in localStorage persists until:
- You clear your browser data
- You manually delete the items
- Browser storage quota is exceeded
Per-Device Storage
- Each device has separate localStorage
- Content does not sync between devices
- Desktop and mobile have different storage
Migrating to Account
To save your localStorage content permanently:AI Generation
Groq API Integration
Public tools use Groq AI for generation:- Model:
mixtral-8x7b-32768 - API Key: Stored in
GROQ_API_KEYenvironment variable - Rate Limiting: Applied per IP address
Quiz Generation Endpoint
API Route:/api/generate-quiz
Flashcard Generation Endpoint
API Route:/api/generate-flashcards
Viewing Generated Content
Quiz Interface
- Route:
/quiz/[quizId] - Features:
- Progress tracking (question 1 of 10)
- Multiple choice selection
- Answer validation
- Explanations after each answer
- Final results with score
Flashcard Interface
- Route:
/flashcards/[flashcardId] - Features:
- Card flipping animation
- Progress counter
- Next/previous navigation
- Shuffle option
Sharing Generated Content
Current Sharing Method
Share the URL of your generated content:- Complete generation to get the unique ID
- Copy the URL (e.g.,
/quiz/abc123def) - Share the URL with others
- They can access the same content if it’s in their localStorage
URL sharing only works if the recipient has the same content in their localStorage. True sharing requires an account and will be added in future updates.
Creating an Account for Permanent Storage
Benefits of Creating an Account
- Cloud Storage: Access from any device
- Permanent: Content never expires
- Organization: Folders and favorites
- Search: Find content quickly
- Sharing: Share with others (coming soon)
- History: Track usage and progress
Starting Balance
New accounts receive:- 5,000 free credits to start
- Use credits to generate study materials
- See Credit System guide for details
Navigation Integration
Desktop Navigation
The Tools dropdown in the main navigation:Mobile Navigation
Mobile menu with collapsible Tools submenu:- Tap menu icon to expand
- Tap “Tools” to show submenu
- Tap any tool to navigate
Limitations of Public Tools
Storage Limits
- Browser localStorage has size limits (typically 5-10MB)
- Very large study guides may not fit
- Can’t exceed browser quota
No Sync
- Content doesn’t sync between devices
- Clearing browser data deletes everything
- No backup or recovery
No Collaboration
- Can’t share with other users
- No collaborative editing
- No comments or feedback
No Analytics
- Can’t track study progress
- No usage statistics
- No performance insights
Troubleshooting
Generated content disappeared?
- Check if you cleared browser data
- Look in the correct browser (Chrome vs Firefox)
- Verify you’re on the same device
Generation fails?
- Check internet connection
- Try a simpler topic
- Reduce content length
- Wait and try again (rate limiting)
Can’t access saved quiz?
- Verify the URL is correct
- Check localStorage in browser DevTools
- Try regenerating the content
Storage quota exceeded?
- Delete old quizzes/flashcards
- Clear unnecessary localStorage data
- Create an account for cloud storage