package spells import "gitea.maximumdirect.net/eric/notarius/internal/framework/llm" const ( PromptID = "dnd.spells" ResponseSchemaKey = llm.ResponseSchemaKey("dnd_spells") ResponseSchemaID = "notarius.dnd.spells" ResponseSchemaName = "notarius_dnd_spells_v1" ) func loadResponseSchema() (llm.ResponseSchema, error) { return llm.LoadResponseSchema(embeddedAssets, llm.ResponseSchemaDefinition{ Key: ResponseSchemaKey, ID: ResponseSchemaID, Version: SchemaVersion, Name: ResponseSchemaName, AssetPath: "assets/schemas/dnd_spells.v1.json", }) }