원클릭으로
capture-api-response-test-fixture
Capture API response test fixture.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Capture API response test fixture.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Answer questions about the AI SDK and help build AI-powered features. Use when developers: (1) Ask about AI SDK functions like generateText, streamText, ToolLoopAgent, or tools, (2) Want to build AI agents, chatbots, or text generation features, (3) Have questions about AI providers (OpenAI, Anthropic, etc.), streaming, tool calling, or structured output.
Develop examples for AI SDK functions. Use when creating, running, or modifying examples under examples/ai-functions/src to validate provider support, demonstrate features, or create test fixtures.
SOC 직업 분류 기준
| name | capture-api-response-test-fixture |
| description | Capture API response test fixture. |
For provider response parsing tests, we aim at storing test fixtures with the true responses from the providers (unless they are too large in which case some cutting that does not change semantics is advised).
The fixtures are stored in a __fixtures__ subfolder, e.g. packages/openai/src/responses/__fixtures__. See the file names in packages/openai/src/responses/__fixtures__ for naming conventions and packages/openai/src/responses/openai-responses-language-model.test.ts for how to set up test helpers.
You can use our examples under /examples/ai-functions to generate test fixtures.
For generateText, log the raw response output to the console and copy it into a new test fixture.
import { openai } from "@ai-sdk/openai";
import { generateText } from "ai";
import { run } from "../lib/run";
run(async () => {
const result = await generateText({
model: openai("gpt-5-nano"),
prompt: "Invent a new holiday and describe its traditions.",
});
console.warn(JSON.stringify(result.response.body, null, 2));
});
For streamText, you need to set includeRawChunks to true and use the special saveRawChunks helper. Run the script from the /example/ai-functions folder via pnpm tsx src/stream-text/script-name.ts. The result is then stored in the /examples/ai-functions/output folder. You can copy it to your fixtures folder and rename it.
import { openai } from "@ai-sdk/openai";
import { streamText } from "ai";
import { run } from "../lib/run";
import { saveRawChunks } from "../lib/save-raw-chunks";
run(async () => {
const result = streamText({
model: openai("gpt-5-nano"),
prompt: "Invent a new holiday and describe its traditions.",
includeRawChunks: true,
});
await saveRawChunks({ result, filename: "openai-gpt-5-nano" });
});