Make a test request to verify everything is working:
Copy
const response = await client.chat.completions.create({ model: "gpt-4", messages: [ { role: "user", content: "My SSN is 123-45-6789. What can you tell me about privacy?" } ],});console.log(response.choices[0].message.content);// The SSN will be automatically redacted in both the request and response
# Start with custom portnpx @vibe-kit/proxy start --port 3000# Run in background (daemon mode)npx @vibe-kit/proxy start --daemon# Check status on specific portnpx @vibe-kit/proxy status --port 3000# Stop proxy on specific portnpx @vibe-kit/proxy stop --port 3000