VibeKit Proxy seamlessly integrates with the Anthropic SDK, providing automatic data redaction and security for your Claude applications without changing your existing code.
Simply add the VibeKit Proxy URL to your existing Anthropic SDK configuration:
Copy
import anthropicclient = anthropic.Anthropic( base_url="http://localhost:8080" # Add this line)message = client.messages.create( model="claude-3-5-sonnet-20241022", max_tokens=1024, messages=[ {"role": "user", "content": "My SSN is 123-45-6789. Help me with privacy."} ])