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
+9
View File
@@ -0,0 +1,9 @@
class Message {
constructor(data) {
this.data = data;
}
}
const msg = new Message({ o: "000" });
console.log(msg.data.o);