VibeKit Proxy seamlessly integrates with the OpenAI SDK, providing automatic data redaction and security for your OpenAI applications without changing your existing code.
from openai import OpenAIclient = OpenAI( base_url="http://localhost:8080/v1" # Add this line)response = client.chat.completions.create( model="gpt-4", messages=[ {"role": "user", "content": "My SSN is 123-45-6789. Help me with privacy."} ])