
Define an annotation task (deprecated)
task.RdUsage
task(name, system_prompt, type_def, input_type = c("text", "image"))Details
task() has been deprecated in favor of qlm_codebook(). The new function
returns an object with dual class inheritance that works with both the old
and new APIs.
See also
qlm_codebook() for the replacement function.
Examples
if (FALSE) { # \dontrun{
# Deprecated usage
my_task <- task(
name = "Sentiment",
system_prompt = "Rate the sentiment from -1 (negative) to 1 (positive).",
type_def = type_object(
score = type_number("Sentiment score from -1 to 1"),
explanation = type_string("Brief explanation")
)
)
# New recommended usage
my_codebook <- qlm_codebook(
name = "Sentiment",
instructions = "Rate the sentiment from -1 (negative) to 1 (positive).",
schema = type_object(
score = type_number("Sentiment score from -1 to 1"),
explanation = type_string("Brief explanation")
)
)
} # }