c179e014ad
CI / build-and-test (push) Failing after 1m52s
* Introduce project_personas table with foreign keys to projects and agent_personas * Add project_skills table with foreign key to projects and agent_skills * Include override boolean field in agent_persona_skills and project_skills * Update schema and migration files to reflect new tables and fields * Enhance CORS handling to reflect request origin
12 lines
146 B
Go
12 lines
146 B
Go
package llm
|
|
|
|
import _ "embed"
|
|
|
|
var (
|
|
//go:embed memory.md
|
|
MemoryInstructions []byte
|
|
|
|
//go:embed world_model_intro.md
|
|
WorldModelIntro []byte
|
|
)
|