How can I connect to langchain using elasticsearch as vectorb?

I followed like a code like this:

import elasticsearch
from langchain_elasticsearch import ElasticsearchStore
es_client= elasticsearch.Elasticsearch(
    hosts=["https://ip:host"],
    es_user="elastic",
    es_password="changeme"
    max_retries=10,
)

embedding = OpenAIEmbeddings()
elastic_vector_search = ElasticsearchStore(
    index_name="test_index",
    es_connection=es_client,
    embedding=embedding,
)

However, this error occurred.

elastic_transport.TlsError: TLS error caused by: TlsError(TLS error caused by: SSLError([SSL: WRONG_VERSION_NUMBER] wrong version number (_ssl.c:1133)))

How can I connect Elasticsearch to langchain?

I'm followed this url Elasticsearch | 🦜️🔗 LangChain