Classes
CLASS InputProcessor
Interface for generic input processors.
An input processor exposes an API to transform a chat completion request into a string prompt.
Methods:
FUNC transform
chat_completion: Structured representation of the inputs to the chat completion request.add_generation_prompt: IfTrue, the returned prompt string will contain a prefix of the next assistant response for use as a prompt to a generation request. Otherwise, the prompt will only contain the messages and documents inchat_completion. Defaults toTrue.
- String that can be passed to the model’s tokenizer to create a prompt for generation.
CLASS OutputProcessor
Base class for generic output processors.
An output processor exposes an API to transform model output into a structured
representation of the information.
This interface is generic; see individual classes for more specific arguments.
Methods:
FUNC transform
model_output: String output of the generation request, potentially incomplete if it was a streaming request.chat_completion: The chat completion request that producedmodel_output. Parameters of the request can determine how the output should be decoded. Defaults toNone.
- The parsed output so far, as an instance of
:class:
AssistantMessagepossibly with model-specific extension fields.
CLASS ChatCompletionRewriter
Base class for objects that rewrite a chat completion request.
Base class for objects that rewrite a chat completion request into another chat
completion request.
Methods:
FUNC transform
ChatCompletion object.
Args:
chat_completion: Original chat completion request, either as a :class:ChatCompletiondataclass, the JSON string representation, or a plain dictionary.**kwargs: Additional keyword arguments forwarded to the underlying :meth:_transformimplementation.
- Rewritten copy of the original chat completion request.
TypeError: Ifchat_completionis not a :class:ChatCompletionobject, a JSON string, or a dictionary.
CLASS ChatCompletionResultProcessor
Base class for chat completion result processors.
Base class for objects that convert the raw json result of a chat completion request
into a JSON object with model-specific postprocessing applied.
Methods:
FUNC transform
chat_completion_response: Response to a chat completion request, provided as a parsed :class:ChatCompletionResponsedataclass, a raw dictionary, or another Pydantic model.chat_completion: The original chat completion request that producedchat_completion_response. Required by some implementations to decode references back to the original request. Defaults toNone.
- Post-processed copy of the chat completion response with model-specific transformations applied.
TypeError: Ifchat_completion_responseis not a supported type.
CLASS Retriever
Base class for document retrievers.
Provides APIs for searching by text snippet and for inserting new documents.
Methods:
FUNC retrieve
query: Query string to use for lookup.top_k: Maximum number of results to return. Defaults to10.
- list[Document]: List of the top-k matching :class:
Documentobjects, each with fields such astext,title, anddoc_id.