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: conversation/python/sdk/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Dapr Conversation API (Python HTTP)
1
+
# Dapr Conversation API (Python SDK)
2
2
3
3
In this quickstart, you'll send an input to a mock Large Language Model (LLM) using Dapr's Conversation API. This API is responsible for providing one consistent API entry point to talk to underlying LLM providers.
4
4
@@ -59,7 +59,7 @@ The terminal console output should look similar to this, where:
Copy file name to clipboardExpand all lines: workflows/go/sdk/README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ dapr run -f .
68
68
4. Stop Dapr workflow with CTRL-C or:
69
69
70
70
```sh
71
-
dapr stop -f .
71
+
dapr stop -f .
72
72
```
73
73
74
74
### View workflow output with Zipkin
@@ -83,11 +83,11 @@ launched on running `dapr init`.
83
83
84
84
### What happened?
85
85
86
-
When you ran the above comands:
86
+
When you ran the above commands:
87
87
88
88
1. An OrderPayload is made containing one car.
89
89
2. A unique order ID for the workflow is generated (in the above example, `b4cb2687-1af0-4f8d-9659-eb6389c07ade`) and the workflow is scheduled.
90
-
3. The `NotifyActivity` workflow activity sends a notification saying an order for 10 cars has been received.
90
+
3. The `NotifyActivity` workflow activity sends a notification saying an order for 1 car has been received.
91
91
4. The `VerifyInventoryActivity` workflow activity checks the inventory data, determines if you can supply the ordered item, and responds with the number of cars in stock.
92
92
5. The total cost of the order is 5000, so the workflow will not call the `RequestApprovalActivity` activity.
93
93
6. The `ProcessPaymentActivity` workflow activity begins processing payment for order `b4cb2687-1af0-4f8d-9659-eb6389c07ade` and confirms if successful.
Copy file name to clipboardExpand all lines: workflows/java/sdk/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ cd ..
35
35
name: Run order-processor service
36
36
expected_stdout_lines:
37
37
- '== APP - order-processor == there are now 9 cars left in stock'
38
-
- '== APP - order-processor == workflow instance completed, out is: {"processed":true}'
38
+
- '== APP - order-processor == Workflow instance completed, out is: {"processed":true}'
39
39
expected_stderr_lines:
40
40
output_match_mode: substring
41
41
background: true
@@ -85,7 +85,7 @@ dapr run -f .
85
85
== APP - order-processor == [Thread-0] INFO io.dapr.quickstarts.workflows.activities.UpdateInventoryActivity - Updated inventory for order 'd1bf548b-c854-44af-978e-90c61ed88e3c': there are now 9 cars left in stock
86
86
== APP - order-processor == there are now 9 cars left in stock
87
87
== APP - order-processor == [Thread-0] INFO io.dapr.quickstarts.workflows.activities.NotifyActivity - Order completed! : d1bf548b-c854-44af-978e-90c61ed88e3c
88
-
== APP - order-processor == workflow instance completed, out is: {"processed":true}
88
+
== APP - order-processor == Workflow instance completed, out is: {"processed":true}
0 commit comments