Show HN: Sim Studio – Open-Source Agent Workflow GUI
41–50 of 63 posts
Re: Show HN: Sim Studio – Open-Source Agent Workflow GUI
#42congrats on the launch!!
Re: Show HN: Sim Studio – Open-Source Agent Workflow GUI
#43Would be amazing to be able to design the workflow using your builder, and then export to code (and choose the language) and then copy paste the code into the project... just an idea.
this is something we've been looking into. curious, would you rather export the code into an existing agentic framework like crewai/langgraph, or have it exported as raw code? also, would you prefer if the code was exported block-by-block or the entire workflow altogether?
Re: Show HN: Sim Studio – Open-Source Agent Workflow GUI
#44Earlier quoted context omitted.
this is something we've been looking into. curious, would you rather export the code into an existing agentic framework like crewai/langgraph, or have it exported as raw code? also, would you prefer if the code was exported block-by-block or the entire workflow altogether?
Raw code, block by block.
Re: Show HN: Sim Studio – Open-Source Agent Workflow GUI
#45If I run Sim Studio with docker compose, how do I point it to the existing `ollama serve` instance running on the host?
I looked in settings (in the workspace UI) but don't see anywhere to configure the ollama endpoint.
Re: Show HN: Sim Studio – Open-Source Agent Workflow GUI
#46It looks very nice. What happens when a flow that takes 1 minute to complete is triggered by three different Slack messages from different users one second apart. Are flow executions queued or executed in parallel? Is it configurable?
thanks! this would actually trigger three separate workflow executions, and the messages would be processed in parallel by each execution. by default, within the workflow all the blocks execute once their dependencies are resolved, and for the workflow itself they are also executed in parallel. if three messages are sent by the same user, it is also executed as separate workflow executions. curious to hear about your…
I have been looking for a good solution in this increasingly crowded space and if I could offer a word of unsolicited advice it would be to ensure documentation is top notch, truthful (some competitors mention non-existent features in their docs), and includes a relatively detailed roadmap.
Good luck with Sim Studio. I may try it out in a few weeks!
Re: Show HN: Sim Studio – Open-Source Agent Workflow GUI
#47The UI looks lovely. If I run Sim Studio with docker compose, how do I point it to the existing `ollama serve` instance running on the host? I looked in settings (in the workspace UI) but don't see anywhere to configure the ollama endpoint.
for ollama running on your host machine, you'll need to modify the docker configuration since by default it's looking at http://localhost:11434 which points to localhost inside the container, not your host. you can either add `extra_hosts` as `host.docker.internal:host-gateway` to your docker compose and set the OLLAMA_HOST envvar to `OLLAMA_HOST=http://host.docker.internal:11434`, or just run `docker compose up --profile local-cpu -d --build --network=host` when running the compose command.
will add this to the readme and add in some UI locally so its easily configurable! let me know if you have any issues
Re: Show HN: Sim Studio – Open-Source Agent Workflow GUI
#48Earlier quoted context omitted.
thanks! this would actually trigger three separate workflow executions, and the messages would be processed in parallel by each execution. by default, within the workflow all the blocks execute once their dependencies are resolved, and for the workflow itself they are also executed in parallel. if three messages are sent by the same user, it is also executed as separate workflow executions. curious to hear about your…
Thanks for replying so quickly and in detail. I wanted to understand issues around scalability and integration into a larger system. I have been looking for a good solution in this increasingly crowded space and if I could offer a word of unsolicited advice it would be to ensure documentation is top notch, truthful (some competitors mention non-existent features in their docs), and includes a relatively detailed road…
Re: Show HN: Sim Studio – Open-Source Agent Workflow GUI
#49The UI looks lovely. If I run Sim Studio with docker compose, how do I point it to the existing `ollama serve` instance running on the host? I looked in settings (in the workspace UI) but don't see anywhere to configure the ollama endpoint.
thank you! for ollama running on your host machine, you'll need to modify the docker configuration since by default it's looking at http://localhost:11434 which points to localhost inside the container, not your host. you can either add `extra_hosts` as `host.docker.internal:host-gateway` to your docker compose and set the OLLAMA_HOST envvar to `OLLAMA_HOST= http://host.docker.internal:11434 `, or just run `docker co…
...
services:
simstudio:
build:
context: .
dockerfile: Dockerfile
ports:
- "3000:3000"
volumes:
- ./sim:/app
- /app/node_modules
- /app/.next
extra_hosts:
- "host.docker.internal:host-gateway"
environment:
- OLLAMA_HOST=http://host.docker.internal:11434
- NODE_ENV=development
- DATABASE_URL=postgresql://postgres:postgres@db:5432/simstudio
...
Then I ran `docker compose up -d --build`Then I went to localhost:3000/w/
Then I added an Agent block. I expected ollama (or my ollama models) to show up in the drop-down, but I only see the hosted models.
I even tried editing `sim/providers/ollama/index.ts`:
const OLLAMA_HOST = 'http://host.docker.internal:11434'
Any ideas?(BTW I did NOT run `--profile local-cpu` because I didn't want to run ollama in a docker container, as it's already running on the host.)
Re: Show HN: Sim Studio – Open-Source Agent Workflow GUI
#50Earlier quoted context omitted.
thank you! for ollama running on your host machine, you'll need to modify the docker configuration since by default it's looking at http://localhost:11434 which points to localhost inside the container, not your host. you can either add `extra_hosts` as `host.docker.internal:host-gateway` to your docker compose and set the OLLAMA_HOST envvar to `OLLAMA_HOST= http://host.docker.internal:11434 `, or just run `docker co…
I modified the docker-compose.yml thus: ... services: simstudio: build: context: . dockerfile: Dockerfile ports: - "3000:3000" volumes: - ./sim:/app - /app/node_modules - /app/.next extra_hosts: - "host.docker.internal:host-gateway" environment: - OLLAMA_HOST=http://host.docker.internal:11434 - NODE_ENV=development - DATABASE_URL=postgresql://postgres:postgres@db:5432/simstudio ... Then I ran `docker compose up -d --…