cai/mkdocs.yml

164 lines
4.6 KiB
YAML

site_name: CAI
theme:
name: material
features:
# Allows copying code blocks
- content.code.copy
# Allows selecting code blocks
- content.code.select
# Shows the current path in the sidebar
- navigation.path
# Shows sections in the sidebar
- navigation.sections
# Shows sections expanded by default
- navigation.expand
# Enables annotations in code blocks
- content.code.annotate
palette:
primary: black
logo: assets/imago.png
#favicon: images/favicon-platform.svg
nav:
- Introduction: index.md
- Installation: cai_installation.md
- Quickstart: cai_quickstart.md
- List of Models: cai_list_of_models.md
- Architecture: cai_architecture.md
- Development: cai_development.md
- Start Building:
#- Intro: index.md
#- Quickstart: quickstart.md
#- Examples: examples.md
- Documentation:
- agents.md #
- running_agents.md
- results.md
- streaming.md
- tools.md
- mcp.md
- handoffs.md
- tracing_cai.md
- context.md
- guardrails.md
#- multi_agent.md
#- models.md
#- config.md
#- visualization.md
# - Voice agents:
# - voice/quickstart.md
# - voice/pipeline.md
# - voice/tracing.md
- API Reference:
- Agents:
- ref/index.md
- ref/agent.md
- ref/run.md
- ref/tool.md
- ref/result.md
- ref/stream_events.md
- ref/handoffs.md
- ref/lifecycle.md
- ref/items.md
- ref/run_context.md
- ref/usage.md
- ref/exceptions.md
- ref/guardrail.md
- ref/model_settings.md
- ref/agent_output.md
- ref/function_schema.md
- ref/models/interface.md
- ref/models/openai_chatcompletions.md
- ref/models/openai_responses.md
- ref/mcp/server.md
- ref/mcp/util.md
# - Tracing:
# - ref/tracing/index.md
# - ref/tracing/create.md
# - ref/tracing/traces.md
# - ref/tracing/spans.md
# - ref/tracing/processor_interface.md
# - ref/tracing/processors.md
# - ref/tracing/scope.md
# - ref/tracing/setup.md
# - ref/tracing/span_data.md
# - ref/tracing/util.md
# - Voice:
# - ref/voice/pipeline.md
# - ref/voice/workflow.md
# - ref/voice/input.md
# - ref/voice/result.md
# - ref/voice/pipeline_config.md
# - ref/voice/events.md
# - ref/voice/exceptions.md
# - ref/voice/model.md
# - ref/voice/utils.md
# - ref/voice/models/openai_provider.md
# - ref/voice/models/openai_stt.md
# - ref/voice/models/openai_tts.md
- Extensions:
- ref/extensions/handoff_filters.md
- ref/extensions/handoff_prompt.md
- More About CAI:
- FAQ: cai_faq.md
- Find Us: cai_find_us.md
- Citation & Acknowledgments: cai_citation_and_acknowledgments.md
plugins:
- search
- autorefs
- mkdocstrings:
handlers:
python:
paths: ["src"]
selection:
docstring_style: google
options:
# Shows links to other members in signatures
signature_crossrefs: true
# Orders members by source order, rather than alphabetical
members_order: source
# Puts the signature on a separate line from the member name
separate_signature: true
# Shows type annotations in signatures
show_signature_annotations: true
# Makes the font sizes nicer
heading_level: 3
# Show inherited members
inherited_members: true
extra:
# Remove material generation message in footer
generator: false
markdown_extensions:
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: pymdownx.superfences.fence_code_format
- admonition
- codehilite
- pymdownx.details
- attr_list
- md_in_html
- pymdownx.highlight:
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.details
validation:
omitted_files: warn
absolute_links: warn
unrecognized_links: warn
anchors: warn
dev_addr: localhost:8088
extra_css:
- stylesheets/extra.css
watch:
- "src/cai/sdk/agents"