Open
Conversation
- Add to_pascal_case() to enforce PascalCase on entity type names (e.g. 'university_student' -> 'UniversityStudent') - Add to_screaming_snake_case() to enforce SCREAMING_SNAKE_CASE on edge/relationship type names (e.g. 'WorksFor' -> 'WORKS_FOR') - Enforce PascalCase on edge source_targets source/target references to match their corresponding entity type names - Fix Zep API 400 errors: entity names require PascalCase, edge names require SCREAMING_SNAKE_CASE per Zep Cloud validation rules - Remove stale peer flags in frontend/package-lock.json
…g task states to/from a JSON file on disk with atomic writes.
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.
概述
本 PR 包含以下改进:
修改详情
后端 (Backend)
report_agent.py中改进了ReportManager.assemble_full_report方法,新增了包含 ID、模拟场景和时间戳的正式页眉。前端 (Frontend)
Step4Report.vue的报告页眉部分新增了“导出 MD”按钮。src/api/report.js中实现了downloadReportAPI。