可以跑了 准备做系统

This commit is contained in:
CakeCN
2024-12-28 17:11:24 +08:00
parent f3791850b0
commit 1280a978f5
24 changed files with 2053 additions and 324 deletions

View File

@@ -0,0 +1,21 @@
{
"course_id": "CS101",
"course_name": "Computer Science 101",
"course_img_path": "images/cs101.png",
"lessons": [
{
"lesson_id": "L001",
"lesson_name": "Introduction to Computer Science",
"markdown": "This is the introduction lesson.",
"markdown_prompt": "What is Computer Science?",
"score_prompt": "Please provide an overview of CS."
},
{
"lesson_id": "L002",
"lesson_name": "Data Structures",
"markdown": "In this lesson, we cover Data Structures.",
"markdown_prompt": "What is an array?",
"score_prompt": "Explain how linked lists work."
}
]
}

View File

@@ -0,0 +1,57 @@
{
"user_id": "user123",
"select_course": ["algorithm", "data-structure"],
"head_icon": "/static/image/book_cover.jpg",
"course_process_dict": {
"algorithm": {
"course_process": {
"lesson_processs": [
{
"lesson_process": [
{
"chapter_info": {
"dialog": ["This is chapter 1 dialog"],
"score": 85,
"is_rebuttal": true,
"rebuttal_score": 90
}
},
{
"chapter_info": {
"dialog": ["This is chapter 2 dialog"],
"score": 75,
"is_rebuttal": false,
"rebuttal_score": 0
}
}
]
}
],
"course_put_in_date": "2024-01-01",
"course_last_study_date": "2024-12-25",
"course_total_study_time": 120
}
},
"data-structure": {
"course_process": {
"lesson_processs": [
{
"lesson_process": [
{
"chapter_info": {
"dialog": ["This is course2 chapter 1 dialog"],
"score": 88,
"is_rebuttal": false,
"rebuttal_score": 0
}
}
]
}
],
"course_put_in_date": "2024-01-01",
"course_last_study_date": "2024-12-25",
"course_total_study_time": 90
}
}
}
}

View File

@@ -0,0 +1,7 @@
{
"user123": "password123",
"user456": "password456",
"user789": "password789",
"cake": "12138ckC"
}