Currently Instructor Agents only work with OpenAI models.
Initialization
Parameters
TheInstructorTextAgent
is initialized with two arguments:
Specifies the structure of the data that the OpenAI API is expected to return. This structured model helps in parsing and validating the data returned from the API, ensuring it adheres to the expected format.This parameter expects a class that is a subclass of
BaseModel
from the pydantic
library.Specifies the model identifier used by the OpenAI API to process the image. The default value is
"gpt-4o"
.You can find a comprehensive list of all OpenAI API models here.Execution
Parameters
TheWorkflow
is expected to have some sort of text input that needs to be processed.
Example
Here is an example of theInstructorTextAgent
as part of a Workflow
for counting vehicles.
Step 1. Define a response_model
.
example.py
InstructorTextAgent
.
example.py