File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
example-apps/chatbot-rag-app/data Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 6262 working-directory : example-apps/chatbot-rag-app
6363 run : | # This tests ELSER is working, which doesn't require an LLM.
6464 cp env.example .env
65- docker compose run --rm -T create-index
65+ # same as `docker compose run --rm -T create-index`, except pull never
66+ docker run --rm -T --name create-index --env-file .env --pull never \
67+ --add-host "localhost:host-gateway" ${{ env.IMAGE }} flask create-index
6668 - name : export digest
6769 if : github.event_name == 'push'
6870 run : |
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ def main():
149149 print (f"Documents added to index { INDEX } " )
150150
151151
152- def await_ml_tasks (max_timeout = 600 , interval = 5 ):
152+ def await_ml_tasks (max_timeout = 1200 , interval = 5 ):
153153 """
154154 Waits for all machine learning tasks to complete within a specified timeout period.
155155
You can’t perform that action at this time.
0 commit comments