Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
84e0be1
feat: anthropic client
priyansh4320 Jan 13, 2026
52b6ad7
feat: add config entries
priyansh4320 Jan 13, 2026
243972c
fix: update init with configEntry
priyansh4320 Jan 13, 2026
a9aaf82
update: V2 client example, with structured outputs
priyansh4320 Jan 14, 2026
f3d2635
fix: transform method
priyansh4320 Jan 14, 2026
936528b
fix: pre-commit
priyansh4320 Jan 14, 2026
47a1a02
fix: params
priyansh4320 Jan 14, 2026
cfc98c4
fix: minor fixes
priyansh4320 Jan 14, 2026
31047d6
fix: image URL handling
priyansh4320 Jan 14, 2026
cac83bd
test: antropic v2
priyansh4320 Jan 14, 2026
0925150
fix: unit tests
priyansh4320 Jan 14, 2026
be1b545
test: integrations
priyansh4320 Jan 14, 2026
7cd67fd
test: integrations
priyansh4320 Jan 14, 2026
b477a1b
fix: integration test
priyansh4320 Jan 14, 2026
eb68919
fix: pre-commit
priyansh4320 Jan 14, 2026
a78f2b3
docs: enhance Anthropic V2 client documentation and structured output…
priyansh4320 Jan 15, 2026
b283cb1
fix: remove comments
priyansh4320 Jan 15, 2026
cb64420
fix: notebook
priyansh4320 Jan 15, 2026
7e42e82
Merge branch 'main' into anthropic-v2
priyansh4320 Jan 15, 2026
d0cd398
update: anthropic.mdx
priyansh4320 Jan 17, 2026
a04571f
Merge branch 'main' into anthropic-v2
priyansh4320 Jan 18, 2026
6a64f2a
Merge branch 'main' into anthropic-v2
priyansh4320 Jan 19, 2026
24f7434
Add metadata to Anthropic V2 Client example notebook
priyansh4320 Jan 20, 2026
f0d4899
fix: front_matter
priyansh4320 Jan 20, 2026
72c8897
Merge branch 'main' into anthropic-v2
priyansh4320 Jan 20, 2026
0cd3f6f
Merge branch 'main' into anthropic-v2
priyansh4320 Jan 24, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions autogen/llm_clients/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
ContentParser.register("custom_type", CustomContent)
"""

from .anthropic_v2 import AnthropicV2Client, AnthropicV2LLMConfigEntry
from .client_v2 import ModelClientV2
from .models import (
AudioContent,
Expand All @@ -58,6 +59,7 @@
"ModelClientV2",
# Clients
"OpenAICompletionsClient",
"AnthropicV2Client",
# Content blocks
"AudioContent",
"BaseContent",
Expand All @@ -74,4 +76,6 @@
# Unified formats
"UnifiedMessage",
"UnifiedResponse",
# Config Entry
"AnthropicV2LLMConfigEntry",
]
Loading
Loading