Add OSOP workflow example — portable chatflow format#6122
Closed
Archie0125 wants to merge 3 commits intoFlowiseAI:mainfrom
Closed
Add OSOP workflow example — portable chatflow format#6122Archie0125 wants to merge 3 commits intoFlowiseAI:mainfrom
Archie0125 wants to merge 3 commits intoFlowiseAI:mainfrom
Conversation
Add an example showing how Flowise RAG chatflows can be represented in OSOP (Open Standard for Orchestration Protocols), a portable YAML format for AI workflows. Purely additive — no existing files modified.
Contributor
There was a problem hiding this comment.
Code Review
This pull request introduces an OSOP (Open Source Orchestration Protocol) workflow example for Flowise, including a README and a sample RAG chatflow YAML file. The review feedback identifies a structural error in the YAML configuration for the vector store provider and suggests updating the LLM model to a more current version for better cost-effectiveness.
Comment on lines
+31
to
+32
| config: | ||
| provider: pinecone |
Contributor
| description: Generate responses using retrieved context and conversation history. | ||
| runtime: | ||
| provider: openai | ||
| model: gpt-4 |
Contributor
Addresses review feedback: - vector-store: provider moved from runtime.config to runtime (consistency) - llm: updated model from gpt-4 to gpt-4o (more current and cost-effective)
Author
|
Good catches! Fixed both:
Thanks for the review! |
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
examples/osop/with a RAG chatflow represented in OSOP formatWhy
Flowise chatflows are powerful but stored in a platform-specific JSON format. An OSOP representation enables cross-tool portability (n8n, LangFlow, custom agents), clean YAML diffs in version control, and human-readable workflow documentation.
Details
examples/osop/README.md— brief explanation of OSOP + Flowiseexamples/osop/chatflow-example.osop.yaml— a RAG chatflow in OSOP format