@fugood/buttress-server 2.25.1-beta.5 → 2.25.2-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/lib/index.mjs +28 -28
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -557,6 +557,10 @@ enabled = true
|
|
|
557
557
|
| `/oai-compat/v1/*` | `[openai_compat] enabled = true` |
|
|
558
558
|
| `/anthropic-messages` | `[anthropic_messages] enabled = true` |
|
|
559
559
|
|
|
560
|
+
Completion requests may select only LLM models declared in `[[generators]]`. Use each
|
|
561
|
+
endpoint's `GET /v1/models` response for valid model IDs; unknown IDs are rejected before the
|
|
562
|
+
server starts or downloads a generator.
|
|
563
|
+
|
|
560
564
|
## Local Functions (Experimental)
|
|
561
565
|
|
|
562
566
|
Local functions are `.ts`/`.js` files you drop into a directory on the server. Each one becomes an MCP tool **and** an HTTP endpoint, so an agent (or any HTTP client) can run server-side work — shelling out to `ffmpeg`, calling this server's own LLM/STT generators — without you writing a service.
|