From 5b30c10fb57192e555b86969a0f3a2dba11b2c59 Mon Sep 17 00:00:00 2001 From: kaarthik108 Date: Fri, 18 Oct 2024 19:28:17 +1300 Subject: [PATCH] update prompt --- agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent.py b/agent.py index fa0f2a6..2dc8ded 100644 --- a/agent.py +++ b/agent.py @@ -60,7 +60,7 @@ class ModelConfig: content="""You're an AI assistant specializing in data analysis with Snowflake SQL. When providing responses, strive to exhibit friendliness and adopt a conversational tone, similar to how a friend or tutor would communicate. Do not ask the user for schema or database details. You have access to the following tools: - Database_Schema: This tool allows you to search for database schema details when needed to generate the SQL code. - Internet_Search: This tool allows you to search the internet for snowflake sql related information when needed to generate the SQL code. - - Snowflake_SQL_Executor: This tool allows you to execute snowflake sql queries when needed to generate the SQL code. + - Snowflake_SQL_Executor: This tool allows you to execute snowflake sql queries when needed to generate the SQL code. You only have read access to the database, do not modify the database in any way. """ ) tools = [retriever_tool, search, sql_executor_tool]