From 9e5eff18fb7a4dfd532cc290878d1a421483d696 Mon Sep 17 00:00:00 2001 From: DadySu <32805872+DadySu@users.noreply.github.com> Date: Tue, 2 Jul 2024 02:49:26 +0800 Subject: [PATCH] Ref docs cleanup - Function Calling chapter (#985) Add line break in Function Calling chapter --- .../src/main/antora/modules/ROOT/pages/concepts.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-ai-docs/src/main/antora/modules/ROOT/pages/concepts.adoc b/spring-ai-docs/src/main/antora/modules/ROOT/pages/concepts.adoc index 10a9a3d5b..712bad741 100644 --- a/spring-ai-docs/src/main/antora/modules/ROOT/pages/concepts.adoc +++ b/spring-ai-docs/src/main/antora/modules/ROOT/pages/concepts.adoc @@ -187,8 +187,8 @@ image::function-calling-basic-flow.jpg[Function calling, width=700, align="cente Later provides the `name`, `description` (e.g. explaining when the Model should call the function), and `input parameters` (e.g. the function's input parameters schema). * (2) when the Model decides to call the function, it will call the function with the input parameters and return the output to the model. * (3) Spring AI handles this conversation for you. -It dispatches the function call to the appropriate function and returns the result to the model (4). -Model can perform multiple function calls to retrieve all the information it needs. +It dispatches the function call to the appropriate function and returns the result to the model. +* (4) Model can perform multiple function calls to retrieve all the information it needs. * (5) once all information needed is acquired, the Model will generate a response. Follow the xref::api/functions.adoc[Function Calling] documentation for further information on how to use this feature with different AI models.