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