Home / Companies / Orkes / Blog / September 2025

September 2025 Summaries

2 posts from Orkes

Filter
Month: Year:
Post Summaries Back to Blog
When constructing agentic workflows, choosing between LLM Text Complete and LLM Chat Complete is crucial, as each serves distinct purposes. LLM Text Complete is ideal for straightforward, one-shot tasks such as generating summaries, translations, or email subject lines, where the model generates a single output from a prompt without retaining conversation context. In contrast, LLM Chat Complete is suited for more complex, interactive tasks requiring multi-turn conversations, context retention, and reasoning, effectively simulating an agent-like interaction. This involves a message schema that helps maintain the flow of conversation and roles, enabling the model to engage in ongoing dialogues and utilize external tools. The text emphasizes the importance of selecting the appropriate tool based on task complexity and highlights the modularity and flexibility of combining both approaches within the Orkes Conductor platform, which allows users to experiment and tailor workflows to best fit their specific needs.
Sep 22, 2025 1,079 words in the original blog post.
This guide provides a straightforward approach to integrating a Next.js application with an Orkes Conductor workflow using the JavaScript SDK, allowing developers to automate and manage workflows directly from their app. It begins by assuming the reader has an existing workflow in Orkes Conductor and a ready Next.js app, aiming to trigger workflows through app interactions like button clicks or events. The setup involves two primary steps: configuring the .env file with Orkes Conductor credentials to ensure security and initializing the Orkes Conductor JS client in the Next.js backend route. The guide provides code examples for creating a route handler that accepts requests from the frontend, uses the Orkes SDK to start workflows, and manages errors effectively. Developers can then trigger workflows from the frontend by making API calls, allowing for seamless orchestration of workflow logic with minimal code. Further exploration of the Orkes Conductor SDK and API documentation is encouraged to enhance workflow execution management and data extraction capabilities.
Sep 10, 2025 808 words in the original blog post.