Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

I like that you can use it locally with Ollama. But is it just for local development and experimenting?

One of the features that I like about Dify is when I create a workflow, I can call it via API, see logs, and debug each node. Is there a way to export workflows from NodeTool to an API?



It's possible to call the API locally:

  const response = await fetch("http://localhost:8000/api/jobs/run", {
    method: "POST",
    headers: {
      "Content-Type": "application/json",
    },
    body: JSON.stringify({
      workflow_id: workflowId,
      params: params,
    }),
  });

  const outputs = await response.json();

See here for more details: https://github.com/nodetool-ai/nodetool

We'll be launching a cloud version soon that let's you deploy your workflow in the cloud with easy API access.


Try out the AIME modules. These run via the AIME API server in the AIME Cloud.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: