Project Description

This project will create a simple chat-bot for tutoring children for school. Lessons will be pre-configured by feeding in a document and requesting the material be taught to a child in consideration of the child's age, etc.

Goal for this Hackweek

Create an interface to have student/teacher logins, where a teacher can configure a lesson for the day. A configured lesson is simply providing initial prompts to the chat-bot.

Resources

https://github.com/dmulder/TinyTutor

Looking for hackers with the skills:

ai python3

This project is part of:

Hack Week 23

Activity

  • almost 2 years ago: dfaggioli liked this project.
  • almost 2 years ago: dmulder removed keyword education from this project.
  • almost 2 years ago: dmulder started this project.
  • almost 2 years ago: dmulder added keyword "python3" to this project.
  • almost 2 years ago: dmulder added keyword "ai" to this project.
  • almost 2 years ago: dmulder added keyword "education" to this project.
  • almost 2 years ago: dmulder originated this project.

  • Comments

    • dmulder
      almost 2 years ago by dmulder | Reply

      Here is the first video produced by tinytutor: https://youtu.be/4SNXoWxYolU which I generated from the parsed input from https://en.wikipedia.org/wiki/Engineering. The images generated by openai are pretty rough, but good enough to keep kids entertained.

    • dmulder
      almost 2 years ago by dmulder | Reply

      Initially I was going to use Alpaca for the text generation, but was encountering some problems. I've decided to simply use the openai api for the time being, and I'll integrate free models at a later time.

    • dmulder
      almost 2 years ago by dmulder | Reply

      Here is another video generated today. Worked out a lot of bugs in the process: https://youtu.be/jOImm8P8O4I This one is based on https://en.wikipedia.org/wiki/Architecture.

    • dmulder
      almost 2 years ago by dmulder | Reply

      Managed to complete a partial web interface, with authentication and the beginnings of video generation, etc. Will continue next hackweek. I did complete a simple command line tool.

    Similar Projects

    Flaky Tests AI Finder for Uyuni and MLM Test Suites by oscar-barrios

    Description

    Our current Grafana dashboards provide a great overview of test suite health, including a panel for "Top failed tests." However, identifying which of these failures are due to legitimate bugs versus intermittent "flaky tests" is a manual, time-consuming process. These flaky tests erode trust in our test suites and slow down development.

    This project aims to build a simple but powerful Python script that automates flaky test detection. The script will directly query our Prometheus instance for the historical data of each failed test, using the jenkins_build_test_case_failure_age metric. It will then format this data and send it to the Gemini API with a carefully crafted prompt, asking it to identify which tests show a flaky pattern.

    The final output will be a clean JSON list of the most probable flaky tests, which can then be used to populate a new "Top Flaky Tests" panel in our existing Grafana test suite dashboard.

    Goals

    By the end of Hack Week, we aim to have a single, working Python script that:

    1. Connects to Prometheus and executes a query to fetch detailed test failure history.
    2. Processes the raw data into a format suitable for the Gemini API.
    3. Successfully calls the Gemini API with the data and a clear prompt.
    4. Parses the AI's response to extract a simple list of flaky tests.
    5. Saves the list to a JSON file that can be displayed in Grafana.
    6. New panel in our Dashboard listing the Flaky tests

    Resources