Skip to content

Commit 7a8a81b

Browse files
committed
Minor change
1 parent bf0bf46 commit 7a8a81b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/sqlite-ai.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ SQLITE_EXTENSION_INIT1
5050
#define LOG_TABLE_INSERT_STMT "INSERT INTO ai_log (type, message) VALUES (?, ?);"
5151

5252
// CONTEXT OPTIONS
53-
#define OPTION_KEY_CONTEXT_SIZE "context_size"
5453
#define OPTION_KEY_N_CTX "n_ctx"
5554
#define OPTION_KEY_N_BATCH "n_batch"
5655
#define OPTION_KEY_N_UBATCH "n_ubatch"
@@ -77,6 +76,8 @@ SQLITE_EXTENSION_INIT1
7776
#define OPTION_KEY_SWA_FULL "swa_full"
7877
#define OPTION_KEY_TYPE_KV_UNIFIED "kv_unified"
7978

79+
// CUSTOM
80+
#define OPTION_KEY_CONTEXT_SIZE "context_size"
8081
#define OPTION_KEY_GENERATE_EMBEDDING "generate_embedding"
8182
#define OPTION_KEY_NORMALIZE_EMBEDDING "normalize_embedding"
8283
#define OPTION_KEY_JSON_OUTPUT "json_output"

0 commit comments

Comments
 (0)