Integrations

Uncensored LLM for PHP & Laravel

How to use abliteration.ai with PHP. A drop-in replacement for OpenAI in Laravel applications.

Updated 2025-12-30

Use the official OpenAI PHP client with abliteration.ai by simply changing the base URL.

$client = OpenAI::factory()
  ->withBaseUri('https://api.abliteration.ai/v1')
  ->withApiKey(getenv('ABLIT_KEY'))
  ->make();