Files
letta-server/fern/project.json
Cameron Pfiffer 0e46337eeb docs(fern): migrate and reorganize documentation structure (#5122)
- Add mermaid diagrams for agent concepts (reasoning loop, memory hierarchy, etc.)
- Reorganize agent documentation pages with improved structure
- Add new tutorial content and images
- Update API documentation and OpenAPI specs
- Add archival memory documentation
- Improve getting started guides
2025-10-07 17:50:50 -07:00

24 lines
529 B
JSON

{
"name": "docs",
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/core/fern",
"projectType": "application",
"tags": [],
"targets": {
"dev": {
"executor": "nx:run-commands",
"options": {
"cwd": "apps/core/fern",
"command": "fern docs dev"
}
},
"generate-openapi": {
"executor": "nx:run-commands",
"options": {
"cwd": "apps/core/fern",
"command": "ts-node ./scripts/prepare-openapi.ts"
}
}
}
}