-
Notifications
You must be signed in to change notification settings - Fork 237
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add context manager streaming support for Anthropic #595
base: main
Are you sure you want to change the base?
Add context manager streaming support for Anthropic #595
Conversation
- Add create_stream and __call__ methods to AnthropicProvider - Update sync and async examples to use context handler pattern - Update model version to claude-3-sonnet-20240229 - Maintain backward compatibility with existing streaming Co-Authored-By: Alex Reibman <[email protected]>
- Update all test cases to use claude-3-sonnet-20240229 - Maintain comprehensive test coverage for streaming patterns - Keep backward compatibility with legacy streaming Co-Authored-By: Alex Reibman <[email protected]>
- Simplify function call arguments in anthropic.py - Remove trailing newlines in example files Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
…s correctly Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
…er__ Co-Authored-By: Alex Reibman <[email protected]>
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
⚙️ Control Options:
Add "(aside)" to your comment to have me ignore it. |
WalkthroughThis update enhances the Anthropic provider by implementing context handler streaming, enabling both synchronous and asynchronous message streaming. Key changes include the addition of Changes
🔗 Related PRs
InstructionsEmoji Descriptions:
Interact with the Bot:
Execute a command using the format:
Available Commands:
Tips for Using @bot Effectively:
Need More Help?📚 Visit our documentation for detailed guides on using Entelligence.AI. |
Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
…ndling Co-Authored-By: Alex Reibman <[email protected]>
…nt handling Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
…aming Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
…king Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
Co-Authored-By: Alex Reibman <[email protected]>
🔍 Review Summary
Purpose
This update enhances the Anthropic provider by implementing context handler streaming, thus enabling synchronous and asynchronous message streaming, featuring a new model version
claude-3-sonnet-20240229
.Key Changes
New Feature
create_stream
and__call__
methods for context handler streaming.claude-3-sonnet-20240229
to theAnthropicProvider
class.Enhancement
Test
Impact
Original Description
No existing description found