Activity
Mon
Wed
Fri
Sun
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
Jan
What is this?
Less
More

Memberships

Agent Zero

2.1k members • Free

5 contributions to Agent Zero
Crabs.
So lets address the elephant in the room, A0 or clawdbot - Who and why?
Agent Zero 🤖 v0.9.7 - Projects
You're building three different things, and your agent starts mixing up the context. It’s messy, and it breaks the flow. So, we fixed it. Meet Projects in Agent Zero. This is how we want to build, and we think you'll love it too.
4 likes • Nov '25
It seems like a chat out side of any project will be less capable for any task - maybe up the stakes by make one chat outside of all tasks a "main" chat (projects manager) that can read all the other ( like subagents?) and give info and connect between the deferent projects.. ( may add a botton to make a project visable or invisible for the "main chat"
Please, help me
Hello, friends. Today I have a favor to ask. Seeing companies like OpenAI catching up to opensource projects with limited success makes me wonder how far ahead would have we been if we had more attention, people, funding. I am humbly asking for spreading word about A0 on social media. Especially now that people seem to see AI control something for the first time… they deserve to know. Thank you ❤️ And here's a post you can use to save you some time: For anyone thinking OpenAI Operator is something new, Agent Zero does that and much more. Opensource will always be ahead. Agent Zero 🤖 Can now use BROWSER 🌐 https://youtu.be/quv145buW74
2 likes • Jan '25
i belive working on making agent zero run better with local models is part of the answer. make it run better with ollama (the smaller models - most people probebly run 7b models) and do it to aviod using any api for privecy
1 like • Jan '25
@Jan Tomášek 14<…? Even if it can run with only with 32b Agent zero can be used as a personal assistant for business and ideviduals with at least one decent pc. I do believe it can have a great impact finding a way to make it smaller and fit a local grade model
Tutorial: How to create a new Tool
This is a quick example of how to add a new tool to agent zero, there may be other ways to accomplish this, but since i couldn't find a good example i will share my code here. This uses a free joke api just for an example proof of concept , most llms already contain many jokes by default, so its not very practical, but a current weather api implementation would be coded similar. To add a new tool to Agent Zero we need to create two new files and modify a third file. The steps to add a basic tool that requests a joke from an api and returns it to agent zero are: (note that this tool does not take any arguments, look at the existing 'knowledge_tool.py' on how to add arguments, such as 'question') 1. Add the new tool code by adding file: query_joke_api_tool.py 2. Create a markdown file that agent zero will include in the prompt so that the LLM knows what the tools capabilities are: agent.system.tool.joke.md 3. Modify the agent.system.tools.md file so that our new tool is included in the LLM prompt, practically registering our new tool. Agent zero automatically knows where to look to find and execute this tool. Explicitly ask the LLM to use this tool and it should use it. Step 1 Create file: # /python/tools/query_joke_api_tool.py import requests from urllib.parse import urlparse from python.helpers.tool import Tool, Response from python.helpers.errors import handle_error class QueryJokeApiTool(Tool): async def execute(self, **kwargs): url = "https://icanhazdadjoke.com/" headers = { "Accept": "text/plain"} print("*** Agent Zero has called the QueryJokeApiTool") try: # Attempt to make the API request response = requests.get(url, headers=headers, timeout=5) # Check if the request was successful (status code 200) if response.status_code == 200: myjoke = response.text.strip() return Response(message=f"Joke content:\n\n{myjoke}", break_loop=False)
0 likes • Nov '24
Isnt the point of A0 writing his own tools automatically?
Problem with faiss-gpu on v0.7.1
Hey, anybody els had issues with faiss-gpu on windows 11/nividia 4090/cuda/pytorch Im working with gpt for cuppel of day looking for the right versions for all of them and nothing seems to work
0
0
1-5 of 5
Adam Frantz
2
13points to level up
@adam-frantz-7076
Amature coder, im here for this tool's potential

Active 8h ago
Joined Nov 13, 2024
Powered by