You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-2Lines changed: 13 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,6 +52,7 @@ To have it up and running please execute the following steps:
52
52
[Download and install Ollama](https://ollama.com/download)
53
53
[Download and install Docker](https://www.docker.com/products/docker-desktop/)
54
54
55
+
55
56
> ### Setting Up Ollama on a Remote Host
56
57
>
57
58
> To connect to an external Ollama instance, set the environment variable: `OLLAMA_HOST=http://address:port`, e.g.:
@@ -111,15 +112,25 @@ run.sh
111
112
112
113
This command will install all the dependencies - including Redis (via Docker, so it is not entirely docker free method of running `text-extract-api` anyways :)
To have multiple tasks runing at once - for concurrent processing please run the following command to start single worker process:
133
+
To have multiple tasks running at once - for concurrent processing please run the following command to start single worker process:
123
134
124
135
```bash
125
136
celery -A text_extract_api.tasks worker --loglevel=info --pool=solo & # to scale by concurrent processing please run this line as many times as many concurrent processess you want to have running
0 commit comments