Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IO not actions #1187

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion site/docs/plugins/conversations.md
Original file line number Diff line number Diff line change
Expand Up @@ -1264,7 +1264,7 @@ This allows you to create a checkpoint along the way.
A checkpoint contains information about how far the function has run so far.
It can be used to later jump back to this point.

Naturally, any actions performed in the meantime will not be undone.
Naturally, any IO performed in the meantime will not be undone.
In particular, rewinding to a checkpoint will not magically unsend any messages.

```ts
Expand Down
2 changes: 1 addition & 1 deletion site/docs/ru/plugins/conversations.md
Original file line number Diff line number Diff line change
Expand Up @@ -1277,7 +1277,7 @@ async function convo(conversation, ctx) {
Контрольная точка содержит информацию о том, насколько далеко выполнена функция на текущий момент.
Она может быть использована для возврата к этой точке позже.

Естественно, любые действия, выполненные в промежутке, не будут отменены.
Естественно, все выполненные за это время операции ввода-вывода не будут отменены.
В частности, возврат к контрольной точке не отменяет отправленные сообщения.

```ts
Expand Down
2 changes: 1 addition & 1 deletion site/docs/uk/plugins/conversations.md
Original file line number Diff line number Diff line change
Expand Up @@ -1264,7 +1264,7 @@ async function convo(conversation, ctx) {
Контрольна точка містить інформацію про те, як далеко функція пройшла на даний момент.
Вона може бути використана для того, щоб пізніше повернутися до цієї точки.

При цьому всі дії, виконані за цей час, не будуть скасовані.
При цьому всі операції вводу/виводу, виконані за цей час, не будуть скасовані.
Зокрема, повернення до контрольної точки не призведе до магічного скасування надсилання будь-яких повідомлень.

```ts
Expand Down
2 changes: 1 addition & 1 deletion site/docs/zh/plugins/conversations.md
Original file line number Diff line number Diff line change
Expand Up @@ -1264,7 +1264,7 @@ async function convo(conversation, ctx) {
检查点包含有关该函数迄今为止运行程度的信息。
它可用于稍后跳回到此点。

当然,在此期间执行的任何操作都不会撤消
当然,在此期间执行的任何 IO 都不会撤消
特别是,倒回到检查点不会神奇地取消发送任何消息。

```ts
Expand Down
Loading