* Serve LLM instructions at `/llm` * Include markdown content for memory instructions * Update README with LLM integration details * Add tests for LLM instructions handler * Modify database migrations to use GUIDs for thoughts and projects
9 lines
88 B
Go
9 lines
88 B
Go
package llm
|
|
|
|
import _ "embed"
|
|
|
|
var (
|
|
//go:embed memory.md
|
|
MemoryInstructions []byte
|
|
)
|