Skip to main content

Build a Basic Frontend

Building the Frontend

Let's build a basic frontend, to acquaint you with the native client SDK(s).

While this is a basic example, it'll give you a taste of what to expect from building a proper frontend for Parlant.

Start by creating the client project under the tutorial directory:

$ cd parlant-tutorial  # If you're not already in it
$ poetry new basic-client
$ cd basic-client
$ poetry add parlant-client
$ touch client.py

Now let's start adding some code. First, we'll initialize the ParlantClient object.

from parlant.client import ParlantClient

client = ParlantClient(base_url=SERVER_ADDRESS)

Note: For SERVER_ADDRESS, if running locally, replace with http://localhost:8800.

Load Your Agent

Load Mr. Bitman using the agent ID you have from before. If you lost it, you can find again it by running $ parlant agent list.

AGENT_ID = "<your-agent-id>"

agent = client.agents.retrieve(AGENT_ID)

Create a Session

Now, let's start a new interaction session with our agent.

session = client.sessions.create(agent_id=AGENT_ID, allow_greeting=False)
info

For this simple use case, you can see that we're not allowing the agent to greet the customer proactively. Otherwise—depending on the guidelines installed and the customer they're talking to—agents in Parlant can proactively initiate a chat with a customer. This proactivity feature of Parlant agents comes in handy in certain real-life service scenarios. Keep it in mind!

Let's build our chat loop. See if you can notice something peculiar about how it works!

while True:
customer_message = input("Customer: ")

if customer_message in ("quit", "bye", "exit", "cya l8r m8"):
break

customer_event = client.sessions.create_event(
session_id=session.id,
source="customer",
kind="message",
message=customer_message,
)

agent_event, *_ = client.sessions.list_events(
session_id=session.id,
source="ai_agent",
kinds="message",
min_offset=customer_event.offset,
)

# Let type-checker know we do have data here
assert agent_event.data
agent_message = agent_event.data["message"]

print(f"Agent: {agent_message}")

Unlike low-level LLM completion APIs, where each request (or prompt) is immediately answered with a response (or completion), with Parlant agents the communication model is event-driven rather than completion-based.

This means that customers can always send messages (and even split what they want to say into several messages, as people often do in real life chat), and agents are always free to respond in their own time—just like a person on the other end of the line.

Running the Client

Ready to chat with Chip? Go ahead!

$ poetry run python client.py
Basic frontend demo

Recapping our frontend code, this is the logic we've written:

  1. Get a handle to our specific agent
  2. Create a new session to interact with it
  3. (In a loop)
    1. Append a new customer message
    2. Wait for the agent to generate a message, and fetch it
    3. Print the agent's reply message

Just FYI, there's a lot more you can do with sessions to create a truly responsive, sleek chat experience—such as indicating to the customer when the agent has read their last message, or currently typing out a reply. For more information, review the Sessions page.

Finally, an explanation for each little thingy in what we just wrote.

Code Breakdown

Thingy
Description
customer_messageThe customer's message
customer_eventThe event created from the customer's message
session_id
The ID of the session we created
kind
The event type, set to "message"
source
The origin of the event, which is "customer".
message
Contains the customer’s input.
agent_eventRepresents the response events received from the server.
session_id
Selects events from our specific session ID
kinds
Selects events by type, here set to "message"
source
Selects events originating from the "ai_agent"
min_offset
Ensures only events occurring after the last customer event (referenced by customer_event.offset) are retrieved, capturing the agent's immediate response.