c04e7c31af
workflow-role-llm now only contains LLM-as-agent specifics: - createRole (wires agent + extract) - createLlmAdapter (OpenAI chat completions agent) workflow-util-role now provides all role infrastructure: - decorators (decorateRole, withDryRun, onFail) - llmExtract / extractMetaOrThrow (structured extraction) - buildDescriptorFromRoles (zod → JSON Schema) - LlmProvider, LlmMessage types
15 lines
297 B
JSON
15 lines
297 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"outDir": "dist",
|
|
"composite": true
|
|
},
|
|
"include": ["src/**/*.ts"],
|
|
"references": [
|
|
{ "path": "../workflow" },
|
|
{ "path": "../workflow-role-llm" },
|
|
{ "path": "../workflow-util-role" }
|
|
]
|
|
}
|