Skip to content

Commit 5ef93cf

Browse files
committed
Update doc v1
1 parent 6fbc7e8 commit 5ef93cf

9 files changed

+25
-176
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,5 @@ jobs:
2626
restore-keys: |
2727
mkdocs-material-
2828
- run: pip install mkdocs-material
29+
- run: pip install "mkdocs-material[imaging]"
2930
- run: mkdocs gh-deploy --force

docs/advance_agents.md

-161
This file was deleted.

docs/examples/connect-through-network.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Tutorial: Setting Up Remote Admin and Worker Agents
1+
# Remote Agent Networking
22

33
This tutorial will guide you through setting up a remote admin agent and a worker agent on separate computers using the
44
Ceylon framework. We'll explain the process step-by-step and provide insights into how the system works.

docs/examples/meeting-sechdular.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Advanced Meeting Scheduler Tutorial
1+
# Meeting Scheduler
22

33
## Introduction
44

docs/examples/single-item-auction.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Single-Item Auction System with Ceylon
1+
## Single Item Auction
22

33
## Introduction
44

docs/examples/task-manager.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Building a Distributed Task Management System with Ceylon
1+
## Distributed Task Manager
22

33
### Overview
44

docs/getting_started_guide.md docs/getting_start.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Ceylon Agent Framework - Getting Started Guide
1+
# Getting Start Guide
22

33
## Installation
44

docs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Ceylon: Multi-Agent Framework
1+
# Introduction
22

33
> Empowering Collaboration, Simplifying Complexity
44

mkdocs.yml

+18-9
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,35 @@
1-
site_name: "Ceylon: A Multi-Agent System (MAS)"
1+
site_name: "Ceylon AI"
22
site_url: "https://ceylon.ai"
33

4-
copyright: © SYIGEN LTD. 2023 to present
4+
copyright: Copyright 2025 Syigen LTD
55
extra:
66
# hide the "Made with Material for MkDocs" message
77
generator: false
8+
version:
9+
provider: ceylon
10+
811
theme:
912
name: "material"
1013
# custom_dir: docs/.overrides
1114
palette:
1215
- media: "(prefers-color-scheme)"
1316
scheme: default
14-
primary: purple
15-
accent: pink
17+
primary: black
18+
accent: purple
1619
toggle:
1720
icon: material/lightbulb
1821
name: "Switch to light mode"
1922
- media: "(prefers-color-scheme: light)"
2023
scheme: default
21-
primary: purple
22-
accent: pink
24+
primary: black
25+
accent: purple
2326
toggle:
2427
icon: material/lightbulb-outline
2528
name: "Switch to dark mode"
2629
- media: "(prefers-color-scheme: dark)"
2730
scheme: slate
28-
primary: dark-purple
29-
accent: pink
31+
primary: black
32+
accent: purple
3033
toggle:
3134
icon: material/lightbulb-auto-outline
3235
name: "Switch to system preference"
@@ -46,5 +49,11 @@ theme:
4649
# - navigation.tabs # don't use navbar tabs
4750
logo: "img/logo.png"
4851
favicon: "favicon.ico"
52+
locale: en
53+
highlightjs: true
54+
55+
use_directory_urls: false
4956

50-
use_directory_urls: false
57+
plugins:
58+
- search
59+
- tags

0 commit comments

Comments
 (0)