Files
ragflow/conf/skill_infinity_mapping.json
Yingfeng 4ee0702aed Feat: add skills space to context engine (#13908)
### What problem does this PR solve?

issue #13714

### Type of change

- [x] New Feature (non-breaking change which adds functionality)
2026-04-30 12:36:03 +08:00

64 lines
1.2 KiB
JSON

{
"skill_id": {
"type": "varchar",
"default": "",
"index_type": "secondary"
},
"space_id": {
"type": "varchar",
"default": "",
"index_type": "secondary"
},
"folder_id": {
"type": "varchar",
"default": ""
},
"name": {
"type": "varchar",
"default": "",
"analyzer": [
"rag-coarse",
"rag-fine"
]
},
"tags": {
"type": "varchar",
"default": "",
"analyzer": [
"rag-coarse",
"rag-fine"
]
},
"description": {
"type": "varchar",
"default": "",
"analyzer": [
"rag-coarse",
"rag-fine"
]
},
"content": {
"type": "varchar",
"default": "",
"analyzer": [
"rag-coarse",
"rag-fine"
]
},
"version": {
"type": "varchar",
"default": "1.0.0"
},
"status": {
"type": "varchar",
"default": "1"
},
"create_time": {
"type": "bigint",
"default": 0
},
"update_time": {
"type": "bigint",
"default": 0
}
}