Spaces:
Running
Running
File size: 1,122 Bytes
bbeba36 f1544ce bbeba36 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | {
"settings": {
"index": {
"number_of_shards": 1,
"number_of_replicas": 0,
"mapping.total_fields.limit": 2000,
"mapping.depth.limit": 50,
"mapping.nested_objects.limit": 50000,
"max_result_window": 500000,
"analysis": {
"analyzer": {
"my_bm25": {
"type": "custom",
"tokenizer": "standard",
"filter": ["lowercase"]
}
}
}
}
},
"mappings": {
"properties": {
"content": {
"type": "text",
"analyzer": "my_bm25"
},
"title": { "type": "keyword" },
"source": { "type": "keyword" },
"session_date": { "type": "keyword" },
"chunk_index": { "type": "integer" },
"embedding": {
"type": "dense_vector",
"dims": 1024,
"index": true,
"similarity": "cosine"
},
"hyde_embedding": {
"type": "dense_vector",
"dims": 1024,
"index": false
},
"summary_embedding": {
"type": "dense_vector",
"dims": 1024,
"index": false
}
}
}
}
|