From a136e12aeec2649ac90de5400b2ff86f69a2f625 Mon Sep 17 00:00:00 2001 From: sheng-liang Date: Sat, 10 Feb 2024 21:11:41 -0800 Subject: [PATCH] Delete examples/tables.gpt It is superceded by sqlite-download.gpt Signed-off-by: sheng-liang --- examples/tables.gpt | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 examples/tables.gpt diff --git a/examples/tables.gpt b/examples/tables.gpt deleted file mode 100644 index edb2e4b8..00000000 --- a/examples/tables.gpt +++ /dev/null @@ -1,15 +0,0 @@ -Tools: sqlite - -I have the file sqlite database file /home/darren/src/openai-cookbook/examples/data/Chinook.db. - -What is the table with the most amount of rows in it? - ---- -Name: sqlite -Description: The sqlite command line program. This tool is used to run sqlite command or SQL statements against a database. The result of this tool will be the output of the executed command or statement. -Arg: databaseFile: The filename of the database to open -Arg: cmd: The sqlite command or sql statement to run. - -#!/bin/bash - -sqlite3 ${DATABASEFILE} -cmd "${CMD}"