Launching Structured Outputs from Chat History

Zep’s Structured Data Extraction is a high-accuracy tool for extracting data from chat histories. It's also 10x faster than gpt-4o.

Launching Structured Outputs from Chat History
Launch

Many business and consumer apps must extract structured data from conversations between an LLM-powered Assistant and a human user. Often, the extracted data is the objective of the conversation. Consider completing a sales order, making a reservation, or requesting leave. All of these tasks require progressively collecting data from the conversation.

Latency and correctness are important. You will often want to identify the correct data values you have collected and those you still need. You’ll then prompt the LLM to request the latter.

If you’re making multiple calls to an LLM to extract and validate data on every chat turn, you’re likely adding significant latency to your response. This can be a slow and inaccurate exercise, frustrating your users.

Zep Structured Data Extraction is a low-latency, high-accuracy tool for extracting the data you need from Chat History stored in Zep's Long-term Memory service.

Up to 10x faster than gpt-4o. For many multi-field extraction tasks, you can expect latency of under 400ms, with the addition of fields increasing latency sub-linearly.

Comparing Zep with LLM JSON Mode and Structured Outputs

Many model providers offer a JSON and/or Structured Outputs inference mode that guarantees the output will be well-formed JSON, or in the case of Structured Output, is valid according to a provided schema.

However:

  • There are no guarantees that the field values themselves will conform to the JSON Schema you define (beyond primitive data types) or that they are correct (vs. being hallucinated).
  • All fields are extracted in a single inference call, with additional fields adding linearly or greater to extraction latency.

Preprocessing, Guided LLM Output, and Validation

To ensure that the structured output is in the format you expect and is valid given the current dialog, Zep uses a combination of:

  • dialog preprocessing, which, amongst other things, improves accuracy for machine-transcribed dialogs;
  • using guided output inference techniques on LLMs running on our own infrastructure;
  • and post-inference validation.

You will not receive back data in an incorrect format when using a Zep field type such as a RegEx pattern, email, zip code, or date time.

While there are limits to the extraction accuracy when the conversation is very nuanced or ambiguous, carefully crafting field descriptions can achieve high accuracy in most cases.

Up to 10x Faster than OpenAI gpt-4o

When comparing like-to-like JSON Schema model extraction against gpt-4o, Zep is up to 10x faster.

Zep's extraction latency scales sub-linearly with the number of fields in your model. That is, you may add additional fields with a low marginal increase in latency.

Using Zep's Structured Data Extraction for Structured Output

To extract data with Zep, you define a model for the required data. Each model comprises a set of fields, each of which has a type and description. Careful construction of the field description is key to successful data extraction.

from pydantic import Field
from zep_cloud.extractor import ZepModel, ZepText, ZepEmail, ZepDate

class SalesLead(ZepModel):
    company_name: Optional[ZepText] = Field(
        description="The company name", default=None
    )
    lead_name: Optional[ZepText] = Field(
        description="The lead's name", default=None
    )
    lead_email: Optional[ZepEmail] = Field(
        description="The lead's email", default=None
    )
    lead_phone: Optional[ZepPhoneNumber] = Field(
        description="The lead's phone number", default=None
    )
    budget: Optional[ZepFloat] = Field(
        description="The lead's budget for the product", default=None
    )
    product_name: Optional[ZepRegex] = Field(
        description="The name of the product the lead is interested in",
        pattern=r"(TimeMachine|MagicTransporter)", default=None
    )
    zip_code: Optional[ZepZipCode] = Field(
        description="The company zip code", default=None
    )

Zep supports a wide variety of field types natively. Where Zep does not support a native field type, you can use a ZepRegex field to extract a string that matches a structure you define.

extracted_data: SalesLead = client.memory.extract(
    session_id, 
    SalesLead, 
    last_n=8,
)

Running the extract method on the Zep memory client calls to the Zep service and populates your model with data from a chat history in Zep's memory store.

Both Zep's TypeScript and Python SDKs support Structured Data Extraction.

Using Progressive Data Extraction To Guide LLMs

Your application may need to collect several fields to accomplish a task. You can guide the LLM through this process by calling extract on every chat turn, identifying which fields are still needed, providing a partially populated model to the LLM, and directing the LLM to collect the remaining data.

You have already collected the following data:
- Company name: Acme Inc.
- Lead name: John Doe
- Lead email: [email protected]

You still need to collect the following data:
- Lead phone number
- Lead budget
- Product name
- Zip code

Do not ask for all fields at once. Rather, work the fields 
into your conversation with the user and gradually collect the data.

As each field is populated, you may copy these values into an immutable data structure. Alternatively, if existing values change as the conversation progresses, you can apply a heuristic informed by your business rules to update the data structure with the new values.

Support for Partial and Relative Dates

Zep understands various date and time formats, including relative times such as “yesterday” or “last week.” It can also parse partial dates and times, such as “at 3pm” or “on the 15th.”

Extracting from Speech Transcripts

Zep can understand and extract data from machine-transcribed transcripts. Spelled out numbers and dates will be parsed as if written language. Utterances such as “uh” or “um” are ignored.

Next Steps

  1. Learn more in the Zep Structured Data Guide.
  2. Sign up for Zep's Long-term Memory Service for AI Assistants.