diff --git a/.github/workflows/ChatQnA.yml b/.github/workflows/ChatQnA.yml index ed9ca569be..66faa884ad 100644 --- a/.github/workflows/ChatQnA.yml +++ b/.github/workflows/ChatQnA.yml @@ -6,6 +6,7 @@ on: types: [opened, reopened, ready_for_review, synchronize] # added `ready_for_review` since draft is skipped paths: - ChatQnA/** + - "!**.md" - .github/workflows/ChatQnA.yml workflow_dispatch: diff --git a/.github/workflows/CodeGen.yml b/.github/workflows/CodeGen.yml index 11df5376a7..18a36d5115 100644 --- a/.github/workflows/CodeGen.yml +++ b/.github/workflows/CodeGen.yml @@ -6,6 +6,7 @@ on: types: [opened, reopened, ready_for_review, synchronize] # added `ready_for_review` since draft is skipped paths: - CodeGen/** + - "!**.md" - .github/workflows/CodeGen.yml workflow_dispatch: diff --git a/.github/workflows/DocSum.yml b/.github/workflows/DocSum.yml index e4b2e0bcce..223ce5ce99 100644 --- a/.github/workflows/DocSum.yml +++ b/.github/workflows/DocSum.yml @@ -6,6 +6,7 @@ on: types: [opened, reopened, ready_for_review, synchronize] # added `ready_for_review` since draft is skipped paths: - DocSum/** + - "!**.md" - .github/workflows/DocSum.yml workflow_dispatch: diff --git a/.github/workflows/SearchQnA.yml b/.github/workflows/SearchQnA.yml index 6bbce7aa7c..bef997afe8 100644 --- a/.github/workflows/SearchQnA.yml +++ b/.github/workflows/SearchQnA.yml @@ -6,6 +6,7 @@ on: types: [opened, reopened, ready_for_review, synchronize] # added `ready_for_review` since draft is skipped paths: - SearchQnA/** + - "!**.md" - .github/workflows/SearchQnA.yml workflow_dispatch: diff --git a/.github/workflows/VisualQnA.yml b/.github/workflows/VisualQnA.yml index 7f2c377925..ae8b8868f2 100644 --- a/.github/workflows/VisualQnA.yml +++ b/.github/workflows/VisualQnA.yml @@ -6,6 +6,7 @@ on: types: [opened, reopened, ready_for_review, synchronize] # added `ready_for_review` since draft is skipped paths: - VisualQnA/** + - "!**.md" - .github/workflows/VisualQnA.yml workflow_dispatch: diff --git a/ChatQnA/README.md b/ChatQnA/README.md index 3b391453c3..31261082cb 100644 --- a/ChatQnA/README.md +++ b/ChatQnA/README.md @@ -22,8 +22,8 @@ Steps to implement the solution are as follows 1. [Export TGI endpoint as environment variable](#customize-tgi-gaudi-service) 2. [Deploy a TEI container for Embedding model service and export the endpoint](#enable-tei-for-embedding-model) -3. [Launch a Redis container](#launch-redis) and ingest your knowledge base. This example provides few example PDF documents -4. [Build langchain](#launch-langchain-docker) container and start the Langchain service +3. [Launch a Redis container and Langchain container](#launch-redis-and-langchain-backend-service) +4. [Ingest data into redis](#ingest-data-into-redis), this example provides few example PDF documents 5. [Start the backend service](#start-the-backend-service) to accept queries to Langchain 6. [Start the GUI](#start-the-frontend-service) based chatbot service to experiment with RAG based Chatbot