Ask Anything
Try the working interactive assistant with sample questions
Your assistant is ready
With the interactive loop wired up, you can ask questions without restarting the program. The docs/ folder has three files loaded — try these:
Ask about the platform:
You: What courses are available?
Assistant: According to the documentation, the current published courses are:
- Learn Python from Scratch (Beginner, 12 hours)
- Build APIs with Python (Intermediate, 22 hours)
- Build AI Apps with Python (Intermediate, 6 hours)Ask about the API:
You: How does authentication work?
Assistant: The platform uses Supabase magic-link authentication. Users receive
a login email with a one-time link. Sessions are managed by Supabase and
refreshed via Next.js middleware. No passwords are stored.Ask what files are available:
You: What files do you have?
Assistant: I have access to these files: api-reference.md,
python-course-notes.md, readme.mdIn Lesson 3, you will add conversation history so follow-up questions work correctly.