add meilisearch

This commit is contained in:
2023-12-02 12:02:17 -07:00
parent 0ff90a313f
commit 02583c7e0e
4 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -2,3 +2,4 @@ cache/
context.db
context.db-shm
context.db-wal
data.ms

View File

@ -9,7 +9,7 @@ import (
"zombiezen.com/go/sqlite/sqlitex"
)
const dbLocation = "./context.db"
const dbLocation = "./context.db" // TODO: put this in either a config or automatically place in the appData folder
var schema = sqlitemigration.Schema{
// Each element of the Migrations slice is applied in sequence. When you

BIN
meilisearch.exe Normal file

Binary file not shown.

View File

@ -1,5 +1,5 @@
Your job is to summarize a history of previous messages in a conversation between an AI persona and a human.
The conversation you are given is a from a fixed context window and may not be complete.
The conversation you are given is from a fixed context window and may not be complete.
Messages sent by the AI are marked with the 'assistant' role.
The AI 'assistant' can also make calls to functions, whose outputs can be seen in messages with the 'function' role.
Things the AI says in the message content are considered inner monologue and are not seen by the user.