Add abliteration built-in backend (Abliteration.ai) - #9
Open
abliteration-ai wants to merge 1 commit into
Open
Conversation
Abliteration.ai is an OpenAI-compatible provider hosting less-restrictive models (abliterated-model, abliterated-model-large) for security research, which makes it a natural fit for an offensive-security harness. The engine does not know this provider, so unlike the other built-ins the backend seeds its base_url (https://api.abliteration.ai/v1) from the built-in table; the credential resolves from ABLIT_KEY like any other provider's conventional variable. Signed-off-by: Abliteration.ai <help@abliteration.ai>
abliteration-ai
force-pushed
the
add-abliteration-backend
branch
from
August 27, 2026 01:08
4cbb4da to
f477c23
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds Abliteration.ai as a built-in backend.
Abliteration.ai is an OpenAI-compatible API hosting less-restrictive models (
abliterated-model,abliterated-model-large) aimed at security research, which makes it a natural fit for an offensive-security harness. Docs: https://docs.abliteration.ai.How it works
abliterationentry inbuiltinBackends, resolving its credential fromABLIT_KEYlike every other provider's conventional variable.baseURLfield and seedshttps://api.abliteration.ai/v1onto the backend (an explicitbase_urlin config still wins). Every other built-in is untouched - their endpoints stay in the engine.Usage:
Docs: README backend table + example,
configs/rook.example.yaml,.env.example, desktop imagePROVIDER_ENVSpass-through, CHANGELOG.Tests: pinned built-in set updated; new
TestAbliterationSeedsItsEndpointcovers endpoint seeding, credential resolution, and thebase_urloverride.go build ./...,go vet ./...(both build variants) andgo test ./... -count=1 -raceall pass.