From ff3c16bb953c38bd187c92922be2e5b6c06ff535 Mon Sep 17 00:00:00 2001
From: Sivert2101 <sivert.aasdalen@gmail.com>
Date: Tue, 22 Oct 2024 16:22:10 +0200
Subject: [PATCH] fixed context output

---
 llama/main_automatic.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/llama/main_automatic.go b/llama/main_automatic.go
index d9859ea..a4b3365 100644
--- a/llama/main_automatic.go
+++ b/llama/main_automatic.go
@@ -63,8 +63,8 @@ func main() {
 		}
 
 		// Update the conversation context with the response
-		//conversationContext = updatedContext
-		fmt.Println(updatedContext)
+		conversationContext = updatedContext
+		//fmt.Println(updatedContext)
 
 		generatedCode, _ := extraction.Extract(response) // Handle error with string
 
-- 
GitLab