@codilore/llm 1.15.13
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/AGENTS.md +321 -0
- package/README.md +131 -0
- package/example/call-sites.md +591 -0
- package/example/tutorial.ts +255 -0
- package/package.json +50 -0
- package/script/recording-cost-report.ts +250 -0
- package/script/setup-recording-env.ts +542 -0
- package/src/cache-policy.ts +111 -0
- package/src/index.ts +32 -0
- package/src/llm.ts +186 -0
- package/src/protocols/anthropic-messages.ts +841 -0
- package/src/protocols/bedrock-converse.ts +649 -0
- package/src/protocols/bedrock-event-stream.ts +87 -0
- package/src/protocols/gemini.ts +465 -0
- package/src/protocols/index.ts +6 -0
- package/src/protocols/openai-chat.ts +431 -0
- package/src/protocols/openai-compatible-chat.ts +24 -0
- package/src/protocols/openai-responses.ts +987 -0
- package/src/protocols/shared.ts +283 -0
- package/src/protocols/utils/bedrock-auth.ts +70 -0
- package/src/protocols/utils/bedrock-cache.ts +37 -0
- package/src/protocols/utils/bedrock-media.ts +80 -0
- package/src/protocols/utils/cache.ts +16 -0
- package/src/protocols/utils/gemini-tool-schema.ts +101 -0
- package/src/protocols/utils/lifecycle.ts +102 -0
- package/src/protocols/utils/openai-options.ts +84 -0
- package/src/protocols/utils/tool-stream.ts +218 -0
- package/src/provider.ts +37 -0
- package/src/providers/amazon-bedrock.ts +43 -0
- package/src/providers/anthropic.ts +35 -0
- package/src/providers/azure.ts +110 -0
- package/src/providers/cloudflare.ts +127 -0
- package/src/providers/github-copilot.ts +66 -0
- package/src/providers/google.ts +35 -0
- package/src/providers/index.ts +11 -0
- package/src/providers/openai-compatible-profile.ts +20 -0
- package/src/providers/openai-compatible.ts +65 -0
- package/src/providers/openai-options.ts +81 -0
- package/src/providers/openai.ts +63 -0
- package/src/providers/openrouter.ts +98 -0
- package/src/providers/xai.ts +56 -0
- package/src/route/auth-options.ts +57 -0
- package/src/route/auth.ts +156 -0
- package/src/route/client.ts +434 -0
- package/src/route/endpoint.ts +53 -0
- package/src/route/executor.ts +374 -0
- package/src/route/framing.ts +27 -0
- package/src/route/index.ts +25 -0
- package/src/route/protocol.ts +84 -0
- package/src/route/transport/http.ts +108 -0
- package/src/route/transport/index.ts +33 -0
- package/src/route/transport/websocket.ts +280 -0
- package/src/schema/errors.ts +203 -0
- package/src/schema/events.ts +370 -0
- package/src/schema/ids.ts +43 -0
- package/src/schema/index.ts +5 -0
- package/src/schema/messages.ts +404 -0
- package/src/schema/options.ts +221 -0
- package/src/tool-runtime.ts +78 -0
- package/src/tool.ts +241 -0
- package/src/utils/record.ts +3 -0
- package/sst-env.d.ts +10 -0
- package/test/adapter.test.ts +164 -0
- package/test/auth-options.types.ts +168 -0
- package/test/auth.test.ts +103 -0
- package/test/cache-policy.test.ts +262 -0
- package/test/continuation-scenarios.ts +104 -0
- package/test/endpoint.test.ts +58 -0
- package/test/executor.test.ts +418 -0
- package/test/exports.test.ts +62 -0
- package/test/fixtures/media/restroom.png +0 -0
- package/test/fixtures/recordings/anthropic-messages/accepts-malformed-assistant-tool-order-with-default-patch.json +29 -0
- package/test/fixtures/recordings/anthropic-messages/anthropic-opus-4-7-image-tool-result.json +43 -0
- package/test/fixtures/recordings/anthropic-messages/claude-opus-4-7-drives-a-tool-loop.json +56 -0
- package/test/fixtures/recordings/anthropic-messages/rejects-malformed-assistant-tool-order-without-patch.json +29 -0
- package/test/fixtures/recordings/anthropic-messages/streams-text.json +29 -0
- package/test/fixtures/recordings/anthropic-messages/streams-tool-call.json +29 -0
- package/test/fixtures/recordings/anthropic-messages-cache/writes-then-reads-cache-control-on-identical-second-call.json +48 -0
- package/test/fixtures/recordings/bedrock-converse/drives-a-tool-loop.json +55 -0
- package/test/fixtures/recordings/bedrock-converse/streams-a-tool-call.json +29 -0
- package/test/fixtures/recordings/bedrock-converse/streams-text.json +29 -0
- package/test/fixtures/recordings/cloudflare-ai-gateway/cloudflare-ai-gateway-workers-ai-gpt-oss-20b-tools-tool-call.json +32 -0
- package/test/fixtures/recordings/cloudflare-ai-gateway/cloudflare-ai-gateway-workers-ai-llama-3-1-8b-text.json +32 -0
- package/test/fixtures/recordings/cloudflare-workers-ai/cloudflare-workers-ai-gpt-oss-20b-tools-tool-call.json +32 -0
- package/test/fixtures/recordings/cloudflare-workers-ai/cloudflare-workers-ai-llama-3-1-8b-text.json +32 -0
- package/test/fixtures/recordings/gemini/gemini-2-5-flash-image.json +32 -0
- package/test/fixtures/recordings/gemini/streams-text.json +28 -0
- package/test/fixtures/recordings/gemini/streams-tool-call.json +28 -0
- package/test/fixtures/recordings/gemini-cache/reports-cachedcontenttokencount-on-identical-second-call.json +46 -0
- package/test/fixtures/recordings/openai-chat/continues-after-tool-result.json +28 -0
- package/test/fixtures/recordings/openai-chat/drives-a-tool-loop-end-to-end.json +46 -0
- package/test/fixtures/recordings/openai-chat/streams-text.json +28 -0
- package/test/fixtures/recordings/openai-chat/streams-tool-call.json +28 -0
- package/test/fixtures/recordings/openai-compatible-chat/deepseek-streams-text.json +28 -0
- package/test/fixtures/recordings/openai-compatible-chat/groq-llama-3-3-70b-drives-a-tool-loop.json +53 -0
- package/test/fixtures/recordings/openai-compatible-chat/groq-streams-text.json +28 -0
- package/test/fixtures/recordings/openai-compatible-chat/groq-streams-tool-call.json +28 -0
- package/test/fixtures/recordings/openai-compatible-chat/openrouter-claude-opus-4-7-drives-a-tool-loop.json +54 -0
- package/test/fixtures/recordings/openai-compatible-chat/openrouter-gpt-4o-mini-drives-a-tool-loop.json +53 -0
- package/test/fixtures/recordings/openai-compatible-chat/openrouter-gpt-5-5-drives-a-tool-loop.json +54 -0
- package/test/fixtures/recordings/openai-compatible-chat/openrouter-streams-text.json +28 -0
- package/test/fixtures/recordings/openai-compatible-chat/openrouter-streams-tool-call.json +28 -0
- package/test/fixtures/recordings/openai-compatible-chat/togetherai-streams-text.json +28 -0
- package/test/fixtures/recordings/openai-compatible-chat/togetherai-streams-tool-call.json +28 -0
- package/test/fixtures/recordings/openai-responses/gpt-5-5-drives-a-tool-loop.json +54 -0
- package/test/fixtures/recordings/openai-responses/gpt-5-5-streams-text.json +28 -0
- package/test/fixtures/recordings/openai-responses/gpt-5-5-streams-tool-call.json +28 -0
- package/test/fixtures/recordings/openai-responses/openai-responses-gpt-5-5-image-tool-result.json +42 -0
- package/test/fixtures/recordings/openai-responses/openai-responses-gpt-5-5-reasoning-continuation.json +58 -0
- package/test/fixtures/recordings/openai-responses/openai-responses-gpt-5-5-reasoning.json +32 -0
- package/test/fixtures/recordings/openai-responses-cache/reports-cached-tokens-on-identical-second-call.json +46 -0
- package/test/generate-object.test.ts +184 -0
- package/test/lib/effect.ts +50 -0
- package/test/lib/http.ts +98 -0
- package/test/lib/openai-chunks.ts +27 -0
- package/test/lib/sse.ts +17 -0
- package/test/lib/tool-runtime.ts +146 -0
- package/test/llm.test.ts +167 -0
- package/test/provider/anthropic-messages-cache.recorded.test.ts +54 -0
- package/test/provider/anthropic-messages.recorded.test.ts +46 -0
- package/test/provider/anthropic-messages.test.ts +829 -0
- package/test/provider/bedrock-converse-cache.recorded.test.ts +54 -0
- package/test/provider/bedrock-converse.test.ts +707 -0
- package/test/provider/cloudflare.test.ts +230 -0
- package/test/provider/gemini-cache.recorded.test.ts +48 -0
- package/test/provider/gemini.test.ts +476 -0
- package/test/provider/golden.recorded.test.ts +219 -0
- package/test/provider/openai-chat.test.ts +446 -0
- package/test/provider/openai-compatible-chat.test.ts +238 -0
- package/test/provider/openai-responses-cache.recorded.test.ts +46 -0
- package/test/provider/openai-responses.test.ts +1322 -0
- package/test/provider/openrouter.test.ts +56 -0
- package/test/provider.types.ts +41 -0
- package/test/recorded-golden.ts +97 -0
- package/test/recorded-runner.ts +100 -0
- package/test/recorded-scenarios.ts +531 -0
- package/test/recorded-test.ts +74 -0
- package/test/recorded-utils.ts +56 -0
- package/test/recorded-websocket.ts +26 -0
- package/test/route.test.ts +43 -0
- package/test/schema.test.ts +97 -0
- package/test/tool-runtime.test.ts +802 -0
- package/test/tool-stream.test.ts +99 -0
- package/test/tool.types.ts +40 -0
- package/tsconfig.json +15 -0
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { describe, expect } from "bun:test"
|
|
2
|
+
import { Effect } from "effect"
|
|
3
|
+
import { LLMError } from "../src/schema"
|
|
4
|
+
import { ToolStream } from "../src/protocols/utils/tool-stream"
|
|
5
|
+
import { it } from "./lib/effect"
|
|
6
|
+
|
|
7
|
+
const ADAPTER = "test-route"
|
|
8
|
+
|
|
9
|
+
describe("ToolStream", () => {
|
|
10
|
+
it.effect("starts from OpenAI-style deltas and finalizes parsed input", () =>
|
|
11
|
+
Effect.gen(function* () {
|
|
12
|
+
const first = ToolStream.appendOrStart(
|
|
13
|
+
ADAPTER,
|
|
14
|
+
ToolStream.empty<number>(),
|
|
15
|
+
0,
|
|
16
|
+
{ id: "call_1", name: "lookup", text: '{"query"' },
|
|
17
|
+
"missing tool",
|
|
18
|
+
)
|
|
19
|
+
if (ToolStream.isError(first)) return yield* first
|
|
20
|
+
const second = ToolStream.appendOrStart(ADAPTER, first.tools, 0, { text: ':"weather"}' }, "missing tool")
|
|
21
|
+
if (ToolStream.isError(second)) return yield* second
|
|
22
|
+
const finished = yield* ToolStream.finish(ADAPTER, second.tools, 0)
|
|
23
|
+
|
|
24
|
+
expect(first.events).toEqual([
|
|
25
|
+
{ type: "tool-input-start", id: "call_1", name: "lookup" },
|
|
26
|
+
{ type: "tool-input-delta", id: "call_1", name: "lookup", text: '{"query"' },
|
|
27
|
+
])
|
|
28
|
+
expect(second.events).toEqual([{ type: "tool-input-delta", id: "call_1", name: "lookup", text: ':"weather"}' }])
|
|
29
|
+
expect(finished).toEqual({
|
|
30
|
+
tools: {},
|
|
31
|
+
events: [
|
|
32
|
+
{ type: "tool-input-end", id: "call_1", name: "lookup" },
|
|
33
|
+
{ type: "tool-call", id: "call_1", name: "lookup", input: { query: "weather" } },
|
|
34
|
+
],
|
|
35
|
+
})
|
|
36
|
+
}),
|
|
37
|
+
)
|
|
38
|
+
|
|
39
|
+
it.effect("fails appendExisting when the provider skipped the tool start", () =>
|
|
40
|
+
Effect.gen(function* () {
|
|
41
|
+
const error = ToolStream.appendExisting(ADAPTER, ToolStream.empty<number>(), 0, "{}", "missing tool")
|
|
42
|
+
|
|
43
|
+
expect(error).toBeInstanceOf(LLMError)
|
|
44
|
+
if (ToolStream.isError(error)) expect(error.reason.message).toBe("missing tool")
|
|
45
|
+
}),
|
|
46
|
+
)
|
|
47
|
+
|
|
48
|
+
it.effect("uses final input override without losing accumulated deltas", () =>
|
|
49
|
+
Effect.gen(function* () {
|
|
50
|
+
const tools = ToolStream.start(ToolStream.empty<string>(), "item_1", {
|
|
51
|
+
id: "call_1",
|
|
52
|
+
name: "lookup",
|
|
53
|
+
input: '{"query":"partial"}',
|
|
54
|
+
})
|
|
55
|
+
const finished = yield* ToolStream.finishWithInput(ADAPTER, tools, "item_1", '{"query":"final"}')
|
|
56
|
+
|
|
57
|
+
expect(finished).toEqual({
|
|
58
|
+
tools: {},
|
|
59
|
+
events: [
|
|
60
|
+
{ type: "tool-input-end", id: "call_1", name: "lookup" },
|
|
61
|
+
{ type: "tool-call", id: "call_1", name: "lookup", input: { query: "final" } },
|
|
62
|
+
],
|
|
63
|
+
})
|
|
64
|
+
}),
|
|
65
|
+
)
|
|
66
|
+
|
|
67
|
+
it.effect("preserves providerExecuted and clears all tools", () =>
|
|
68
|
+
Effect.gen(function* () {
|
|
69
|
+
const first: ToolStream.State<number> = ToolStream.start(ToolStream.empty<number>(), 0, {
|
|
70
|
+
id: "call_1",
|
|
71
|
+
name: "lookup",
|
|
72
|
+
input: "{}",
|
|
73
|
+
})
|
|
74
|
+
const tools = ToolStream.start(first, 1, {
|
|
75
|
+
id: "call_2",
|
|
76
|
+
name: "web_search",
|
|
77
|
+
input: '{"query":"docs"}',
|
|
78
|
+
providerExecuted: true,
|
|
79
|
+
})
|
|
80
|
+
const finished = yield* ToolStream.finishAll(ADAPTER, tools)
|
|
81
|
+
|
|
82
|
+
expect(finished).toEqual({
|
|
83
|
+
tools: {},
|
|
84
|
+
events: [
|
|
85
|
+
{ type: "tool-input-end", id: "call_1", name: "lookup" },
|
|
86
|
+
{ type: "tool-call", id: "call_1", name: "lookup", input: {} },
|
|
87
|
+
{ type: "tool-input-end", id: "call_2", name: "web_search" },
|
|
88
|
+
{
|
|
89
|
+
type: "tool-call",
|
|
90
|
+
id: "call_2",
|
|
91
|
+
name: "web_search",
|
|
92
|
+
input: { query: "docs" },
|
|
93
|
+
providerExecuted: true,
|
|
94
|
+
},
|
|
95
|
+
],
|
|
96
|
+
})
|
|
97
|
+
}),
|
|
98
|
+
)
|
|
99
|
+
})
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Effect, Schema } from "effect"
|
|
2
|
+
import { LLM, LLMRequest, ToolRuntime, toDefinitions } from "../src"
|
|
3
|
+
import * as OpenAIChat from "../src/protocols/openai-chat"
|
|
4
|
+
import { Auth } from "../src/route"
|
|
5
|
+
import { Tool } from "../src/tool"
|
|
6
|
+
|
|
7
|
+
const request = LLM.request({
|
|
8
|
+
model: OpenAIChat.route.with({ auth: Auth.bearer("fixture") }).model({ id: "gpt-4o-mini" }),
|
|
9
|
+
prompt: "Use the tool.",
|
|
10
|
+
})
|
|
11
|
+
|
|
12
|
+
const executable = Tool.make({
|
|
13
|
+
description: "Get weather.",
|
|
14
|
+
parameters: Schema.Struct({ city: Schema.String }),
|
|
15
|
+
success: Schema.Struct({ forecast: Schema.String }),
|
|
16
|
+
execute: (input) => Effect.succeed({ forecast: input.city }),
|
|
17
|
+
})
|
|
18
|
+
|
|
19
|
+
const schemaOnly = Tool.make({
|
|
20
|
+
description: "Get weather.",
|
|
21
|
+
parameters: Schema.Struct({ city: Schema.String }),
|
|
22
|
+
success: Schema.Struct({ forecast: Schema.String }),
|
|
23
|
+
})
|
|
24
|
+
|
|
25
|
+
Tool.make({
|
|
26
|
+
description: "Encode success before projection.",
|
|
27
|
+
parameters: Schema.Struct({ city: Schema.String }),
|
|
28
|
+
success: Schema.Struct({ forecast: Schema.NumberFromString }),
|
|
29
|
+
execute: () => Effect.succeed({ forecast: 1 }),
|
|
30
|
+
toModelOutput: ({ callID, parameters, output }) => [
|
|
31
|
+
{ type: "text", text: `${callID}:${parameters.city}:${output.forecast}` },
|
|
32
|
+
],
|
|
33
|
+
})
|
|
34
|
+
|
|
35
|
+
LLM.stream(request)
|
|
36
|
+
LLM.generate(LLMRequest.update(request, { tools: toDefinitions({ schemaOnly }) }))
|
|
37
|
+
ToolRuntime.dispatch({ executable }, { type: "tool-call", id: "call_1", name: "executable", input: { city: "Paris" } })
|
|
38
|
+
|
|
39
|
+
// @ts-expect-error High-level tool orchestration overloads are intentionally not supported.
|
|
40
|
+
LLM.stream({ request, tools: { schemaOnly } })
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
+
"extends": "@tsconfig/bun/tsconfig.json",
|
|
4
|
+
"compilerOptions": {
|
|
5
|
+
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
6
|
+
"noUncheckedIndexedAccess": false,
|
|
7
|
+
"plugins": [
|
|
8
|
+
{
|
|
9
|
+
"name": "@effect/language-service",
|
|
10
|
+
"transform": "@effect/language-service/transform",
|
|
11
|
+
"namespaceImportPackages": ["effect", "@effect/*"]
|
|
12
|
+
}
|
|
13
|
+
]
|
|
14
|
+
}
|
|
15
|
+
}
|