TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Open-source AI Agents building platform?

24 pointsby rkuodys4 months ago
Hi,<p>There is a ton of tools comming out daily, mutating and pivoting in AI space. What I&#x27;m looking for is a platform to build internal agents that have way more permissions that you would dare to open to the customers. So maybe in the whole space , somebody has already done so and can point in the right direction.<p>Generally my idea is following: I&#x27;m building startup and my intention is to limit the number of support staff needed. Therefore I want to have specialised agents that does some functions for me. Primary communication is in slack - so intended workflow is that I write something to agents chat and they, having tools, do the tasks and get back to me in slack. It would be ideal to have those agents build on single system as oppose to coding each one of them separately. And since the intention is to give access to full data - self-hosted version is ideal, but open source would work just as well.<p>Anybody solving the same issues and can share relevant experience? Thanks a lot.

4 comments

lunarcave4 months ago
Doing something open-source [1] in the space. Self-hostable as well. Our customers actually have built internal things to help them with Zendesk &#x2F; replace some manual Retool tasks.<p>There&#x27;s a slack [2] integration as well. Fun fact, we use it to query our Zendesk &#x2F; Postgres &#x2F; Auth system from Slack and avoid internal tools.<p>E-mail in the profile. Happy to chat, even if it&#x27;s to recommend something that works better for your use case.<p>[1] <a href="https:&#x2F;&#x2F;github.com&#x2F;inferablehq&#x2F;inferable">https:&#x2F;&#x2F;github.com&#x2F;inferablehq&#x2F;inferable</a><p>[2] <a href="https:&#x2F;&#x2F;docs.inferable.ai&#x2F;pages&#x2F;slack" rel="nofollow">https:&#x2F;&#x2F;docs.inferable.ai&#x2F;pages&#x2F;slack</a>
评论 #42620488 未加载
dabe194 months ago
I use a combination of the crewAI python library, chromaDB as a vector database, and I run an embedding and llama model out of an Ollama docker container. This is all running and hosted locally on my personal PC and running off a 12GB RTX3060. I had to customize some of the tooling that comes with crewAI to make the RAG retrieval tool they provide work with my local chromaDB and Ollama models.<p>They have a nice class setup that lets you build fully custom tooling, really fun playing with the Selenium webdriver library and give your agents tooling to interact and observe web elements.<p>Huggingface recently released their smolagents framework as well, I might start looking into that.
overu5894 months ago
You run a service that executes shell commands in whatever permission mode, and then you have your chat bot output their commands # and comments which the service then executes at your peril.<p>The handler that hands off between these pieces can post the stdout&#x2F;stderr to chat.
shengliang4 months ago
Obot is an open source AI agent platform <a href="https:&#x2F;&#x2F;github.com&#x2F;obot-platform&#x2F;obot">https:&#x2F;&#x2F;github.com&#x2F;obot-platform&#x2F;obot</a> It allows you to self host, has Slack integration, and can connect LLMs with your internal and SaaS apps.