mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-21 10:16:03 +00:00
725 lines
26 KiB
TypeScript
725 lines
26 KiB
TypeScript
import { describe, expect } from "bun:test"
|
|
import { Effect, Schema, Stream } from "effect"
|
|
import { HttpClientRequest } from "effect/unstable/http"
|
|
import { LLM, LLMError, LLMEvent, Message, Model, ToolCallPart, Usage } from "../../src"
|
|
import * as Azure from "../../src/providers/azure"
|
|
import * as OpenAI from "../../src/providers/openai"
|
|
import * as OpenAIChat from "../../src/protocols/openai-chat"
|
|
import { ProviderShared } from "../../src/protocols/shared"
|
|
import { Auth, LLMClient } from "../../src/route"
|
|
import { it } from "../lib/effect"
|
|
import { dynamicResponse, fixedResponse, truncatedStream } from "../lib/http"
|
|
import { deltaChunk, usageChunk } from "../lib/openai-chunks"
|
|
import { sseEvents } from "../lib/sse"
|
|
|
|
const TargetJson = Schema.fromJsonString(Schema.Unknown)
|
|
const encodeJson = Schema.encodeSync(TargetJson)
|
|
const decodeJson = Schema.decodeUnknownSync(TargetJson)
|
|
|
|
const model = OpenAIChat.route
|
|
.with({ endpoint: { baseURL: "https://api.openai.test/v1/" }, auth: Auth.bearer("test") })
|
|
.model({ id: "gpt-4o-mini" })
|
|
|
|
const request = LLM.request({
|
|
id: "req_1",
|
|
model,
|
|
system: "You are concise.",
|
|
prompt: "Say hello.",
|
|
generation: { maxTokens: 20, temperature: 0 },
|
|
})
|
|
|
|
describe("OpenAI Chat route", () => {
|
|
it.effect("prepares OpenAI Chat payload", () =>
|
|
Effect.gen(function* () {
|
|
// Pass the OpenAIChat payload type so `prepared.body` is statically
|
|
// typed to the route's native shape — the assertions below read field
|
|
// names without `unknown` casts.
|
|
const prepared = yield* LLMClient.prepare<OpenAIChat.OpenAIChatBody>(request)
|
|
const _typed: { readonly model: string; readonly stream: true } = prepared.body
|
|
|
|
expect(prepared.body).toEqual({
|
|
model: "gpt-4o-mini",
|
|
messages: [
|
|
{ role: "system", content: "You are concise." },
|
|
{ role: "user", content: "Say hello." },
|
|
],
|
|
stream: true,
|
|
stream_options: { include_usage: true },
|
|
max_tokens: 20,
|
|
temperature: 0,
|
|
})
|
|
}),
|
|
)
|
|
|
|
it.effect("lowers chronological system updates to escaped user wrappers in order", () =>
|
|
Effect.gen(function* () {
|
|
const prepared = yield* LLMClient.prepare<OpenAIChat.OpenAIChatBody>(
|
|
LLM.request({
|
|
model,
|
|
messages: [
|
|
Message.user("Before."),
|
|
Message.system("Treat <admin> & data literally."),
|
|
Message.assistant("After."),
|
|
],
|
|
}),
|
|
)
|
|
|
|
expect(prepared.body.messages).toEqual([
|
|
{
|
|
role: "user",
|
|
content: "Before.\n<system-update>\nTreat <admin> & data literally.\n</system-update>",
|
|
},
|
|
{ role: "assistant", content: "After." },
|
|
])
|
|
}),
|
|
)
|
|
|
|
it.effect("replays canonical reasoning as OpenAI-compatible reasoning_content", () =>
|
|
Effect.gen(function* () {
|
|
const prepared = yield* LLMClient.prepare<OpenAIChat.OpenAIChatBody>(
|
|
LLM.request({
|
|
model,
|
|
messages: [
|
|
Message.assistant([
|
|
{ type: "reasoning", text: "thinking" },
|
|
{ type: "text", text: "Hello" },
|
|
]),
|
|
],
|
|
}),
|
|
)
|
|
|
|
expect(prepared.body.messages).toEqual([{ role: "assistant", content: "Hello", reasoning_content: "thinking" }])
|
|
}),
|
|
)
|
|
|
|
it.effect("maps OpenAI provider options to Chat options", () =>
|
|
Effect.gen(function* () {
|
|
const prepared = yield* LLMClient.prepare<OpenAIChat.OpenAIChatBody>(
|
|
LLM.request({
|
|
model: OpenAI.configure({ baseURL: "https://api.openai.test/v1/", apiKey: "test" }).chat("gpt-4o-mini"),
|
|
prompt: "think",
|
|
providerOptions: { openai: { reasoningEffort: "max" } },
|
|
}),
|
|
)
|
|
|
|
expect(prepared.body.store).toBe(false)
|
|
expect(prepared.body.reasoning_effort).toBe("max")
|
|
}),
|
|
)
|
|
|
|
it.effect("passes through custom OpenAI-compatible reasoning effort strings", () =>
|
|
Effect.gen(function* () {
|
|
const prepared = yield* LLMClient.prepare<OpenAIChat.OpenAIChatBody>(
|
|
LLM.request({
|
|
model,
|
|
prompt: "think",
|
|
providerOptions: { openai: { reasoningEffort: "experimental" } },
|
|
}),
|
|
)
|
|
|
|
expect(prepared.body.reasoning_effort).toBe("experimental")
|
|
}),
|
|
)
|
|
|
|
it.effect("adds native query params to the Chat Completions URL", () =>
|
|
LLMClient.generate(
|
|
LLM.updateRequest(request, {
|
|
model: Model.update(model, { route: model.route.with({ endpoint: { query: { "api-version": "v1" } } }) }),
|
|
}),
|
|
).pipe(
|
|
Effect.provide(
|
|
dynamicResponse((input) =>
|
|
Effect.gen(function* () {
|
|
const web = yield* HttpClientRequest.toWeb(input.request).pipe(Effect.orDie)
|
|
expect(web.url).toBe("https://api.openai.test/v1/chat/completions?api-version=v1")
|
|
return input.respond(sseEvents(deltaChunk({}, "stop")), {
|
|
headers: { "content-type": "text/event-stream" },
|
|
})
|
|
}),
|
|
),
|
|
),
|
|
),
|
|
)
|
|
|
|
it.effect("uses Azure api-key header for static OpenAI Chat keys", () =>
|
|
LLMClient.generate(
|
|
LLM.updateRequest(request, {
|
|
model: Azure.configure({
|
|
baseURL: "https://opencode-test.openai.azure.com/openai/v1/",
|
|
apiKey: "azure-key",
|
|
headers: { authorization: "Bearer stale" },
|
|
}).chat("gpt-4o-mini"),
|
|
}),
|
|
).pipe(
|
|
Effect.provide(
|
|
dynamicResponse((input) =>
|
|
Effect.gen(function* () {
|
|
const web = yield* HttpClientRequest.toWeb(input.request).pipe(Effect.orDie)
|
|
expect(web.url).toBe("https://opencode-test.openai.azure.com/openai/v1/chat/completions?api-version=v1")
|
|
expect(web.headers.get("api-key")).toBe("azure-key")
|
|
expect(web.headers.get("authorization")).toBeNull()
|
|
return input.respond(sseEvents(deltaChunk({}, "stop")), {
|
|
headers: { "content-type": "text/event-stream" },
|
|
})
|
|
}),
|
|
),
|
|
),
|
|
),
|
|
)
|
|
|
|
it.effect("applies serializable HTTP overlays after payload lowering", () =>
|
|
LLMClient.generate(
|
|
LLM.updateRequest(request, {
|
|
model: model.route
|
|
.with({ auth: Auth.bearer("fresh-key"), headers: { authorization: "Bearer stale" } })
|
|
.model({ id: model.id }),
|
|
http: {
|
|
body: { metadata: { source: "test" } },
|
|
headers: { authorization: "Bearer request", "x-custom": "yes" },
|
|
query: { debug: "1" },
|
|
},
|
|
}),
|
|
).pipe(
|
|
Effect.provide(
|
|
dynamicResponse((input) =>
|
|
Effect.gen(function* () {
|
|
const web = yield* HttpClientRequest.toWeb(input.request).pipe(Effect.orDie)
|
|
expect(web.url).toBe("https://api.openai.test/v1/chat/completions?debug=1")
|
|
expect(web.headers.get("authorization")).toBe("Bearer fresh-key")
|
|
expect(web.headers.get("x-custom")).toBe("yes")
|
|
expect(decodeJson(input.text)).toMatchObject({
|
|
stream: true,
|
|
stream_options: { include_usage: true },
|
|
metadata: { source: "test" },
|
|
})
|
|
return input.respond(sseEvents(deltaChunk({}, "stop")), {
|
|
headers: { "content-type": "text/event-stream" },
|
|
})
|
|
}),
|
|
),
|
|
),
|
|
),
|
|
)
|
|
|
|
it.effect("prepares assistant tool-call and tool-result messages", () =>
|
|
Effect.gen(function* () {
|
|
const prepared = yield* LLMClient.prepare(
|
|
LLM.request({
|
|
id: "req_tool_result",
|
|
model,
|
|
messages: [
|
|
Message.user("What is the weather?"),
|
|
Message.assistant([ToolCallPart.make({ id: "call_1", name: "lookup", input: { query: "weather" } })]),
|
|
Message.tool({ id: "call_1", name: "lookup", result: { forecast: "sunny" } }),
|
|
],
|
|
}),
|
|
)
|
|
|
|
expect(prepared.body).toEqual({
|
|
model: "gpt-4o-mini",
|
|
messages: [
|
|
{ role: "user", content: "What is the weather?" },
|
|
{
|
|
role: "assistant",
|
|
content: null,
|
|
tool_calls: [
|
|
{
|
|
id: "call_1",
|
|
type: "function",
|
|
function: { name: "lookup", arguments: encodeJson({ query: "weather" }) },
|
|
},
|
|
],
|
|
},
|
|
{ role: "tool", tool_call_id: "call_1", content: encodeJson({ forecast: "sunny" }) },
|
|
],
|
|
stream: true,
|
|
stream_options: { include_usage: true },
|
|
})
|
|
}),
|
|
)
|
|
|
|
it.effect("preserves structured tool errors for the model", () =>
|
|
Effect.gen(function* () {
|
|
const error = { error: { type: "unknown", message: "Tool execution interrupted" } }
|
|
const prepared = yield* LLMClient.prepare<OpenAIChat.OpenAIChatBody>(
|
|
LLM.request({
|
|
model,
|
|
messages: [
|
|
Message.assistant([ToolCallPart.make({ id: "call_1", name: "bash", input: {} })]),
|
|
Message.tool({ id: "call_1", name: "bash", resultType: "error", result: error }),
|
|
],
|
|
}),
|
|
)
|
|
|
|
expect(prepared.body.messages.at(-1)).toEqual({
|
|
role: "tool",
|
|
tool_call_id: "call_1",
|
|
content: ProviderShared.encodeJson(error),
|
|
})
|
|
}),
|
|
)
|
|
|
|
it.effect("continues image tool results as vision input without base64 text", () =>
|
|
Effect.gen(function* () {
|
|
const prepared = yield* LLMClient.prepare<OpenAIChat.OpenAIChatBody>(
|
|
LLM.request({
|
|
model,
|
|
messages: [
|
|
Message.assistant([ToolCallPart.make({ id: "call_image", name: "read", input: { path: "pixel.png" } })]),
|
|
Message.tool({
|
|
id: "call_image",
|
|
name: "read",
|
|
result: {
|
|
type: "content",
|
|
value: [
|
|
{ type: "text", text: "Image read successfully" },
|
|
{ type: "file", uri: "data:image/png;base64,AAECAw==", mime: "image/png", name: "pixel.png" },
|
|
],
|
|
},
|
|
}),
|
|
],
|
|
}),
|
|
)
|
|
|
|
expect(prepared.body.messages).toEqual([
|
|
{
|
|
role: "assistant",
|
|
content: null,
|
|
tool_calls: [
|
|
{
|
|
id: "call_image",
|
|
type: "function",
|
|
function: { name: "read", arguments: encodeJson({ path: "pixel.png" }) },
|
|
},
|
|
],
|
|
},
|
|
{ role: "tool", tool_call_id: "call_image", content: "Image read successfully" },
|
|
{
|
|
role: "user",
|
|
content: [{ type: "image_url", image_url: { url: "data:image/png;base64,AAECAw==" } }],
|
|
},
|
|
])
|
|
expect(JSON.stringify(prepared.body.messages)).not.toContain('"content":"AAECAw=="')
|
|
}),
|
|
)
|
|
|
|
it.effect("orders parallel tool responses before one aggregated vision message", () =>
|
|
Effect.gen(function* () {
|
|
const prepared = yield* LLMClient.prepare<OpenAIChat.OpenAIChatBody>(
|
|
LLM.request({
|
|
model,
|
|
messages: [
|
|
Message.assistant([
|
|
ToolCallPart.make({ id: "call_1", name: "read", input: {} }),
|
|
ToolCallPart.make({ id: "call_2", name: "read", input: {} }),
|
|
]),
|
|
Message.make({
|
|
role: "tool",
|
|
content: [
|
|
{
|
|
type: "tool-result",
|
|
id: "call_1",
|
|
name: "read",
|
|
result: {
|
|
type: "content",
|
|
value: [{ type: "file", uri: "data:image/png;base64,AAEC", mime: "image/png" }],
|
|
},
|
|
},
|
|
{
|
|
type: "tool-result",
|
|
id: "call_2",
|
|
name: "read",
|
|
result: {
|
|
type: "content",
|
|
value: [{ type: "file", uri: "data:image/jpeg;base64,/9j/", mime: "image/jpeg" }],
|
|
},
|
|
},
|
|
],
|
|
}),
|
|
],
|
|
}),
|
|
)
|
|
expect(prepared.body.messages.slice(1)).toEqual([
|
|
{ role: "tool", tool_call_id: "call_1", content: "" },
|
|
{ role: "tool", tool_call_id: "call_2", content: "" },
|
|
{
|
|
role: "user",
|
|
content: [
|
|
{ type: "image_url", image_url: { url: "data:image/png;base64,AAEC" } },
|
|
{ type: "image_url", image_url: { url: "data:image/jpeg;base64,/9j/" } },
|
|
],
|
|
},
|
|
])
|
|
}),
|
|
)
|
|
|
|
it.effect("aggregates consecutive tool images with a following system update", () =>
|
|
Effect.gen(function* () {
|
|
const prepared = yield* LLMClient.prepare<OpenAIChat.OpenAIChatBody>(
|
|
LLM.request({
|
|
model,
|
|
messages: [
|
|
Message.tool({
|
|
id: "call_1",
|
|
name: "read",
|
|
result: {
|
|
type: "content",
|
|
value: [{ type: "file", uri: "data:image/png;base64,AAEC", mime: "image/png" }],
|
|
},
|
|
}),
|
|
Message.tool({
|
|
id: "call_2",
|
|
name: "read",
|
|
result: {
|
|
type: "content",
|
|
value: [{ type: "file", uri: "data:image/webp;base64,UklG", mime: "image/webp" }],
|
|
},
|
|
}),
|
|
Message.system("Inspect both images."),
|
|
],
|
|
}),
|
|
)
|
|
expect(prepared.body.messages).toEqual([
|
|
{ role: "tool", tool_call_id: "call_1", content: "" },
|
|
{ role: "tool", tool_call_id: "call_2", content: "" },
|
|
{
|
|
role: "user",
|
|
content: [
|
|
{ type: "image_url", image_url: { url: "data:image/png;base64,AAEC" } },
|
|
{ type: "image_url", image_url: { url: "data:image/webp;base64,UklG" } },
|
|
{ type: "text", text: "<system-update>\nInspect both images.\n</system-update>" },
|
|
],
|
|
},
|
|
])
|
|
}),
|
|
)
|
|
|
|
it.effect("appends system updates without replacing multipart user content", () =>
|
|
Effect.gen(function* () {
|
|
const prepared = yield* LLMClient.prepare<OpenAIChat.OpenAIChatBody>(
|
|
LLM.request({
|
|
model,
|
|
messages: [
|
|
Message.user({ type: "media", mediaType: "image/png", data: "AAEC" }),
|
|
Message.system("Keep the image."),
|
|
],
|
|
}),
|
|
)
|
|
expect(prepared.body.messages).toEqual([
|
|
{
|
|
role: "user",
|
|
content: [
|
|
{ type: "image_url", image_url: { url: "data:image/png;base64,AAEC" } },
|
|
{ type: "text", text: "<system-update>\nKeep the image.\n</system-update>" },
|
|
],
|
|
},
|
|
])
|
|
}),
|
|
)
|
|
|
|
for (const [name, media] of [
|
|
["mismatched data URL MIME", { mediaType: "image/png", data: "data:image/jpeg;base64,/9j/" }],
|
|
["malformed base64", { mediaType: "image/png", data: "not-base64" }],
|
|
["unsupported SVG", { mediaType: "image/svg+xml", data: "PHN2Zz4=" }],
|
|
] as const)
|
|
it.effect(`rejects ${name}`, () =>
|
|
Effect.gen(function* () {
|
|
const error = yield* LLMClient.prepare(
|
|
LLM.request({ model, messages: [Message.user({ type: "media", ...media })] }),
|
|
).pipe(Effect.flip)
|
|
expect(error.message).toMatch(/does not support|does not match|valid base64/)
|
|
}),
|
|
)
|
|
|
|
it.effect("rejects oversized image input", () =>
|
|
Effect.gen(function* () {
|
|
const error = yield* LLMClient.prepare(
|
|
LLM.request({
|
|
model,
|
|
messages: [
|
|
Message.user({
|
|
type: "media",
|
|
mediaType: "image/png",
|
|
data: "A".repeat(ProviderShared.MAX_MEDIA_ENCODED_BYTES + 4),
|
|
}),
|
|
],
|
|
}),
|
|
).pipe(Effect.flip)
|
|
expect(error.message).toContain("encoded limit")
|
|
}),
|
|
)
|
|
|
|
it.effect("prepares raw and data URL image media as vision input", () =>
|
|
Effect.gen(function* () {
|
|
const prepared = yield* LLMClient.prepare<OpenAIChat.OpenAIChatBody>(
|
|
LLM.request({
|
|
id: "req_media",
|
|
model,
|
|
messages: [
|
|
Message.user([
|
|
{ type: "media", mediaType: "image/png", data: "AAECAw==" },
|
|
{ type: "media", mediaType: "image/jpeg", data: "data:image/jpeg;base64,/9j/" },
|
|
]),
|
|
],
|
|
}),
|
|
)
|
|
|
|
expect(prepared.body.messages).toEqual([
|
|
{
|
|
role: "user",
|
|
content: [
|
|
{ type: "image_url", image_url: { url: "data:image/png;base64,AAECAw==" } },
|
|
{ type: "image_url", image_url: { url: "data:image/jpeg;base64,/9j/" } },
|
|
],
|
|
},
|
|
])
|
|
}),
|
|
)
|
|
|
|
it.effect("lowers reasoning-only assistant history", () =>
|
|
Effect.gen(function* () {
|
|
const prepared = yield* LLMClient.prepare<OpenAIChat.OpenAIChatBody>(
|
|
LLM.request({
|
|
id: "req_reasoning",
|
|
model,
|
|
messages: [Message.assistant({ type: "reasoning", text: "hidden" })],
|
|
}),
|
|
)
|
|
|
|
expect(prepared.body.messages).toEqual([{ role: "assistant", content: null, reasoning_content: "hidden" }])
|
|
}),
|
|
)
|
|
|
|
it.effect("parses text and usage stream fixtures", () =>
|
|
Effect.gen(function* () {
|
|
const body = sseEvents(
|
|
deltaChunk({ role: "assistant", content: "Hello" }),
|
|
deltaChunk({ content: "!" }),
|
|
deltaChunk({}, "stop"),
|
|
usageChunk({
|
|
prompt_tokens: 5,
|
|
completion_tokens: 2,
|
|
total_tokens: 7,
|
|
prompt_tokens_details: { cached_tokens: 1 },
|
|
completion_tokens_details: { reasoning_tokens: 0 },
|
|
}),
|
|
)
|
|
const response = yield* LLMClient.generate(request).pipe(Effect.provide(fixedResponse(body)))
|
|
const usage = new Usage({
|
|
inputTokens: 5,
|
|
outputTokens: 2,
|
|
nonCachedInputTokens: 4,
|
|
cacheReadInputTokens: 1,
|
|
reasoningTokens: 0,
|
|
totalTokens: 7,
|
|
providerMetadata: {
|
|
openai: {
|
|
prompt_tokens: 5,
|
|
completion_tokens: 2,
|
|
total_tokens: 7,
|
|
prompt_tokens_details: { cached_tokens: 1 },
|
|
completion_tokens_details: { reasoning_tokens: 0 },
|
|
},
|
|
},
|
|
})
|
|
|
|
expect(response.text).toBe("Hello!")
|
|
expect(response.events).toEqual([
|
|
{ type: "step-start", index: 0 },
|
|
{ type: "text-start", id: "text-0" },
|
|
{ type: "text-delta", id: "text-0", text: "Hello" },
|
|
{ type: "text-delta", id: "text-0", text: "!" },
|
|
{ type: "text-end", id: "text-0" },
|
|
{ type: "step-finish", index: 0, reason: "stop", usage, providerMetadata: undefined },
|
|
{
|
|
type: "finish",
|
|
reason: "stop",
|
|
usage,
|
|
},
|
|
])
|
|
}),
|
|
)
|
|
|
|
it.effect("parses and replays OpenAI-compatible reasoning fields", () =>
|
|
Effect.gen(function* () {
|
|
const fields = ["reasoning_content", "reasoning", "reasoning_text"] as const
|
|
for (const field of fields) {
|
|
const response = yield* LLMClient.generate(request).pipe(
|
|
Effect.provide(
|
|
fixedResponse(
|
|
sseEvents(
|
|
{ choices: [{ delta: { [field]: "thinking" } }] },
|
|
{ choices: [{ delta: { content: "Hello" } }] },
|
|
{ choices: [{ delta: {}, finish_reason: "stop" }] },
|
|
),
|
|
),
|
|
),
|
|
)
|
|
|
|
expect(response.reasoning).toBe("thinking")
|
|
expect(response.text).toBe("Hello")
|
|
expect(response.message.content.find((part) => part.type === "reasoning")?.providerMetadata).toEqual({
|
|
openai: { reasoningField: field },
|
|
})
|
|
|
|
const replay = yield* LLMClient.prepare<OpenAIChat.OpenAIChatBody>(
|
|
LLM.request({ model, messages: [response.message] }),
|
|
)
|
|
expect(replay.body.messages).toEqual([{ role: "assistant", content: "Hello", [field]: "thinking" }])
|
|
}
|
|
}),
|
|
)
|
|
|
|
it.effect("assembles streamed tool call input", () =>
|
|
Effect.gen(function* () {
|
|
const body = sseEvents(
|
|
deltaChunk({
|
|
role: "assistant",
|
|
tool_calls: [{ index: 0, id: "call_1", function: { name: "lookup", arguments: '{"query"' } }],
|
|
}),
|
|
deltaChunk({ tool_calls: [{ index: 0, function: { arguments: ':"weather"}' } }] }),
|
|
deltaChunk({}, "tool_calls"),
|
|
)
|
|
const response = yield* LLMClient.generate(
|
|
LLM.updateRequest(request, {
|
|
tools: [{ name: "lookup", description: "Lookup data", inputSchema: { type: "object" } }],
|
|
}),
|
|
).pipe(Effect.provide(fixedResponse(body)))
|
|
|
|
expect(response.events).toEqual([
|
|
{ type: "step-start", index: 0 },
|
|
{ type: "tool-input-start", id: "call_1", name: "lookup", providerMetadata: undefined },
|
|
{ type: "tool-input-delta", id: "call_1", name: "lookup", text: '{"query"' },
|
|
{ type: "tool-input-delta", id: "call_1", name: "lookup", text: ':"weather"}' },
|
|
{ type: "tool-input-end", id: "call_1", name: "lookup", providerMetadata: undefined },
|
|
{
|
|
type: "tool-call",
|
|
id: "call_1",
|
|
name: "lookup",
|
|
input: { query: "weather" },
|
|
providerExecuted: undefined,
|
|
providerMetadata: undefined,
|
|
},
|
|
{ type: "step-finish", index: 0, reason: "tool-calls", usage: undefined, providerMetadata: undefined },
|
|
{ type: "finish", reason: "tool-calls", usage: undefined },
|
|
])
|
|
}),
|
|
)
|
|
|
|
it.effect("preserves a valid parallel call when another call is malformed", () =>
|
|
Effect.gen(function* () {
|
|
const body = sseEvents(
|
|
deltaChunk({
|
|
role: "assistant",
|
|
tool_calls: [
|
|
{ index: 0, id: "call_valid", function: { name: "lookup", arguments: '{"query":"weather"}' } },
|
|
{ index: 1, id: "call_malformed", function: { name: "lookup", arguments: '{"query":"partial' } },
|
|
],
|
|
}),
|
|
deltaChunk({}, "tool_calls"),
|
|
)
|
|
const response = yield* LLMClient.generate(
|
|
LLM.updateRequest(request, {
|
|
tools: [{ name: "lookup", description: "Lookup data", inputSchema: { type: "object" } }],
|
|
}),
|
|
).pipe(Effect.provide(fixedResponse(body)))
|
|
|
|
expect(
|
|
response.events.filter((event) => event.type === "tool-call" || event.type === "tool-input-error"),
|
|
).toMatchObject([
|
|
{ type: "tool-call", id: "call_valid", input: { query: "weather" } },
|
|
{ type: "tool-input-error", id: "call_malformed", raw: '{"query":"partial' },
|
|
])
|
|
}),
|
|
)
|
|
|
|
it.effect("fails a streamed tool call when the provider ends without a finish reason", () =>
|
|
Effect.gen(function* () {
|
|
const body = sseEvents(
|
|
deltaChunk({
|
|
role: "assistant",
|
|
tool_calls: [{ index: 0, id: "call_1", function: { name: "lookup", arguments: '{"query"' } }],
|
|
}),
|
|
deltaChunk({ tool_calls: [{ index: 0, function: { arguments: ':"weather"}' } }] }),
|
|
)
|
|
const input = LLM.updateRequest(request, {
|
|
tools: [{ name: "lookup", description: "Lookup data", inputSchema: { type: "object" } }],
|
|
})
|
|
const events: LLMEvent[] = []
|
|
const streamError = yield* LLMClient.stream(input).pipe(
|
|
Stream.runForEach((event) => Effect.sync(() => events.push(event))),
|
|
Effect.flip,
|
|
Effect.provide(fixedResponse(body)),
|
|
)
|
|
const error = yield* LLMClient.generate(input).pipe(Effect.provide(fixedResponse(body)), Effect.flip)
|
|
|
|
expect(events).toEqual([
|
|
{ type: "step-start", index: 0 },
|
|
{ type: "tool-input-start", id: "call_1", name: "lookup", providerMetadata: undefined },
|
|
{ type: "tool-input-delta", id: "call_1", name: "lookup", text: '{"query"' },
|
|
{ type: "tool-input-delta", id: "call_1", name: "lookup", text: ':"weather"}' },
|
|
])
|
|
expect(events.filter(LLMEvent.is.toolCall)).toEqual([])
|
|
expect(streamError.reason).toMatchObject({ _tag: "InvalidProviderOutput" })
|
|
expect(streamError.message).toContain("Provider stream ended without a terminal finish event")
|
|
expect(error.message).toContain("Provider stream ended without a terminal finish event")
|
|
}),
|
|
)
|
|
|
|
it.effect("fails on malformed stream events", () =>
|
|
Effect.gen(function* () {
|
|
const body = sseEvents(deltaChunk({ content: 123 }))
|
|
const error = yield* LLMClient.generate(request).pipe(Effect.provide(fixedResponse(body)), Effect.flip)
|
|
|
|
expect(error.message).toContain("Invalid openai/openai-chat stream event")
|
|
}),
|
|
)
|
|
|
|
it.effect("surfaces transport errors that occur mid-stream", () =>
|
|
Effect.gen(function* () {
|
|
const layer = truncatedStream([
|
|
`data: ${JSON.stringify(deltaChunk({ role: "assistant", content: "Hello" }))}\n\n`,
|
|
])
|
|
const error = yield* LLMClient.generate(request).pipe(Effect.provide(layer), Effect.flip)
|
|
|
|
expect(error.message).toContain("Failed to read openai/openai-chat stream")
|
|
}),
|
|
)
|
|
|
|
it.effect("fails HTTP provider errors before stream parsing", () =>
|
|
Effect.gen(function* () {
|
|
const error = yield* LLMClient.generate(request).pipe(
|
|
Effect.provide(
|
|
fixedResponse('{"error":{"message":"Bad request","type":"invalid_request_error"}}', {
|
|
status: 400,
|
|
headers: { "content-type": "application/json" },
|
|
}),
|
|
),
|
|
Effect.flip,
|
|
)
|
|
|
|
expect(error).toBeInstanceOf(LLMError)
|
|
expect(error.reason).toMatchObject({ _tag: "InvalidRequest" })
|
|
expect(error.message).toContain("HTTP 400")
|
|
}),
|
|
)
|
|
|
|
it.effect("short-circuits the upstream stream when the consumer takes a prefix", () =>
|
|
Effect.gen(function* () {
|
|
// The body has more chunks than we'll consume. If `Stream.take(1)` did
|
|
// not interrupt the upstream HTTP body the test would hang waiting for
|
|
// the rest of the stream to drain.
|
|
const body = sseEvents(
|
|
deltaChunk({ role: "assistant", content: "Hello" }),
|
|
deltaChunk({ content: " world" }),
|
|
deltaChunk({}, "stop"),
|
|
)
|
|
|
|
const events = Array.from(
|
|
yield* LLMClient.stream(request).pipe(Stream.take(1), Stream.runCollect, Effect.provide(fixedResponse(body))),
|
|
)
|
|
expect(events.map((event) => event.type)).toEqual(["step-start"])
|
|
}),
|
|
)
|
|
})
|