@xberg-io/liter-llm 1.18.4 → 1.19.1
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 +5 -1
- package/index.d.ts +5 -9
- package/index.js +539 -381
- package/liter-llm-node.darwin-arm64.node +0 -0
- package/liter-llm-node.darwin-x64.node +0 -0
- package/liter-llm-node.linux-arm64-gnu.node +0 -0
- package/liter-llm-node.linux-x64-gnu.node +0 -0
- package/liter-llm-node.win32-arm64-msvc.node +0 -0
- package/liter-llm-node.win32-x64-msvc.node +0 -0
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<!-- This file is auto-generated by alef — DO NOT EDIT. -->
|
|
2
|
-
<!-- alef:hash:
|
|
2
|
+
<!-- alef:hash:00773001adf4f1f9a59885485d14b8f259b38ee1ce59040efb3b626f0a4fc829 -->
|
|
3
3
|
<!-- To regenerate: alef readme -->
|
|
4
4
|
<!-- To verify freshness: alef verify -->
|
|
5
5
|
|
|
@@ -54,6 +54,9 @@
|
|
|
54
54
|
<a href="https://github.com/xberg-io/homebrew-tap/blob/main/Formula/liter-llm.rb">
|
|
55
55
|
<img src="https://img.shields.io/badge/Homebrew-007ec6?logo=homebrew&logoColor=white" alt="Homebrew" />
|
|
56
56
|
</a>
|
|
57
|
+
<a href="https://github.com/xberg-io/scoop-bucket/blob/main/bucket/liter-llm.json">
|
|
58
|
+
<img src="https://img.shields.io/badge/Scoop-007ec6" alt="Scoop" />
|
|
59
|
+
</a>
|
|
57
60
|
<a href="https://github.com/xberg-io/liter-llm/tree/main/crates/liter-llm-ffi">
|
|
58
61
|
<img src="https://img.shields.io/badge/C-FFI-007ec6" alt="C FFI" />
|
|
59
62
|
</a>
|
|
@@ -293,6 +296,7 @@ Beyond the SDK, the `liter-llm` CLI ships an OpenAI-compatible proxy and a Model
|
|
|
293
296
|
|
|
294
297
|
```bash
|
|
295
298
|
brew install xberg-io/tap/liter-llm # or: cargo install liter-llm-cli
|
|
299
|
+
# Windows: scoop bucket add xberg https://github.com/xberg-io/scoop-bucket && scoop install liter-llm
|
|
296
300
|
liter-llm api --config liter-llm-proxy.toml # OpenAI-compatible proxy
|
|
297
301
|
liter-llm mcp --transport stdio # MCP tool server
|
|
298
302
|
|
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// This file is auto-generated by alef — DO NOT EDIT.
|
|
2
|
-
// alef:hash:
|
|
2
|
+
// alef:hash:8053977ee91387b55fa87e7df7f00107ffbc7789db18515c809f884a161a46d6
|
|
3
3
|
// To regenerate: alef generate
|
|
4
4
|
// To verify freshness: alef verify
|
|
5
5
|
/* eslint-disable */
|
|
@@ -278,14 +278,10 @@ export interface AuthConfig {
|
|
|
278
278
|
}
|
|
279
279
|
|
|
280
280
|
/** How the API key is sent in the HTTP request. */
|
|
281
|
-
export
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
ApiKey = "ApiKey",
|
|
286
|
-
/** No authentication required. */
|
|
287
|
-
None = "None",
|
|
288
|
-
}
|
|
281
|
+
export type AuthHeaderFormat =
|
|
282
|
+
| { type: 'Bearer' }
|
|
283
|
+
| { type: 'ApiKey'; apiKey: string }
|
|
284
|
+
| { type: 'None' }
|
|
289
285
|
|
|
290
286
|
/** Auth scheme used by a provider. */
|
|
291
287
|
export declare enum AuthType {
|