We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf0bf46 commit 7a8a81bCopy full SHA for 7a8a81b
src/sqlite-ai.c
@@ -50,7 +50,6 @@ SQLITE_EXTENSION_INIT1
50
#define LOG_TABLE_INSERT_STMT "INSERT INTO ai_log (type, message) VALUES (?, ?);"
51
52
// CONTEXT OPTIONS
53
-#define OPTION_KEY_CONTEXT_SIZE "context_size"
54
#define OPTION_KEY_N_CTX "n_ctx"
55
#define OPTION_KEY_N_BATCH "n_batch"
56
#define OPTION_KEY_N_UBATCH "n_ubatch"
@@ -77,6 +76,8 @@ SQLITE_EXTENSION_INIT1
77
76
#define OPTION_KEY_SWA_FULL "swa_full"
78
#define OPTION_KEY_TYPE_KV_UNIFIED "kv_unified"
79
+// CUSTOM
80
+#define OPTION_KEY_CONTEXT_SIZE "context_size"
81
#define OPTION_KEY_GENERATE_EMBEDDING "generate_embedding"
82
#define OPTION_KEY_NORMALIZE_EMBEDDING "normalize_embedding"
83
#define OPTION_KEY_JSON_OUTPUT "json_output"
0 commit comments