mirror of
https://github.com/anthropics/claude-code-sdk-python.git
synced 2025-12-23 09:19:52 +00:00
docs: fix typos - rename Claude Code SDK to Claude Agent SDK
This commit is contained in:
parent
04347495b8
commit
cf542a2a00
8 changed files with 8 additions and 8 deletions
|
|
@ -1,4 +1,4 @@
|
|||
# End-to-End Tests for Claude Code SDK
|
||||
# End-to-End Tests for Claude Agent SDK
|
||||
|
||||
This directory contains end-to-end tests that run against the actual Claude API to verify real-world functionality.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#!/usr/bin/env python3
|
||||
"""Example of using custom agents with Claude Code SDK.
|
||||
"""Example of using custom agents with Claude Agent SDK.
|
||||
|
||||
This example demonstrates how to define and use custom agents with specific
|
||||
tools, prompts, and models.
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#!/usr/bin/env python
|
||||
"""Example of using hooks with Claude Code SDK via ClaudeAgentOptions.
|
||||
"""Example of using hooks with Claude Agent SDK via ClaudeAgentOptions.
|
||||
|
||||
This file demonstrates various hook patterns using the hooks parameter
|
||||
in ClaudeAgentOptions instead of decorator-based hooks.
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env python3
|
||||
"""
|
||||
Example of using the "include_partial_messages" option to stream partial messages
|
||||
from Claude Code SDK.
|
||||
from Claude Agent SDK.
|
||||
|
||||
This feature allows you to receive stream events that contain incremental
|
||||
updates as Claude generates responses. This is useful for:
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
"""Example: Calculator MCP Server.
|
||||
|
||||
This example demonstrates how to create an in-process MCP server with
|
||||
calculator tools using the Claude Code Python SDK.
|
||||
calculator tools using the Claude Agent Python SDK.
|
||||
|
||||
Unlike external MCP servers that require separate processes, this server
|
||||
runs directly within your Python application, providing better performance
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#!/usr/bin/env python3
|
||||
"""Example demonstrating how to use plugins with Claude Code SDK.
|
||||
"""Example demonstrating how to use plugins with Claude Agent SDK.
|
||||
|
||||
Plugins allow you to extend Claude Code with custom commands, agents, skills,
|
||||
and hooks. This example shows how to load a local plugin and verify it's
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
#!/usr/bin/env python3
|
||||
"""Quick start example for Claude Code SDK."""
|
||||
"""Quick start example for Claude Agent SDK."""
|
||||
|
||||
import anyio
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
"""Message parser for Claude Code SDK responses."""
|
||||
"""Message parser for Claude Agent SDK responses."""
|
||||
|
||||
import logging
|
||||
from typing import Any
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue