Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/agents/changeInterfaceColorAgent.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Interface component color changer agent

Is an agent that changes a color of an interface component.
A small agent that updates the color of a user interface component. It accepts a message that names the target component and, optionally, a color value. If no color is provided, the agent picks a random color.

To test you can use messages like `Измени цвет хедера на #001122`, `Поменяй цвет компонента футер на #CC1122` or `Измени цвет компонента основная часть на #00AAFF`.

Expand Down Expand Up @@ -37,5 +37,5 @@ Example of an input structure:

Possible result codes:

* `SC_RESULT_OK` - interface component color is changed successfully;
* `SC_RESULT_ERROR`- `message` or `interface component` is not found.
* `SC_RESULT_OK` - the interface component color was changed successfully.
* `SC_RESULT_ERROR`- the `message` or `interface component` could not be found.
4 changes: 2 additions & 2 deletions docs/agents/changeInterfaceColorAgent.ru.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Данный агент изменяет цвет компонента интерфейса.
Небольшой агент, который обновляет цвет компонента пользовательского интерфейса. Он принимает сообщение с названием целевого компонента и, при необходимости, значением цвета. Если цвет не указан, агент выбирает случайный цвет.

Чтобы протестировать, Вы можете использовать следующие сообщения: `Измени цвет хедера на #001122`, `Поменяй цвет компонента футер на #CC1122` или `Измени цвет компонента основная часть на #00AAFF`.

Expand Down Expand Up @@ -35,5 +35,5 @@

Возможные результаты:

* `SC_RESULT_OK` - успешно изменен цвет компонента интерфейса;
* `SC_RESULT_OK` - цвет компонента интерфейса успешно изменён;
* `SC_RESULT_ERROR`- `message` или `interface component` не найдены.
2 changes: 1 addition & 1 deletion docs/agents/messageReplyAgent.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Also there is the `author` of the message.
**Workflow:**

* The agent generates a message node in the knowledge base, identifying the author of the action as the author of the message and the received text file as the text of that message;
* Then the necessary construction is generated to call the agent of non-atomic action interpretation. An example of this construction is shown below.
* Then the necessary construction is generated to call the agent of non-atomic (consisting of several parts) action interpretation. An example of this construction is shown below.

<img src="../images/messageReplyAgentGener.png"></img>

Expand Down
4 changes: 2 additions & 2 deletions docs/agents/messageReplyAgent.ru.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@

**Ход работы агента:**

* Агент генерирует узел сообщения в базе знаний, идентифицирующий автора действия как автора сообщения, а полученный текстовый файл - как текст этого сообщения;
* Затем генерируется необходимая конструкция для вызова агента интерпретации неатомарного действия. Пример этой конструкции показан ниже.
* Агент генерирует узел сообщения в базе знаний, идентифицирующий автора действия - как автора сообщения, а полученный текстовый файл - как текст этого сообщения;
* Затем генерируется необходимая конструкция для вызова агента интерпретации неатомарного (состоящего из нескольких частей) действия. Пример этой конструкции показан ниже.

<img src="../images/messageReplyAgentGener.png"></img>

Expand Down