feat: temporal deployment#278
Conversation
There was a problem hiding this comment.
Code Review
This pull request introduces documentation for the genkitx-temporal plugin, enabling the execution of Genkit flows as durable Temporal Workflows. The changes include a comprehensive guide on architecture, installation, and usage, along with an update to the documentation sidebar. Feedback was provided to ensure links point to the official Genkit website and to update the AI model used in examples to a more current version.
|
|
||
| ## Running Genkit flows as Temporal Workflows | ||
|
|
||
| The [`genkitx-temporal`](https://github.com/xavidop/genkitx-temporal) plugin lets |
There was a problem hiding this comment.
According to the general rules, links to plugin documentation should use the official Genkit website URL (e.g., genkit.dev/plugins/...) instead of third-party or personal URLs like GitHub.
The [`genkitx-temporal`](https://genkit.dev/plugins/temporal) plugin lets
References
- When linking to plugin documentation, use the official Genkit website URL (e.g., genkit.dev/plugins/...) instead of third-party or personal URLs.
| googleAI(), | ||
| temporal({ taskQueue: 'my-queue' }), | ||
| ], | ||
| model: googleAI.model('gemini-flash-latest'), |
There was a problem hiding this comment.
The model gemini-flash-latest is a variant of gemini-1.5-flash, which is considered outdated according to the general rules. Please use a newer model such as gemini-2.0-flash.
model: googleAI.model('gemini-2.0-flash'),
References
- The model gemini-1.5-flash and its variants (e.g., gemini-1.5-flash-latest) are outdated and should not be suggested as replacements for newer models.
No description provided.