From fa8a5d3cb4d54345c0f6987b056f47ee6fe39b5c Mon Sep 17 00:00:00 2001 From: mikeee Date: Tue, 5 Nov 2024 21:57:39 +0000 Subject: [PATCH] fix: index typo Signed-off-by: mikeee --- examples/conversation/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/conversation/main.go b/examples/conversation/main.go index 03c42539..14bcce52 100644 --- a/examples/conversation/main.go +++ b/examples/conversation/main.go @@ -40,5 +40,5 @@ func main() { log.Fatalf("err: %v", err) } - fmt.Printf("conversation output: %s", resp.Outputs[1].Result) + fmt.Printf("conversation output: %s", resp.Outputs[0].Result) }