You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
When deploying Semantic search based use cases we require to download the proper model, deploy and possibly test it is available before data can be ingested into the elasticsearch cluster and possibly setup connector to the LLMs / External Models for use at ingest and query time.
Describe the resource you would like to have implemented..
Eland for ability to upload models from hugging face.
Load Model PUT _ml/trained_models/<model_id>
Start Model POST _ml/trained_models/<model_id>/deployment/_start
Get Trained Model GET _ml/trained_models/<model_id>
Create / Update Trained Model Alias PUT _ml/trained_models/<model_id>/model_aliases/<model_alias>
Create Connectors for LLMs or External Embedding Models AWS Bedrock, Azure OpenAI Google Vertex, Cohere, etc.
Describe the solution you'd like
Terraform stack functions that can call these apis in preparation of delivering a semantic search use case.
Describe alternatives you've considered
Direct / Manual REST API Calls or custom scipts.
The text was updated successfully, but these errors were encountered:
This would be great! We are starting to experiment with vector search at the moment and having to run eland to managed our models is a bit of a pain. The rest of our cluster is managed with Terraform so having this one outside piece leads to manual cluster work.
Is your feature request related to a problem? Please describe.
When deploying Semantic search based use cases we require to download the proper model, deploy and possibly test it is available before data can be ingested into the elasticsearch cluster and possibly setup connector to the LLMs / External Models for use at ingest and query time.
Describe the resource you would like to have implemented..
PUT _ml/trained_models/<model_id>
POST _ml/trained_models/<model_id>/deployment/_start
GET _ml/trained_models/<model_id>
PUT _ml/trained_models/<model_id>/model_aliases/<model_alias>
Describe the solution you'd like
Terraform stack functions that can call these apis in preparation of delivering a semantic search use case.
Describe alternatives you've considered
Direct / Manual REST API Calls or custom scipts.
The text was updated successfully, but these errors were encountered: