feat(apps/isgrace): isGrace — Hy3 驱动的 AI 学习搭子(Issue #4 参赛作品)#124
Open
KarlLeen wants to merge 2 commits into
Open
feat(apps/isgrace): isGrace — Hy3 驱动的 AI 学习搭子(Issue #4 参赛作品)#124KarlLeen wants to merge 2 commits into
KarlLeen wants to merge 2 commits into
Conversation
…ent-Hunyuan#4 submission) isGrace turns any uploaded textbook (or a syllabus + exam guide, for course mode) into a structured, self-paced course: a high-school-level pass, a college-level pass, a generated cheatsheet, and an auto-graded quiz — every piece of content required to come from the uploaded material, never the model's background knowledge. Every call is made to Tencent Hunyuan Hy3 via OpenRouter API — no training, fine-tuning, or local inference. Hy3's role: course/module structuring, verbatim chapter-boundary anchor extraction, two-level grounded explanation, cheatsheet + quiz generation, and rubric-based grading of free-response answers. Full detail in apps/isgrace/README_CN.md (中文) and apps/isgrace/README.md (English). Live demo: https://isgrace.limlamleen.com Source: https://github.com/KarlLeen/hy3Isgrace Contact: limlamleen@gmail.com
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
isGrace — 把教材变成一门课,由 Hy3 全程驱动
Powered by Tencent-Hunyuan/Hy3(仅通过 OpenRouter API 调用,符合 issue 要求,绝无微调 / 本地推理)。
在线体验:https://isgrace.limlamleen.com
代码仓库:https://github.com/KarlLeen/hy3Isgrace
联系方式:limlamleen@gmail.com
它解决什么
用 AI 复习最容易踩的坑:Context 满了会悄悄压缩、忘掉教材内容;通用聊天工具不适合做题(要另开备忘录记答案,写代码体验也差);免费额度用完要等几个小时,还担心账号被锁。isGrace 把教材(或课程大纲 + 考纲)导进去,让 Hy3 先用大白话讲一遍、确认听懂了再讲一遍学术深度版本,生成一份可以脱离教材复习的 cheatsheet,最后只基于教材内容出题考你、批改并给出理由。
Hy3 在系统中的角色
全部收敛在
server/services/llmService.ts一处:选择 Hy3 的具体原因、以及围绕它的 reasoning effort 调优、262K 上下文窗口的实际运用,详见
apps/isgrace/README_CN.md。已验证的技术亮点
针对真实的大部头教材(实测一本 47MB / 约 255 万字符的数据库教材)做过端到端验证并修复:
目录结构
验证
tsc --noEmit(前端 + 后端)与eslint全通过🤖 Generated with Claude Code