mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2026-05-09 02:50:39 +00:00
This commit adds a curl script to the model-conversion examples which is currently missing. This script is required for the running the embedding server targets to test llama-server embeddings functionality.
6 lines
185 B
Bash
Executable file
6 lines
185 B
Bash
Executable file
#!/bin/bash
|
|
curl --request POST \
|
|
--url http://localhost:8080/embedding \
|
|
--header "Content-Type: application/json" \
|
|
--data '{"input": "Hello world today"}' \
|
|
--silent
|