diff --git a/.DS_Store b/.DS_Store index e98b18b1..ca39b6e3 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/Dockerfile.langflow b/Dockerfile.langflow index 2acb4877..86ee0ea5 100644 --- a/Dockerfile.langflow +++ b/Dockerfile.langflow @@ -7,7 +7,7 @@ ENV RUSTFLAGS="--cfg reqwest_unstable" # Accept build arguments for git repository and branch ARG GIT_REPO=https://github.com/langflow-ai/langflow.git -ARG GIT_BRANCH=load_flows_autologin_false +ARG GIT_BRANCH=test-openai-responses WORKDIR /app 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/config/config.example.yaml b/config/config.example.yaml deleted file mode 100644 index 410025e7..00000000 --- a/config/config.example.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# OpenRAG Configuration File -provider: - model_provider: "openai" # openai, anthropic, azure, etc. - api_key: "your-api-key" # or use OPENAI_API_KEY env var - -knowledge: - embedding_model: "text-embedding-3-small" - chunk_size: 1000 - chunk_overlap: 200 - ocr: true - picture_descriptions: false - -agent: - llm_model: "gpt-4o-mini" - system_prompt: "You are a helpful AI assistant..." \ No newline at end of file diff --git a/docker-compose-cpu.yml b/docker-compose-cpu.yml index 9b0ff88b..d0de6ce9 100644 --- a/docker-compose-cpu.yml +++ b/docker-compose-cpu.yml @@ -74,7 +74,6 @@ services: - ./documents:/app/documents:Z - ./keys:/app/keys:Z - ./flows:/app/flows:Z - - ./config:/app/config:z openrag-frontend: image: phact/openrag-frontend:${OPENRAG_VERSION:-latest} diff --git a/docker-compose.yml b/docker-compose.yml index 34a5947f..be31fb71 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -40,9 +40,9 @@ services: openrag-backend: image: phact/openrag-backend:${OPENRAG_VERSION:-latest} - #build: - #context: . - #dockerfile: Dockerfile.backend + # build: + # context: . + # dockerfile: Dockerfile.backend container_name: openrag-backend depends_on: - langflow @@ -73,14 +73,14 @@ services: - ./documents:/app/documents:Z - ./keys:/app/keys:Z - ./flows:/app/flows:z - - ./config:/app/config:z gpus: all openrag-frontend: image: phact/openrag-frontend:${OPENRAG_VERSION:-latest} - #build: - #context: . - #dockerfile: Dockerfile.frontend + # build: + # context: . + # dockerfile: Dockerfile.frontend + # #dockerfile: Dockerfile.frontend container_name: openrag-frontend depends_on: - openrag-backend @@ -93,6 +93,9 @@ services: volumes: - ./flows:/app/flows:z image: phact/openrag-langflow:${LANGFLOW_VERSION:-latest} + # build: + # context: . + # dockerfile: Dockerfile.langflow container_name: langflow ports: - "7860:7860" @@ -100,7 +103,7 @@ services: - OPENAI_API_KEY=${OPENAI_API_KEY} - LANGFLOW_LOAD_FLOWS_PATH=/app/flows - LANGFLOW_SECRET_KEY=${LANGFLOW_SECRET_KEY} - - JWT="dummy" + - JWT=None - OWNER=None - OWNER_NAME=None - OWNER_EMAIL=None 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