diff --git a/.github/workflows/deploy-gh-pages.yml b/.github/workflows/deploy-gh-pages.yml index a665710d..eb1f737c 100644 --- a/.github/workflows/deploy-gh-pages.yml +++ b/.github/workflows/deploy-gh-pages.yml @@ -6,8 +6,7 @@ on: - main paths: - 'docs/**' - # Review gh actions docs if you want to further define triggers, paths, etc - # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on + workflow_dispatch: jobs: deploy: diff --git a/.gitignore b/.gitignore index 32a23ff3..9c99e617 100644 --- a/.gitignore +++ b/.gitignore @@ -20,4 +20,4 @@ wheels/ !flows/*.json .DS_Store -config.yaml +config/ diff --git a/Dockerfile.langflow b/Dockerfile.langflow index 0d51dccd..86ee0ea5 100644 --- a/Dockerfile.langflow +++ b/Dockerfile.langflow @@ -33,8 +33,8 @@ RUN uv sync --frozen --no-install-project --no-editable --extra postgresql # Build frontend WORKDIR /app/src/frontend -RUN npm ci && \ - npm run build && \ +RUN NODE_OPTIONS=--max_old_space_size=4096 npm ci && \ + NODE_OPTIONS=--max_old_space_size=4096 npm run build && \ mkdir -p /app/src/backend/base/langflow/frontend && \ cp -r build/* /app/src/backend/base/langflow/frontend/ diff --git a/README.md b/README.md index df1d6451..a0178f28 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ LANGFLOW_CHAT_FLOW_ID=your_chat_flow_id LANGFLOW_INGEST_FLOW_ID=your_ingest_flow_id NUDGES_FLOW_ID=your_nudges_flow_id ``` -See extended configuration, including ingestion and optional variables: [docs/configure/configuration.md](docs/docs/configure/configuration.md) +See extended configuration, including ingestion and optional variables: [docs/reference/configuration.md](docs/docs/reference/configuration.md) ### 3. Start OpenRAG ```bash diff --git a/docs/docs/_partial-external-preview.mdx b/docs/docs/_partial-external-preview.mdx new file mode 100644 index 00000000..8563720c --- /dev/null +++ b/docs/docs/_partial-external-preview.mdx @@ -0,0 +1,4 @@ +:::info +OpenRAG is is currently in public preview. +Development is ongoing, and the features and functionality are subject to change. +::: \ No newline at end of file diff --git a/docs/docs/_partial-modify-flows.mdx b/docs/docs/_partial-modify-flows.mdx index 852777e5..02ec1502 100644 --- a/docs/docs/_partial-modify-flows.mdx +++ b/docs/docs/_partial-modify-flows.mdx @@ -2,4 +2,4 @@ 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