Add OSOP workflow example — RAG pipeline in portable format#11024
Closed
Archie0125 wants to merge 1 commit intodeepset-ai:mainfrom
Closed
Add OSOP workflow example — RAG pipeline in portable format#11024Archie0125 wants to merge 1 commit intodeepset-ai:mainfrom
Archie0125 wants to merge 1 commit intodeepset-ai:mainfrom
Conversation
Adds a portable OSOP (Open Standard for Orchestration Protocols) workflow definition that describes a typical Haystack RAG pipeline — query embedding, vector retrieval, prompt building, and answer generation. OSOP is a YAML-based format for describing multi-step workflows in a tool-agnostic way, like OpenAPI but for workflows. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
|
@Archie0125 is attempting to deploy a commit to the deepset Team on Vercel. A member of the Team first needs to authorize it. |
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
.osopYAML file describing the pipeline (query embedding, vector retrieval, prompt building, answer generation) and a README explaining the mapping to Haystack componentsWhat is OSOP?
OSOP is a YAML-based standard for describing multi-step workflows in a tool-agnostic way — like OpenAPI, but for workflows. A single
.osopfile can be validated, visualized, and used as a portable reference across different orchestration tools.Files Added
examples/osop-rag-pipeline/haystack-rag-pipeline.osop— The workflow definitionexamples/osop-rag-pipeline/README.md— Explanation with Haystack component mappingTest plan