You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ The standard covers the following aspects
26
26
27
27
## Getting Started
28
28
29
-
- 📚 **Explore the Documentation:** Visit the [Documentation Site](https://improved-adventure-3jj129k.pages.github.io/) for a complete overview, the full specification, tutorials, and guides.
29
+
- 📚 **Explore the Documentation:** Visit the [Documentation Site](https://zenitysec.github.io/AOS/) for a complete overview, the full specification, tutorials, and guides.
30
30
- 📝 **View the Specification:**[Specification](https://github.com/zenitysec/AOS/tree/main/specification)
|`kind`|`"text"` (literal) | Yes | Identifies this part as textual content. |
185
185
|`text`|`string`| Yes | The textual content of the part. |
186
186
|`metadata`|`Record<string, any>`| No | Optional metadata specific to this text part. |
@@ -433,8 +433,8 @@ This method should be used after the agent's input is extracted from the trigger
433
433
|`trigger`|[`AgentTrigger`](#36-agenttrigger-object)| Yes | The trigger that activated the agent. |
434
434
435
435
436
-
#### 4.1.2. **Response on success**: [`AOSSuccessResponse`](#51-AOSSuccessResponse-object).
437
-
#### 4.1.3. **Response on failure**: [`JSONRPCErrorResponse`](#313-jsonrpcerrorresonse-object).
436
+
#### 4.1.2. **Response on success**: [`AOSSuccessResponse`](#51-aossuccessresponse-object).
437
+
#### 4.1.3. **Response on failure**: [`JSONRPCErrorResponse`](#52-jsonrpcerrorresonse-object).
438
438
439
439
440
440
### 4.2. steps/knowledgeRetrieval
@@ -453,8 +453,8 @@ There are many retrieval techniques including semantic search (embedding-based s
453
453
|`reasoning`|`string`| No | Agent's reasoning. |
454
454
455
455
456
-
#### 4.2.2. **Response on success**: [`AOSSuccessResponse`](#51-AOSsuccessresponse-object).
457
-
#### 4.2.3. **Response on failure**: [`JSONRPCErrorResponse`](#313-jsonrpcerrorresonse-object).
456
+
#### 4.2.2. **Response on success**: [`AOSSuccessResponse`](#51-aossuccessresponse-object).
457
+
#### 4.2.3. **Response on failure**: [`JSONRPCErrorResponse`](#52-jsonrpcerrorresonse-object).
458
458
459
459
### 4.3. steps/memoryStore
460
460
This step refers to the process of memorizing and store memory to the memory store for additional context for future or current agent interactions.<br>
@@ -469,8 +469,8 @@ Mostly, interaction history or a summary is stored to the memory store.
469
469
|`reasoning`|`string`| No | Agent's reasoning. |
470
470
471
471
472
-
#### 4.3.2. **Response on success**: [`AOSSuccessResponse`](#51-AOSsuccessresponse-object).
473
-
#### 4.3.3. **Response on failure**: [`JSONRPCErrorResponse`](#313-jsonrpcerrorresonse-object).
472
+
#### 4.3.2. **Response on success**: [`AOSSuccessResponse`](#51-aossuccessresponse-object).
473
+
#### 4.3.3. **Response on failure**: [`JSONRPCErrorResponse`](#52-jsonrpcerrorresonse-object).
474
474
475
475
476
476
### 4.4. steps/memoryContextRetrieval
@@ -487,8 +487,8 @@ This context is passed alongside with the agent's instructions(system prompt), u
487
487
|`reasoning`|`string`| No | Agent's reasoning. |
488
488
489
489
490
-
#### 4.4.2. **Response on success**: [`AOSSuccessResponse`](#51-AOSsuccessresponse-object).
491
-
#### 4.4.3. **Response on failure**: [`JSONRPCErrorResponse`](#313-jsonrpcerrorresonse-object).
490
+
#### 4.4.2. **Response on success**: [`AOSSuccessResponse`](#51-aossuccessresponse-object).
491
+
#### 4.4.3. **Response on failure**: [`JSONRPCErrorResponse`](#52-jsonrpcerrorresonse-object).
492
492
493
493
494
494
### 4.5. steps/message
@@ -508,8 +508,8 @@ A message with `system` role represents a message from the system, such as guard
508
508
|`reasoning`|`string`| No | Agent's reasoning. Should be used with `agent` or `system` message. |
509
509
510
510
511
-
#### 4.5.2. **Response on success**: [`AOSSuccessResponse`](#51-AOSsuccessresponse-object).
512
-
#### 4.5.3. **Response on failure**: [`JSONRPCErrorResponse`](#313-jsonrpcerrorresonse-object).
511
+
#### 4.5.2. **Response on success**: [`AOSSuccessResponse`](#51-aossuccessresponse-object).
512
+
#### 4.5.3. **Response on failure**: [`JSONRPCErrorResponse`](#52-jsonrpcerrorresonse-object).
513
513
514
514
515
515
### 4.6. steps/toolCallRequest
@@ -527,8 +527,8 @@ This method should be used after tool inputs are inferred by the LLM and before
527
527
528
528
529
529
530
-
#### 4.5.2. **Response on success**: [`AOSSuccessResponse`](#51-AOSsuccessresponse-object).
531
-
#### 4.5.3. **Response on failure**: [`JSONRPCErrorResponse`](#313-jsonrpcerrorresonse-object).
530
+
#### 4.5.2. **Response on success**: [`AOSSuccessResponse`](#51-aossuccessresponse-object).
531
+
#### 4.5.3. **Response on failure**: [`JSONRPCErrorResponse`](#52-jsonrpcerrorresonse-object).
532
532
533
533
### 4.6. steps/toolCallResult
534
534
This method should be used after tool is completed and before the result goes back into the LLM for further processing.
@@ -550,8 +550,8 @@ This method should be used after tool is completed and before the result goes ba
550
550
|`isError`|`boolean`| Yes | Whether tool completed successfully or resulted in an error. |
551
551
552
552
553
-
#### 4.6.2. **Response on success**: [`AOSSuccessResponse`](#51-AOSsuccessresponse-object).
554
-
#### 4.6.3. **Response on failure**: [`JSONRPCErrorResponse`](#313-jsonrpcerrorresonse-object).
553
+
#### 4.6.2. **Response on success**: [`AOSSuccessResponse`](#51-aossuccessresponse-object).
554
+
#### 4.6.3. **Response on failure**: [`JSONRPCErrorResponse`](#52-jsonrpcerrorresonse-object).
555
555
556
556
557
557
### 4.7. protocols/A2A
@@ -569,8 +569,8 @@ Read more about A2A support in [extend_a2a](../instrument/extend_a2a.md).
0 commit comments