Skip to content

Commit fb5549f

Browse files
committed
typos
1 parent f431deb commit fb5549f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

temporalio/contrib/openai_agents/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ In this example, Temporal provides the durable execution wrapper: the `HelloWorl
5050
The content of that method, is regular OpenAI Agents SDK code.
5151

5252
If you are familiar with Temporal and with Open AI Agents SDK, this code will look very familiar.
53-
We the `@workflow.defn` annotations on the `HelloWorldAgent` indicates that this class will contain durable execution and the `@workflow.run` annotation defines the entrypoint.
54-
We use the `Agent` class from OpenAI Agents SDK to define a simple agent, instructing it to always responds with haikus.
53+
The `@workflow.defn` annotation on the `HelloWorldAgent` indicates that this class will contain durable execution logic. The `@workflow.run` annotation defines the entry point.
54+
We use the `Agent` class from OpenAI Agents SDK to define a simple agent, instructing it to always respond with haikus.
5555
We then run that agent, using the `Runner` class from OpenAI Agents SDK, passing through `prompt` as an argument.
5656

5757

@@ -225,7 +225,7 @@ if __name__ == "__main__":
225225

226226
We use the `OpenAIAgentsPlugin` to configure Temporal for use with OpenAI Agents SDK.
227227
The plugin automatically handles several important setup tasks:
228-
- Ensures proper serialization by of Pydantic types
228+
- Ensures proper serialization of Pydantic types
229229
- Propagates context for [OpenAI Agents tracing](https://openai.github.io/openai-agents-python/tracing/).
230230
- Registers an activity for invoking model calls with the Temporal worker.
231231
- Configures OpenAI Agents SDK to run model calls as Temporal activities.
@@ -441,7 +441,7 @@ SQLite storage is not suited to a distributed environment.
441441

442442
### Utilities
443443

444-
The REPL utility is not suited to a distributed setting.
444+
The REPL utility is not suitable for a distributed setting.
445445

446446
| Utility | Supported |
447447
|:--------|:---------:|

0 commit comments

Comments
 (0)