Skip to content

Commit 478cda2

Browse files
tconley1428lennessyyflippedcoder
authored
Adding docs for AI SDK (#4035)
* Adding rough draft docs for AI SDK * docs: first rewrite attempt * docs: add edit * docs: update ai sdk docs * docs: add ai-sdk to side bar * docs: update titles * docs: add code highlights * docs: small edit * Apply suggestions from code review Co-authored-by: Milecia McG <47196133+flippedcoder@users.noreply.github.com> * docs: fix admonition * Update docs/develop/typescript/index.mdx Co-authored-by: Milecia McG <47196133+flippedcoder@users.noreply.github.com> * docs: small adjustment * docs: add pre-release warning * docs: run snipsync --------- Co-authored-by: Lenny Chen <lenny.chen@temporal.io> Co-authored-by: Lenny Chen <55669665+lennessyy@users.noreply.github.com> Co-authored-by: Milecia McG <47196133+flippedcoder@users.noreply.github.com>
1 parent 832f83a commit 478cda2

8 files changed

Lines changed: 466 additions & 229 deletions

File tree

docs/best-practices/worker.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ production-ready Worker image:
6161
[Dockerfile](https://github.com/temporalio/reference-app-orders-go/blob/main/Dockerfile)
6262

6363
```Dockerfile
64-
FROM golang:1.23.8 AS oms-builder
64+
FROM golang:1.24.1 AS oms-builder
6565

6666
WORKDIR /usr/src/oms
6767

docs/develop/go/cancellation.mdx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,7 @@ process and your use case which determines whether you want to return the Cancel
3838
or Complete status regardless of whether a Cancellation has propagated to and/or skipped Activities.
3939

4040
<!--SNIPSTART go-features-cancellation-workflow {"selectedLines": ["14-15", "18", "20-38", "41", "43-45", "47-50"]}-->
41-
4241
[sample-apps/go/features/cancellation/workflow.go](https://github.com/temporalio/documentation/blob/main/sample-apps/go/features/cancellation/workflow.go)
43-
4442
```go
4543
// ...
4644
// YourWorkflow is a Workflow Definition that shows how it can be canceled.
@@ -79,7 +77,6 @@ func YourWorkflow(ctx workflow.Context) error {
7977
return err
8078
}
8179
```
82-
8380
<!--SNIPEND-->
8481

8582
## Handle Cancellation in an Activity {#handle-cancellation-in-an-activity}

0 commit comments

Comments
 (0)