DeepTutor: Lifelong Personalized Tutoring with AI Agents
This repository profile is provided by osrepos.com, an open source repository discovery platform.

Summary
DeepTutor is an advanced AI-powered platform designed for lifelong personalized tutoring, integrating various learning modes into a single, extensible system. It leverages large language models and multi-agent systems to offer features like interactive chat, quiz generation, and skill development. This project provides a comprehensive environment for learners and educators seeking intelligent, adaptive educational tools.
Repository Information
Topics
Click on any tag to explore related repositories
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introduction
DeepTutor, developed by HKUDS, is an innovative open-source project focused on providing lifelong personalized tutoring through advanced AI agents. With over 32,741 stars and 4,274 forks on GitHub, it has quickly gained recognition in the AI and education communities. Written primarily in Python, DeepTutor offers a comprehensive learning workspace that seamlessly connects tutoring, problem-solving, quiz generation, research, visualization, and mastery practice. It's designed to be an extensible system where context moves with the learner across different capabilities, making the learning experience highly adaptive and personalized.
Installation
Getting started with DeepTutor is straightforward, with several installation options available. The recommended path for a full local web application and CLI is via PyPI. Ensure you have Python 3.11-3.13 and Node.js 20+ installed.
Here's how to install DeepTutor using PyPI:
mkdir -p my-deeptutor && cd my-deeptutor
pip install -U deeptutor
deeptutor init # prompts for ports + LLM provider + optional embedding
deeptutor start # starts backend + frontend; keep the terminal open
After running deeptutor start, open the frontend URL printed in your terminal, typically http://127.0.0.1:3782. For detailed instructions on other installation methods, including source, Docker, or CLI-only, please refer to the official DeepTutor documentation.
Examples
DeepTutor offers both a rich web interface and a powerful command-line interface (CLI) for interacting with its capabilities.
Web Interface Highlights:
The web application provides a comprehensive suite of tools, including:
- Chat: An agent loop for natural conversations, tool calls, and knowledge grounding.
- Partners: Persistent AI companions with their own memory, library, and channels.
- My Agents: Connect and consult live coding CLIs or import past conversations.
- Co-Writer: A Markdown workspace for drafting reports and notes with AI-assisted editing.
- Book: Create interactive "living books" from your materials with typed blocks and page-specific chat.
- Knowledge Center: Multi-engine RAG libraries for document collections.
- Learning Space: Manage skills, personas, notebooks, and question banks.
- Memory: An inspectable, three-layer system for personalized learning.
CLI Examples:
The CLI allows direct interaction with DeepTutor's core functionalities:
# Interactive chat REPL
deeptutor chat
# Run a specific capability, e.g., deep solve
deeptutor run deep_solve "Solve x^2 = 4" --tool rag --kb my-kb
# Create a new knowledge base
deeptutor kb create my-kb --doc textbook.pdf
# Show current memory
deeptutor memory show
# List installed skills
deeptutor skill list
These examples demonstrate the flexibility and power of DeepTutor, whether you prefer a graphical interface or command-line control.
Why Use DeepTutor
DeepTutor stands out as a robust platform for personalized learning due to several key advantages:
- Unified Learning Environment: All capabilities, from chat to quizzes and research, operate on a single agent loop. This means seamless transitions between objectives and consistent context for the learner, eliminating the need to switch between isolated tools.
- Comprehensive Context Management: Knowledge bases, books, drafts, notebooks, and personas are interconnected and available across all workflows. This integrated approach ensures that all learning resources contribute to a cohesive and effective educational experience.
- Advanced Agent Capabilities: DeepTutor supports subagents and partners, allowing users to consult live coding CLIs (like Claude Code or Gemini) or persistent AI companions. This multi-agent architecture enhances problem-solving and interactive learning.
- Flexible Knowledge Retrieval: It offers multi-engine RAG (Retrieval Augmented Generation) libraries, supporting various retrieval engines like LlamaIndex, PageIndex, GraphRAG, and linked Obsidian vaults. This flexibility ensures efficient and accurate information retrieval from diverse document collections.
- Extensible and Community-Driven: With built-in tools, CLI apps, and installable community skills from EduHub, DeepTutor is highly extensible. Its open-source nature encourages community contributions and continuous improvement.
- Transparent and Inspectable Memory: DeepTutor's three-layer memory system (L1 traces, L2 curated facts, L3 synthesis) is file-backed and inspectable. This transparency allows users to understand, curate, and audit their personalized learning profile, ensuring accountability and control.
DeepTutor offers a powerful, flexible, and transparent solution for anyone looking to create or engage with intelligent, personalized learning experiences.
Links
- GitHub Repository: https://github.com/HKUDS/DeepTutor
- Official Documentation: https://deeptutor.info/
- License: Apache-2.0
- Community Discord: https://discord.gg/eRsjPgMU4t
- EduHub (Skills Community): https://eduhub.deeptutor.info/
Related repositories
Similar repositories that may be relevant next.

Memori: Agent-Native Memory Infrastructure for LLM Production Systems
August 6, 2026
Memori provides agent-native memory infrastructure, offering an LLM-agnostic layer that transforms agent execution and conversations into structured, persistent state. Designed for enterprise use, it seamlessly integrates with existing data infrastructure and supports various deployment environments, ensuring robust memory management for AI agents.

copilot.vim: GitHub Copilot Integration for Vim and Neovim
July 21, 2026
copilot.vim is a powerful plugin that brings GitHub Copilot, an AI pair programmer, directly into your Vim and Neovim environments. It helps developers write code faster and smarter by turning natural language prompts into coding suggestions. This integration allows users to leverage AI-powered code completion within their preferred text editors.

Colibri: Run 744B GLM-5.2 MoE on Consumer Machines with Pure C
July 11, 2026
Colibri is an innovative project that enables running the massive 744B-parameter GLM-5.2 Mixture-of-Experts (MoE) model on consumer-grade machines with as little as 25GB of RAM. It achieves this remarkable feat through a pure C engine with zero dependencies, streaming model experts from disk on demand. This allows users to interact with a frontier-class LLM without requiring expensive GPU hardware.

Lamini: The Official Python Client for Generative AI API
July 6, 2026
Lamini is the official Python client and SDK designed to interact with the Lamini API, enabling developers to create their own Generative AI applications. It provides a straightforward interface for integrating powerful AI capabilities into Python projects. This package simplifies the process of building and deploying generative AI solutions.
Source repository
Open the original repository on GitHub.