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
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -74,6 +74,10 @@ docker compose -f docker-compose.prod.yml up -d
74
74
75
75
Open [http://localhost:3000](http://localhost:3000)
76
76
77
+
#### Background worker note
78
+
79
+
The Docker Compose stack starts a dedicated worker container by default. If `REDIS_URL` is not configured, the worker will start, log that it is idle, and do no queue processing. This is expected. Queue-backed API, webhook, and schedule execution requires Redis; installs without Redis continue to use the inline execution path.
80
+
77
81
Sim also supports local models via [Ollama](https://ollama.ai) and [vLLM](https://docs.vllm.ai/) — see the [Docker self-hosting docs](https://docs.sim.ai/self-hosting/docker) for setup details.
Copy file name to clipboardExpand all lines: apps/docs/app/layout.tsx
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ export const metadata = {
18
18
metadataBase: newURL('https://docs.sim.ai'),
19
19
title: {
20
20
default: 'Sim Documentation — Build AI Agents & Run Your Agentic Workforce',
21
-
template: '%s',
21
+
template: '%s | Sim Docs',
22
22
},
23
23
description:
24
24
'Documentation for Sim — the open-source platform to build AI agents and run your agentic workforce. Connect 1,000+ integrations and LLMs to deploy and orchestrate agentic workflows.',
Copy file name to clipboardExpand all lines: apps/docs/content/docs/en/execution/costs.mdx
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -195,6 +195,17 @@ By default, your usage is capped at the credits included in your plan. To allow
195
195
196
196
Max (individual) shares the same rate limits as team plans. Team plans (Pro or Max for Teams) use the Max-tier rate limits.
197
197
198
+
### Concurrent Execution Limits
199
+
200
+
| Plan | Concurrent Executions |
201
+
|------|----------------------|
202
+
|**Free**| 5 |
203
+
|**Pro**| 50 |
204
+
|**Max / Team**| 200 |
205
+
|**Enterprise**| 200 (customizable) |
206
+
207
+
Concurrent execution limits control how many workflow executions can run simultaneously within a workspace. When the limit is reached, new executions are queued and admitted as running executions complete. Manual runs from the editor are not subject to these limits.
0 commit comments