Skip to content

Commit d952f01

Browse files
committed
fix: fix broken links
1 parent 64701d6 commit d952f01

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

docs/arc/00-index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ they require perform their tasks.
6464

6565
For example, a Travel Agent may need to know the current Holiday packages that are available.
6666

67-
There are 2 ways to dynamically inject knowledge into an Agent, [Readers](/docs/arc/readers) and [Functions](/docs/arc/dsl/defining_functions).
67+
There are 2 ways to dynamically inject knowledge into an Agent, [Readers](/docs/arc/ccore/readers) and [Functions](/docs/arc/dsl/defining_functions).
6868
Both mechanisms enable Agents to access real-time data.
6969

7070
Static Knowledge can simply be added to the System Prompt of the Agent.
@@ -101,11 +101,11 @@ There are 2 types of memory:
101101

102102
Each information stored in memory is associated with an owner, usually the user defined in the conversation.
103103

104-
See the chapter on [Memory](/docs/arc/memory) for available implementations.
104+
See the chapter on [Memory](/docs/arc/ccore/memory) for available implementations.
105105

106106
### Eventing
107107

108108
Eventing is a great way to decouple communication between different parts of an application.
109109
Agents can emit multiple events during the precessing of a request.
110110

111-
See the [Eventing](/docs/arc/eventing) for more details.
111+
See the [Eventing](/docs/arc/ccore/eventing) for more details.

docs/arc/00-manual_setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ or the Arc Runner, which will automatically set up the framework for you.
99
However, if you want to set up the framework manually and use it in a different frameworks or environments,
1010
you can do so by following the steps below.
1111

12-
> Also: read the [Component Overview](/docs/arc/component_overview) page for a better understanding of core components of the Framework.
12+
> Also: read the [Component Overview](/docs/arc/ccore/component_overview) page for a better understanding of core components of the Framework.
1313
1414

1515
### Loading Agents

docs/arc/01-dsl/Features/extensions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: Extensions
55
Extensions are functions that can be called throughout
66
the Arc Agent DSL and provide additional functionality, such as reading data, logging, and more.
77

8-
`Redaers` are also functions. They are described in the [Readers](/docs/arc/readers) section.
8+
`Redaers` are also functions. They are described in the [Readers](/docs/arc/ccore/readers) section.
99

1010
## System and User Context
1111

docs/arc/01-dsl/gloassary.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ A list of functions that ca be used within the DSL.
1616
| addData | Sets a data set that was loaded. | [More](../Features/data) |
1717
| time | Returns the current time. | [More](../Features/extensions/#time-date-year) |
1818
| debug, info, warn, and error | Logs messages to the logging system | [More](../Features/extensions/#logging) |
19-
| tracer | Returns the AgentTracer. | [More](../../tracing/#adding-custom-traces) |
20-
| memory | Stores and retrieves values from memory. | [More](../../memory) |
19+
| tracer | Returns the AgentTracer. | [More](../../ccore/tracing/#adding-custom-traces) |
20+
| memory | Stores and retrieves values from memory. | [More](../../ccore/memory) |

0 commit comments

Comments
 (0)