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
Feature Request: Serve embed-anything with OpenAI-compatible API
Description:
It would be great to have a serve mode that allows embed-anything to expose an API endpoint compatible with the OpenAI embeddings format.
Why?
This would allow seamless integration with existing applications that expect OpenAI's API format, making embed-anything a drop-in replacement for local embedding models.
Expected API Format:
POST /v1/embeddings
{
"input": ["text to embed"],
"model": "your_model_name"
}