-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
103 lines (103 loc) · 2.66 KB
/
mkdocs.yml
File metadata and controls
103 lines (103 loc) · 2.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
site_name: Blackgeorge
site_description: Code-first agentic framework built around Desk, Worker, and Workforce.
site_url: https://jolovicdev.github.io/blackgeorge/
docs_dir: docs
theme:
name: material
palette:
- scheme: default
primary: blue grey
accent: indigo
toggle:
icon: material/weather-night
name: Switch to dark mode
- scheme: slate
primary: blue grey
accent: indigo
toggle:
icon: material/weather-sunny
name: Switch to light mode
features:
- navigation.tabs
- navigation.top
- toc.follow
- search.highlight
- search.suggest
- content.code.copy
plugins:
- search
- llmstxt:
markdown_description: Code-first agentic framework built around Desk, Worker, and Workforce primitives for building predictable AI agents with tool calling, structured output, and multi-agent coordination.
full_output: llms-full.txt
sections:
Core Documentation:
- quickstart.md
- tutorials.md
- concepts.md
- desk.md
- worker.md
- workforce.md
- session.md
- workflow.md
- tools.md
- subworkers.md
- tool-hooks.md
- collaboration.md
- events.md
- event-payloads.md
- exceptions.md
- core-types.md
- multimodal.md
Advanced Features:
- storage.md
- memory.md
- adapters.md
Reference:
- configuration.md
- logging.md
Examples:
- examples.md
Development:
- development.md
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
line_spans: __line
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- tables
- toc:
permalink: true
exclude_docs: README.md
nav:
- Home: index.md
- Quickstart: quickstart.md
- Tutorials: tutorials.md
- Concepts: concepts.md
- Desk: desk.md
- Worker: worker.md
- Workforce: workforce.md
- WorkerSession: session.md
- Workflow: workflow.md
- Tools: tools.md
- Subworkers: subworkers.md
- Tool hooks: tool-hooks.md
- Collaboration: collaboration.md
- Events and streaming: events.md
- Event payloads: event-payloads.md
- Exceptions: exceptions.md
- Multimodal: multimodal.md
- Storage: storage.md
- Memory: memory.md
- Adapters: adapters.md
- Core types: core-types.md
- Configuration: configuration.md
- Logging: logging.md
- Examples: examples.md
- Development: development.md
- AGENTS.md: agents-md.md