//Write a single document.PUT /book-index/_doc/1{"id": "1001","category": "Fiction","price":10,"title_text": "One Hundred Years of Solitude","title_vector": [0.1, 0.2, 0.3 ...],"content_text": "The rise and fall of the town of Macondo and the legendary stories of the Buendía family","content_vector": [0.5, 0.6, 0.7, ... ]}//Perform bulk write.POST /_bulk{ "index": { "_index": "book-index", "_id": "2" } }{ "id": "1002", "category": "History", "price": 20, "title_text": "Sapiens: A Brief History of Humankind", "title_vector": [0.1, 0.2, 0.3 ...], "content_text": "The developmental history of humanity from the Cognitive Revolution to the Scientific Revolution", "content_vector": [0.1, 0.2, 0.3, ...]}{ "index": { "_index": "book-index", "_id": "3" } }{ "id": "1003", "category": "Science Fiction", "price": 30, "title_text": "The Three-Body Problem", "title_vector": [0.8, 0.7, 0.6 ...], "content_text": "Human civilization and the laws of cosmic sociology", "content_vector": [0.1, 0.2, 0.3, ...]}
PUT /_ingest/pipeline/text-embedding{"description": "Text embedding pipeline","processors": [{"inference": {"model_id": "bge-base-zh","ignore_missing": true, // Ignore missing input fields."input_output": [{"input_field": "title_text","output_field": "title_vector"},{"input_field": "content_text","output_field": "content_vector"}]}}]}
//Write a single document.PUT /book-index/_doc/1?pipeline=text-embedding{"id": "1001","category": "Fiction","price":10,"title_text": "One Hundred Years of Solitude","content_text": "The rise and fall of the town of Macondo and the legendary stories of the Buendía family"}//Perform bulk write.POST /_bulk?pipeline=text-embedding{ "index": { "_index": "book-index", "_id": "2" } }{ "id": "1002", "category": "History", "price": 20, "title_text": "Sapiens: A Brief History of Humankind", "content_text": "The developmental history of humanity from the Cognitive Revolution to the Scientific Revolution"}{ "index": { "_index": "book-index", "_id": "3" } }{ "id": "1003", "category": "Science Fiction", "price": 30, "title_text": "The Three-Body Problem", "content_text": "Human civilization and the laws of cosmic sociology"}
フィードバック