Last active
July 7, 2025 06:53
-
-
Save limcheekin/89cfb51715beda89853f9a3c21dace60 to your computer and use it in GitHub Desktop.
bge-reranker-v2-m3 localai model config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: bge-reranker-v2-m3 | |
| backend: cuda12-rerankers | |
| parameters: | |
| model: BAAI/bge-reranker-v2-m3 | |
| model_type: reranker | |
| pooling: rank | |
| context_size: 2048 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl -X 'POST' \ | |
| 'http://192.168.1.111:8880/v1/rerank' \ | |
| -H 'accept: application/json' \ | |
| -H 'Content-Type: application/json' \ | |
| -d '{ | |
| "documents": [ | |
| "Carson City is the capital city of the American state of Nevada.", | |
| "The Commonwealth of the Northern Mariana Islands is a group of islands in the Pacific Ocean. Its capital is Saipan.", | |
| "Capitalization or capitalisation in English grammar is the use of a capital letter at the start of a word. English usage varies from capitalization in other languages.", | |
| "Washington, D.C. (also known as simply Washington or D.C., and officially as the District of Columbia) is the capital of the United States. It is a federal district.", | |
| "Capital punishment has existed in the United States since before the United States was a country. As of 2017, capital punishment is legal in 30 of the 50 states." | |
| ], | |
| "model": "bge-reranker-v2-m3", | |
| "query": "What is the capital of the United States?", | |
| "top_n": 3 | |
| }' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment