feat: rag

This commit is contained in:
heyong.fu
2026-05-06 11:35:10 +08:00
commit a17c65c4bc
75 changed files with 5196 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
姓名,年龄,城市,爱好,数学成绩,英语成绩,物理成绩
张三,18,北京,编程,95,88,90
李四,20,上海,篮球,87,92,85
王五,19,广州,音乐,78,85,80
赵六,21,深圳,绘画,90,89,88
1 姓名 年龄 城市 爱好 数学成绩 英语成绩 物理成绩
2 张三 18 北京 编程 95 88 90
3 李四 20 上海 篮球 87 92 85
4 王五 19 广州 音乐 78 85 80
5 赵六 21 深圳 绘画 90 89 88
Binary file not shown.
+14
View File
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
example html
</body>
</html>
+5
View File
@@ -0,0 +1,5 @@
{
"name": "example",
"age": 18,
"city": "Beijing"
}
+1
View File
@@ -0,0 +1 @@
markdown example
Binary file not shown.
Binary file not shown.
+1
View File
@@ -0,0 +1 @@
text example
Binary file not shown.
+12
View File
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<person>
<name>张三</name>
<age>18</age>
<city>北京</city>
<hobby>编程</hobby>
<score>
<math>95</math>
<english>88</english>
<physics>90</physics>
</score>
</person>