From 2c2cb9d2d82d93633d686676d7560d3e520cfc83 Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Thu, 25 Jan 2024 23:14:13 +0900 Subject: [PATCH] Update output-parser.adoc (#250) ouput -> output --- .../src/main/antora/modules/ROOT/pages/api/output-parser.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/output-parser.adoc b/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/output-parser.adoc index e8a06cffa..f5971e942 100644 --- a/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/output-parser.adoc +++ b/spring-ai-docs/src/main/antora/modules/ROOT/pages/api/output-parser.adoc @@ -2,7 +2,7 @@ = Output Parsers -The `OutputParser` interface allows you to obtain structured output, for example mapping the output to a Java class or an array of values from the String based ouput of AI Models. +The `OutputParser` interface allows you to obtain structured output, for example mapping the output to a Java class or an array of values from the String based output of AI Models. You can think of it in terms similar to Spring JDBC's concept of a `RowMapper` or `ResultSetExtractor`. Developers want to quickly turn results from an AI model into data types that can be passed to other functions and methods in their application.