Alice integration for Parlant
Project description
parlant-alice
Alice integration for Parlant - A Python package that provides content moderation and compliance checking for Parlant applications using Alice's threat analysis & detection services.
Introduction
Alice's Trust and Safety (T&S) is the world's leading tool stack for Trust & Safety teams. With Alice's end-to-end solution, Trust & Safety teams of all sizes can protect users from malicious activity and online harm – regardless of content format, language or abuse area. Integrating with the T&S platform enables you to detect, collect and analyze harmful content that may put your users and brand at risk. By combining AI and a team of subject-matter experts, the Alice T&S platform enables you to be agile and proactive for maximum efficiency, scalability and impact.
Installation
You can install parlant-alice using pip:
pip install parlant-alice
Usage
Basic Usage
The parlant-alice package integrates with Parlant's framework to provide automatic content moderation and compliance checking. Here's how to use it:
from parlant.contrib.alice import Alice
# Configure Parlant server to use Alice moderation services
# Will use environment variables for configuration
async with p.Server(configure_container=Alice().configure_container) as server:
For the Alice integration to work, an API key must be configured. This and more can be supplied using environment variables. The following environment variables can be used to configure Alice integration:
| Variable | Description | Default |
|---|---|---|
ALICE_API_KEY |
Alice API key for authentication | None (required) |
ALICE_APP_NAME |
Application name for identification | None |
ALICE_BLOCKED_MESSAGE |
Message to display when content is blocked | "The generated message was blocked by guardrails." |
These values can also be passed directly when initializing the container:
from parlant.contrib.alice import Alice
moderation = Alice(api_key="API_KEY",app_name="APP_NAME", blocked_message="This message was blocked")
async with p.Server(configure_container=moderation.configure_container) as server:
Impact
Using Alice's moderation as shown will analyze messages sent by users to the AI agent, and the agent's response to them. This helps manage abusive messages, protect the application from malicious prompts and ensure the agent responses align to your policies.
User messages blocked by Alice will not reach the agent, but it will get a flagged message indication a censored user request. You can guide the agent to respond to such messages using the Parlant guidelines, like so:
await agent.create_guideline(
condition="the customer's last message is censored",
action="respond with a polite refusal to answer the question, mention that the message was censored based on guardrails analysis",
)
Analysis of the agent responses works a bit different. If the Alice analysis marks the response as BLOCKED, the message itself will not be returned to the user, and instead a preconfigured block message will be returned. This message can be configured as described above. If a policy violation is detected but not flagged to be blocked, a warning is logged using Parlant's internal logger. This warning message will look like this: [warning ] [ReuwnpD7Gzn::process][MessageEventComposer][CannedResponseGenerator] Prevented sending a non-compliant message: 'However, I can't respond to your previous message because it was censored based on our guardrails analysis. If you have another question or need assistance, feel free to ask.'.
Example
Here is a complete example of setting up a Parlant server with Alice moderation:
import asyncio
import parlant.sdk as p
from parlant.contrib.alice import Alice
async def main():
async with p.Server(configure_container=Alice(api_key="<API_KEY>",app_name="test").configure_container) as server:
agent = await server.create_agent(
name="Otto Carmen",
description="You work at a computer parts store",
)
print(agent.id)
blocked = await agent.create_guideline(
condition="the customer's last message is censored",
action="respond with a polite refusal to answer the question, mention that the message was censored based on guardrails analysis",
)
asyncio.run(main())
And this is an example of a basic client that calls this server, and prints the messages returned by the agent to the console:
import asyncio
from parlant.client import ParlantClient
async def main():
client = ParlantClient(base_url='http://localhost:8800')
session = client.sessions.create(
agent_id='<AGENT ID>',
allow_greeting=False,
title="test",
)
session_id = session.id
client.sessions.create_event(
session_id,
kind="message",
source="customer",
message='Should I sue about this?',
moderation="auto",
)
last_offset = 0
while (True):
try:
events = client.sessions.list_events(session_id=session_id,
min_offset=last_offset,
wait_for_data=30,
kinds="message",
)
for event in events:
print(event)
last_offset = max(last_offset, event.offset + 1)
except Exception as e:
print(e)
asyncio.run(main())
Enabled moderation="auto" will trigger the user prompt analysis, and if the Alice policy is configured for it, it will block the message for including legal advice, even if the LLM is not configured to respond to this.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file parlant_alice-0.1.5.tar.gz.
File metadata
- Download URL: parlant_alice-0.1.5.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa0867fa1661800670ef07d16d603548b2e361f4d00e9215e7a320dc3c557eb8
|
|
| MD5 |
29d3b1bec6d0f0c7a6924665637963c6
|
|
| BLAKE2b-256 |
dc1dabf55e700d35da4dbfa0bee817d50ce649a2dbe95b85aac0cf9f1624ea38
|
Provenance
The following attestation bundles were made for parlant_alice-0.1.5.tar.gz:
Publisher:
python-publish.yml on ActiveFence/parlant-alice
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
parlant_alice-0.1.5.tar.gz -
Subject digest:
fa0867fa1661800670ef07d16d603548b2e361f4d00e9215e7a320dc3c557eb8 - Sigstore transparency entry: 953448346
- Sigstore integration time:
-
Permalink:
ActiveFence/parlant-alice@264320345be2ecc252163189e9beac4e691f60cd -
Branch / Tag:
refs/tags/0.1.5 - Owner: https://github.com/ActiveFence
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@264320345be2ecc252163189e9beac4e691f60cd -
Trigger Event:
release
-
Statement type:
File details
Details for the file parlant_alice-0.1.5-py3-none-any.whl.
File metadata
- Download URL: parlant_alice-0.1.5-py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2712f6711f19eb71220acd0f00f5ba3175a6ac82545b6d8a7014cd46806bdfde
|
|
| MD5 |
7bcc2aa3e3d37a5ec4bf065e42589516
|
|
| BLAKE2b-256 |
32e5404af3714cb3b0fed235c9a19def7e326d9e64e384ffb403f3eaf2f3be0e
|
Provenance
The following attestation bundles were made for parlant_alice-0.1.5-py3-none-any.whl:
Publisher:
python-publish.yml on ActiveFence/parlant-alice
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
parlant_alice-0.1.5-py3-none-any.whl -
Subject digest:
2712f6711f19eb71220acd0f00f5ba3175a6ac82545b6d8a7014cd46806bdfde - Sigstore transparency entry: 953448348
- Sigstore integration time:
-
Permalink:
ActiveFence/parlant-alice@264320345be2ecc252163189e9beac4e691f60cd -
Branch / Tag:
refs/tags/0.1.5 - Owner: https://github.com/ActiveFence
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@264320345be2ecc252163189e9beac4e691f60cd -
Trigger Event:
release
-
Statement type: