Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions src/CrestApps.Core.Docs/docs/core/default-orchestrator.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,3 @@ builder.Services
.AddCoreAIOpenAI();
```

## Relationship to the orchestration docs

This page is the conceptual overview for the built-in orchestrator.

Use **[Orchestration](./orchestration.md)** for the full pipeline details, registered services, progressive tool scoping, configuration knobs, and extension points.
8 changes: 3 additions & 5 deletions src/CrestApps.Core.Docs/docs/core/orchestration.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
sidebar_label: Orchestration
sidebar_label: Overview
sidebar_position: 4
title: Orchestration
title: Overview
description: The orchestration pipeline manages tool calling, progressive scoping, RAG, and the agentic execution loop.
---

# Orchestration
# Overview

> High-level agentic pipeline that manages tool calling, progressive scoping, retrieval-augmented generation, and streaming responses.

Expand Down Expand Up @@ -412,5 +412,3 @@ Errors from AI providers (rate limits, authentication failures, server errors) p
| `OperationCanceledException` | Re-thrown immediately |
| Provider error (rate limit, auth, etc.) | Propagated to caller |
| Tool execution error | Logged, tool result indicates failure, model continues |


29 changes: 1 addition & 28 deletions src/CrestApps.Core.Docs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/CrestApps.Core.Docs/sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ const sidebars = {
label: 'Core',
collapsed: false,
items: [
'core/architecture',
'core/index',
'core/core-services',
'core/extensible-entity',
'core/architecture',
'core/getting-started-aspnet',
'core/index',
'core/interfaces',
'core/extensible-entity',
'core/mvc-example',
],
},
Expand Down Expand Up @@ -44,8 +44,8 @@ const sidebars = {
type: 'category',
label: 'Orchestrators',
items: [
'core/default-orchestrator',
'core/orchestration',
'core/default-orchestrator',
'core/copilot',
'core/claude',
],
Expand Down
36 changes: 36 additions & 0 deletions src/CrestApps.Core.Docs/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,39 @@
.footer--dark a:hover {
color: #eaa52c;
}

.theme-doc-sidebar-menu .menu__list .menu__list {
margin-top: 0.35rem;
margin-left: 0.5rem;
padding: 0.4rem 0.45rem 0.45rem;
border-left: 1px solid rgba(24, 22, 24, 0.12);
border-radius: 0.5rem;
}

.theme-doc-sidebar-item-category-level-1 > .menu__list {
background-color: rgba(24, 22, 24, 0.04);
}

.theme-doc-sidebar-item-category-level-2 > .menu__list {
background-color: rgba(24, 22, 24, 0.08);
}

.theme-doc-sidebar-item-category-level-3 > .menu__list {
background-color: rgba(24, 22, 24, 0.12);
}

[data-theme='dark'] .theme-doc-sidebar-menu .menu__list .menu__list {
border-left-color: rgba(217, 217, 217, 0.16);
}

[data-theme='dark'] .theme-doc-sidebar-item-category-level-1 > .menu__list {
background-color: rgba(217, 217, 217, 0.04);
}

[data-theme='dark'] .theme-doc-sidebar-item-category-level-2 > .menu__list {
background-color: rgba(217, 217, 217, 0.08);
}

[data-theme='dark'] .theme-doc-sidebar-item-category-level-3 > .menu__list {
background-color: rgba(217, 217, 217, 0.12);
}
Loading