forked from shaneholloman/mcp-knowledge-graph
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathexample.jsonl
More file actions
6 lines (6 loc) · 795 Bytes
/
example.jsonl
File metadata and controls
6 lines (6 loc) · 795 Bytes
1
2
3
4
5
6
{"type":"entity","data":{"name":"Alice_Smith","entityType":"person","observations":["Works as a software engineer","Lives in San Francisco","Speaks Mandarin fluently"]}}
{"type":"entity","data":{"name":"ML_Project_X","entityType":"project","observations":["Started in 2023","Focus on natural language processing","Currently in development phase"]}}
{"type":"entity","data":{"name":"TechCorp","entityType":"organization","observations":["Founded in 2010","Specializes in AI development","Headquartered in San Francisco"]}}
{"type":"relation","data":{"from":"Alice_Smith","to":"ML_Project_X","relationType":"leads"}}
{"type":"relation","data":{"from":"Alice_Smith","to":"TechCorp","relationType":"works_at"}}
{"type":"relation","data":{"from":"TechCorp","to":"ML_Project_X","relationType":"owns"}