From bdf4c1cd6a22ad86225b58bb8069435bf4366ca6 Mon Sep 17 00:00:00 2001 From: Jason Liu Date: Tue, 30 Jan 2024 20:33:56 -0500 Subject: [PATCH] bump --- docs/examples/batch_classification.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/examples/batch_classification.md b/docs/examples/batch_classification.md index 5c0d02d..2570f9e 100644 --- a/docs/examples/batch_classification.md +++ b/docs/examples/batch_classification.md @@ -145,11 +145,11 @@ Finally, we'll implement the main function to run the classification using the ` ```python tags = [ - TagWithDescription(id=0, name="personal", description="Personal information"), - TagWithDescription(id=1, name="phone", description="Phone number"), - TagWithDescription(id=2, name="email", description="Email address"), - TagWithDescription(id=3, name="address", description="Address"), - TagWithDescription(id=4, name="Other", description="Other information"), + TagWithInstructions(id=0, name="personal", instructions="Personal information"), + TagWithInstructions(id=1, name="phone", instructions="Phone number"), + TagWithInstructions(id=2, name="email", instructions="Email address"), + TagWithInstructions(id=3, name="address", instructions="Address"), + TagWithInstructions(id=4, name="Other", instructions="Other information"), ] # Texts will be a range of different questions.