mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
ebf998acb6
Co-authored-by: Harrison Chase <hw.chase.17@gmail.com> Co-authored-by: Lance Martin <lance@langchain.dev> Co-authored-by: Jacob Lee <jacoblee93@gmail.com>
22 lines
648 B
Python
22 lines
648 B
Python
import os
|
|
from elasticsearch import Elasticsearch
|
|
|
|
es_host = os.environ["ELASTIC_SEARCH_SERVER"]
|
|
es_password = os.environ["ELASTIC_PASSWORD"]
|
|
|
|
db = Elasticsearch(
|
|
es_host,
|
|
http_auth=('elastic', es_password),
|
|
ca_certs='http_ca.crt' # Replace with your actual path
|
|
)
|
|
|
|
customers = [
|
|
{"firstname": "Jennifer", "lastname": "Walters"},
|
|
{"firstname": "Monica","lastname":"Rambeau"},
|
|
{"firstname": "Carol","lastname":"Danvers"},
|
|
{"firstname": "Wanda","lastname":"Maximoff"},
|
|
{"firstname": "Jennifer","lastname":"Takeda"},
|
|
]
|
|
for i, customer in enumerate(customers):
|
|
db.create(index="customers", document=customer, id=i)
|