🚀 Add feature: Charging in Milvus is now working

This commit is contained in:
François Pelletier 2025-05-21 17:21:57 -04:00
parent f9e5a6e013
commit 64832e2989
23 changed files with 354 additions and 109 deletions

21
test_embedding.http Normal file
View file

@ -0,0 +1,21 @@
### List Available Models
GET http://localhost:11434/api/tags
Content-Type: application/json
### Test nomic-embed-text Embedding
POST http://localhost:11434/api/embed
Content-Type: application/json
{
"model": "nomic-embed-text:latest",
"input": "This is another test sentence to generate an embedding using a different model."
}
### Test snowflake-arctic-embed2 Embedding
POST http://localhost:11434/api/embed
Content-Type: application/json
{
"model": "snowflake-arctic-embed2:latest",
"input": "This is a test sentence to generate an embedding."
}