We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d35e80 commit 2d13eb5Copy full SHA for 2d13eb5
.github/workflows/integration_test.yml
@@ -148,6 +148,7 @@ jobs:
148
- name: Install llm2 app
149
working-directory: llm2
150
run: |
151
+ sudo apt-get update
152
sudo apt install pipx
153
pipx install poetry
154
poetry install
ex_app/lib/nc_model.py
@@ -127,7 +127,7 @@ def _generate(
127
if task.status == "STATUS_FAILED":
128
raise Exception("Nextcloud TaskProcessing Task failed")
129
130
- if task.status == "STATUS_RUNNING" or task.status == "STATUS_SCHEDULED":
+ if task.status in ("STATUS_RUNNING", "STATUS_SCHEDULED"):
131
raise Exception("Nextcloud TaskProcessing Task timed out")
132
133
if not isinstance(task.output, dict) or "output" not in task.output:
0 commit comments