From cb61a48c2b16300a3de6364b91c11d8dfbff7b0c Mon Sep 17 00:00:00 2001 From: Mendon Kissling <59585235+mendonk@users.noreply.github.com> Date: Thu, 25 Sep 2025 11:04:17 -0400 Subject: [PATCH 1/9] init --- config.yaml | 31 ------------------------- docs/docs/core-components/knowledge.mdx | 4 ++++ docs/sidebars.js | 5 ++++ 3 files changed, 9 insertions(+), 31 deletions(-) delete mode 100644 config.yaml create mode 100644 docs/docs/core-components/knowledge.mdx diff --git a/config.yaml b/config.yaml deleted file mode 100644 index 3bafb8bd..00000000 --- a/config.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# OpenRAG Configuration File -# This file allows you to configure OpenRAG settings. -# Environment variables will override these settings unless edited is true. - -# Track if this config has been manually edited (prevents env var overrides) -edited: false - -# Model provider configuration -provider: - # Supported providers: "openai", "anthropic", "azure", etc. - model_provider: "openai" - # API key for the model provider (can also be set via OPENAI_API_KEY env var) - api_key: "" - -# Knowledge base and document processing configuration -knowledge: - # Embedding model for vector search - embedding_model: "text-embedding-3-small" - # Text chunk size for document processing - chunk_size: 1000 - # Overlap between chunks - chunk_overlap: 200 - # Docling preset setting - doclingPresets: standard - -# AI agent configuration -agent: - # Language model for the chat agent - llm_model: "gpt-4o-mini" - # System prompt for the agent - system_prompt: "You are a helpful AI assistant with access to a knowledge base. Answer questions based on the provided context." diff --git a/docs/docs/core-components/knowledge.mdx b/docs/docs/core-components/knowledge.mdx new file mode 100644 index 00000000..67f1ef24 --- /dev/null +++ b/docs/docs/core-components/knowledge.mdx @@ -0,0 +1,4 @@ +--- +title: Knowledge stored with OpenSearch +slug: /knowledge +--- \ No newline at end of file diff --git a/docs/sidebars.js b/docs/sidebars.js index f76fdcda..c4226946 100644 --- a/docs/sidebars.js +++ b/docs/sidebars.js @@ -56,6 +56,11 @@ const sidebars = { id: "core-components/agents", label: "Langflow Agents" }, + { + type: "doc", + id: "core-components/knowledge", + label: "Knowledge stored with OpenSearch" + } ], }, { From 85b1ec33a28d981e0fa20070f25ee88fa028b138 Mon Sep 17 00:00:00 2001 From: Mendon Kissling <59585235+mendonk@users.noreply.github.com> Date: Thu, 25 Sep 2025 14:27:09 -0400 Subject: [PATCH 2/9] oauth-connector-knowledge-ingest --- docs/docs/_partial-modify-flows.mdx | 5 ++ docs/docs/core-components/agents.mdx | 11 ++- docs/docs/core-components/knowledge.mdx | 99 ++++++++++++++++++++++++- docs/docs/get-started/quickstart.mdx | 4 +- 4 files changed, 112 insertions(+), 7 deletions(-) create mode 100644 docs/docs/_partial-modify-flows.mdx diff --git a/docs/docs/_partial-modify-flows.mdx b/docs/docs/_partial-modify-flows.mdx new file mode 100644 index 00000000..852777e5 --- /dev/null +++ b/docs/docs/_partial-modify-flows.mdx @@ -0,0 +1,5 @@ +import Icon from "@site/src/components/icon/icon"; + +All flows included with OpenRAG are designed to be modular, performant, and provider-agnostic. +To modify a flow, click