<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Jon McLaren</title>
    <description>The latest articles on Forem by Jon McLaren (@thewebtech).</description>
    <link>https://forem.com/thewebtech</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F170133%2F847974c8-d682-4864-9134-f9b099252e19.jpeg</url>
      <title>Forem: Jon McLaren</title>
      <link>https://forem.com/thewebtech</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/thewebtech"/>
    <language>en</language>
    <item>
      <title>Current Date and Time for agents</title>
      <dc:creator>Jon McLaren</dc:creator>
      <pubDate>Fri, 24 Jan 2025 03:00:50 +0000</pubDate>
      <link>https://forem.com/thewebtech/current-date-and-time-for-agents-32kj</link>
      <guid>https://forem.com/thewebtech/current-date-and-time-for-agents-32kj</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for the &lt;a href="https://srv.buysellads.com/ads/long/x/T6EK3TDFTTTTTT6WWB6C5TTTTTTGBRAPKATTTTTTWTFVT7YTTTTTTKPPKJFH4LJNPYYNNSZL2QLCE2DPPQVCEI45GHBT" rel="noopener noreferrer"&gt;Agent.ai&lt;/a&gt; Challenge: Full-Stack Agent (&lt;a href="https://dev.to/challenges/agentai"&gt;See Details&lt;/a&gt;)&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;In building agents I came across an annoying problem. LLM's are often terrible when it comes to the concept of time. They're often bad at:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Sorting items by date&lt;/li&gt;
&lt;li&gt;Consistently understanding relative words like Yesterday, Tomorrow, Next week, etc.&lt;/li&gt;
&lt;li&gt;Understanding the concept of what is in the past and what is in the future - date and time wise, it's not going to tell your fortune.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Some LLM's behind the scenes are provided the current date and time in a system prompt. That's great, that doesn't always apply to every LLM though. The understanding of relationships is also interesting and I think the problem is that "Tomorrow" "yesterday" are variables that humans understand as being relative, but would appear in written language of training data that is already "old" or in the past from the current time and date. &lt;/p&gt;

&lt;p&gt;Additionally LLM's just like how they're not natively good at math, have a hard time with dates and times because probably because they're basic math. It's likely partially an issue of tokens can be broken up multiple different ways for a date/time  and the LLM isn't seeing the actual words and numbers, it's seeing basically id numbers that represent these concepts.&lt;/p&gt;

&lt;p&gt;So the strategy is that I take away some of the "math" and give the LLM a little extra understanding of time so that it can work with time the way humans do.&lt;/p&gt;

&lt;h2&gt;
  
  
  Demo
&lt;/h2&gt;

&lt;p&gt;This agent is fully designed to be used by your agent. All you need to do to use it within your agent builder, click add action, go to "advanced", choose invoke agent. Enter &lt;code&gt;datetime&lt;/code&gt;. 1 optional parameter will appear for setting a time_zone (defaults to UTC if time zone is not provided). &lt;br&gt;
You can &lt;a href="https://agent.ai/profile/datetime" rel="noopener noreferrer"&gt;go directly to the agent&lt;/a&gt; and click the dropdown to see the available time zones, but basically it's all standard time zones. For example for New York you could enter:&lt;br&gt;
America/New York&lt;/p&gt;

&lt;p&gt;Set the output variable to something like &lt;code&gt;current_date_and_time&lt;/code&gt;, then when you use an LLM action, you can insert that variable somewhere in your prompt.&lt;/p&gt;

&lt;p&gt;That's it! Now ask it to do something it could only do if it understood dates and times and it should perform better.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://agent.ai/agent/efzkzhu5x4qdly7d" rel="noopener noreferrer"&gt;In order to make trying it easier I built a demo agent that does the above&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Ask it questions that would require understanding of date and time such as reordering tasks, use relative words, try asking it what month it will be x months from now, etc, regardless of the LLM model you use it will perform better than without the agent.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://agent.ai/profile/datetime" rel="noopener noreferrer"&gt;Check out the actual current Date and Time agent&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Why does this meet the criteria for full stack
&lt;/h2&gt;

&lt;p&gt;This is a utility for other agents to use. Behind the scenes what this agent does is hits a serverless function to grab the current date and time and provide just enough information to better enable LLM's to properly handle dates and time.&lt;/p&gt;

&lt;p&gt;I added this agent entry in-case the fact that it's an agent invoked by my Agent Inspector Agent - would disqualify the Agent Inspector from the Full Stack competition.&lt;/p&gt;

&lt;h2&gt;
  
  
  Agent.ai Experience
&lt;/h2&gt;

&lt;p&gt;I've enjoyed building on Agent AI, it's a cool tool that is among the pioneers of supporting agents working together.&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>agentaichallenge</category>
      <category>ai</category>
      <category>machinelearning</category>
    </item>
    <item>
      <title>Agent Inspector (Debug your agent and LLM actions) - Assembly of Agents</title>
      <dc:creator>Jon McLaren</dc:creator>
      <pubDate>Wed, 22 Jan 2025 20:17:32 +0000</pubDate>
      <link>https://forem.com/thewebtech/agent-inspector-debug-your-agent-and-llm-actions-3h56</link>
      <guid>https://forem.com/thewebtech/agent-inspector-debug-your-agent-and-llm-actions-3h56</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for the &lt;a href="https://srv.buysellads.com/ads/long/x/T6EK3TDFTTTTTT6WWB6C5TTTTTTGBRAPKATTTTTTWTFVT7YTTTTTTKPPKJFH4LJNPYYNNSZL2QLCE2DPPQVCEI45GHBT" rel="noopener noreferrer"&gt;Agent.ai&lt;/a&gt; Challenge: Assembly of Agents (&lt;a href="https://dev.to/challenges/agentai"&gt;See Details&lt;/a&gt;)&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;Agent Inspector is a must-have tool for those building and iterating on agents on Agent.ai. Agent Inspector provides you information beyond what Agent.AI's built in debugger shows. It tells you what format the output of an agent should be, validates if the agent is in-fact returning that output, assesses toxicity of the agent's output. Provides a clear overall Pass/Fail result. If there's opportunity to improve the prompt, or provide more data to the agent, it makes suggestions.&lt;/p&gt;

&lt;p&gt;The agent has become useful enough that I use every time I create a new agent or am iterating on an existing one.&lt;/p&gt;

&lt;p&gt;Without giving away all the secrets publicly here are some of the things that have gone into it:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;LLM actions with specific models chosen for special skills they have.&lt;/li&gt;
&lt;li&gt;Invoking agents. I created another utility agent that simply grabs the current time and date and returns it in a useful way for agents. The current date and time agent uses a serverless function to grab the date and time and return a JSON response providing that information in a way that is easily understood by LLMs to better handle time related requests. This modular way of building allowed me to both help others build agents that need to utilize time and date, as well as power the functionality for this agent. The Debug Agent is also intended to be used by other agents - that is the primary way to use it.&lt;/li&gt;
&lt;li&gt;To build the Agent Inspector and ensure quality in all of it's tests I actually had to build an agent for testing it.&lt;/li&gt;
&lt;li&gt;Multiple prompt engineering techniques.&lt;/li&gt;
&lt;li&gt;The agent does hit a serverless function within the previously mentioned current date and time agent I created that it invokes.&lt;/li&gt;
&lt;li&gt;Working around some issues found in the if statement action and the inability to export multiple variables to other agents - This agent actually has a companion JSON variant that returns the data in JSON so you can take automated action based on the test results.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Tests performed by the Agent Inspector:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Expected Data type of output based on prompt&lt;/li&gt;
&lt;li&gt;Validation that the output is actually matching the prompt with confidence score.&lt;/li&gt;
&lt;li&gt;Relevancy of output to prompt provided - with confidence score.&lt;/li&gt;
&lt;li&gt;Likelihood of hallucination - validates LLM has all needed information to provide answer. - with confidence score.&lt;/li&gt;
&lt;li&gt;Toxicity - is the response using offensive or harmful language. (This takes into account the prompt and does not simply flag simply using 1 "bad" word as toxic, so if the prompt is talking about a subject in an academic sense it is not going to say the response is toxic unless it goes too far.)&lt;/li&gt;
&lt;li&gt;Fluffy/substance test of text answer - Checks the response for fluffy content that doesn't have much substance. Think of it like this: if it's supposed to be a blog post - is this something someone's going to in turn just pass to an LLM to summarize because it's not concise and meaty enough?&lt;/li&gt;
&lt;li&gt;Suggested prompt revisions - based on all of the tests the agent suggests improvements to encourage better results from your LLM action or agent.&lt;/li&gt;
&lt;li&gt;Execution timing - know how long your agent takes to execute from start to finish. Provides some best practices and norms.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why it meets this criteria
&lt;/h2&gt;

&lt;p&gt;This agent relies on another agent for a step in it's process.&lt;/p&gt;

&lt;h2&gt;
  
  
  Demo
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://www.jonmclaren.dev/agent-inspector" rel="noopener noreferrer"&gt;Watch a video showing Agent Inspector as well as instructions to set it up&lt;/a&gt;&lt;br&gt;
&lt;a href="https://agent.ai/agent/debug_my_agent" rel="noopener noreferrer"&gt;Try the agent yourself&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Agent.ai Experience
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Overall I've enjoyed the experience, and want to push the platform to do things it was never designed to do.&lt;/strong&gt; I'm providing feedback on a lot of areas where the platform can be improved - understand that my feedback is coming from a place of appreciating it for what it is, and just wanting to see it further thrive. Being a developer I'm always going to want more, but there are limitations I ran into that prevent me from being able to deliver even more with this agent and other agents.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://docs.google.com/document/d/1YcRtJhS3LF0Mnc5kZLwJPO4rlj8wyjgilavFC2n8osg/edit?usp=sharing" rel="noopener noreferrer"&gt;Feedback for the Agent.ai team.&lt;/a&gt;&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>agentaichallenge</category>
      <category>ai</category>
      <category>machinelearning</category>
    </item>
    <item>
      <title>Agent Inspector (Debug your agents) - Productivity Pro</title>
      <dc:creator>Jon McLaren</dc:creator>
      <pubDate>Wed, 22 Jan 2025 20:16:44 +0000</pubDate>
      <link>https://forem.com/thewebtech/agent-inspector-debug-your-agents-2fk3</link>
      <guid>https://forem.com/thewebtech/agent-inspector-debug-your-agents-2fk3</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for the &lt;a href="https://srv.buysellads.com/ads/long/x/T6EK3TDFTTTTTT6WWB6C5TTTTTTGBRAPKATTTTTTWTFVT7YTTTTTTKPPKJFH4LJNPYYNNSZL2QLCE2DPPQVCEI45GHBT" rel="noopener noreferrer"&gt;Agent.ai&lt;/a&gt; Challenge: Productivity-Pro Agent (&lt;a href="https://dev.to/challenges/agentai"&gt;See Details&lt;/a&gt;)&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;Agent Inspector is a must-have tool for those building and iterating on agents on Agent.ai. Agent Inspector provides you information beyond what Agent.AI's built in debugger shows. It tells you what format the output of an agent should be, validates if the agent is in-fact returning that output, assesses toxicity of the agent's output. Provides a clear overall Pass/Fail result. If there's opportunity to improve the prompt, or provide more data to the agent, it makes suggestions.&lt;/p&gt;

&lt;p&gt;The agent has become useful enough that I use every time I create a new agent or am iterating on an existing one.&lt;/p&gt;

&lt;p&gt;Without giving away all the secrets publicly here are some of the things that have gone into it:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;LLM actions with specific models chosen for special skills they have.&lt;/li&gt;
&lt;li&gt;Invoking agents. I created another utility agent that simply grabs the current time and date and returns it in a useful way for agents. The current date and time agent uses a serverless function to grab the date and time and return a JSON response providing that information in a way that is easily understood by LLMs to better handle time related requests. This modular way of building allowed me to both help others build agents that need to utilize time and date, as well as power the functionality for this agent. The Debug Agent is also intended to be used by other agents - that is the primary way to use it.&lt;/li&gt;
&lt;li&gt;To build the Agent Inspector and ensure quality in all of it's tests I actually had to build an agent for testing it.&lt;/li&gt;
&lt;li&gt;Multiple prompt engineering techniques.&lt;/li&gt;
&lt;li&gt;The agent does hit a serverless function within the previously mentioned current date and time agent I created that it invokes.&lt;/li&gt;
&lt;li&gt;Working around some issues found in the if statement action and the inability to export multiple variables to other agents - This agent actually has a companion JSON variant that returns the data in JSON so you can take automated action based on the test results.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Tests performed by the Agent Inspector:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Expected Data type of output based on prompt&lt;/li&gt;
&lt;li&gt;Validation that the output is actually matching the prompt with confidence score.&lt;/li&gt;
&lt;li&gt;Relevancy of output to prompt provided - with confidence score.&lt;/li&gt;
&lt;li&gt;Likelihood of hallucination - validates LLM has all needed information to provide answer. - with confidence score.&lt;/li&gt;
&lt;li&gt;Toxicity - is the response using offensive or harmful language. (This takes into account the prompt and does not simply flag simply using 1 "bad" word as toxic, so if the prompt is talking about a subject in an academic sense it is not going to say the response is toxic unless it goes too far.)&lt;/li&gt;
&lt;li&gt;Fluffy/substance test of text answer - Checks the response for fluffy content that doesn't have much substance. Think of it like this: if it's supposed to be a blog post - is this something someone's going to in turn just pass to an LLM to summarize because it's not concise and meaty enough?&lt;/li&gt;
&lt;li&gt;Suggested prompt revisions - based on all of the tests the agent suggests improvements to encourage better results from your LLM action or agent.&lt;/li&gt;
&lt;li&gt;Execution timing - know how long your agent takes to execute from start to finish. Provides some best practices and norms.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why this agent meets the criteria for this challenge
&lt;/h2&gt;

&lt;p&gt;This agent directly provides meaningful insights and validates LLM and agent output enabling agent builders to move significantly faster to produce reliable quality agents. It's designed to be part of the agent building workflow and can even be used for automating actions within your agent - for example if there is toxic content in an LLM action response, you can choose to have your agent do something other than return that directly to the user.&lt;/p&gt;

&lt;h2&gt;
  
  
  Demo
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://www.jonmclaren.dev/agent-inspector" rel="noopener noreferrer"&gt;Watch a video showing Agent Inspector as well as instructions to set it up&lt;/a&gt;&lt;br&gt;
&lt;a href="https://agent.ai/agent/debug_my_agent" rel="noopener noreferrer"&gt;Try the agent yourself&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Agent.ai Experience
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Overall I've enjoyed the experience, and want to push the platform to do things it was never designed to do.&lt;/strong&gt; I'm providing feedback on a lot of areas where the platform can be improved - understand that my feedback is coming from a place of appreciating it for what it is, and just wanting to see it further thrive. Being a developer I'm always going to want more, but there are limitations I ran into that prevent me from being able to deliver even more with this agent and other agents.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://docs.google.com/document/d/1YcRtJhS3LF0Mnc5kZLwJPO4rlj8wyjgilavFC2n8osg/edit?usp=sharing" rel="noopener noreferrer"&gt;Feedback for the Agent.ai team.&lt;/a&gt;&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>agentaichallenge</category>
      <category>ai</category>
      <category>machinelearning</category>
    </item>
    <item>
      <title>Agent Inspector (debug your agents and LLM actions) - Full stack</title>
      <dc:creator>Jon McLaren</dc:creator>
      <pubDate>Wed, 22 Jan 2025 20:14:20 +0000</pubDate>
      <link>https://forem.com/thewebtech/agent-inspector-debug-your-agents-and-llm-actions-2b3c</link>
      <guid>https://forem.com/thewebtech/agent-inspector-debug-your-agents-and-llm-actions-2b3c</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for the &lt;a href="https://srv.buysellads.com/ads/long/x/T6EK3TDFTTTTTT6WWB6C5TTTTTTGBRAPKATTTTTTWTFVT7YTTTTTTKPPKJFH4LJNPYYNNSZL2QLCE2DPPQVCEI45GHBT" rel="noopener noreferrer"&gt;Agent.ai&lt;/a&gt; Challenge: Full-Stack Agent (&lt;a href="https://dev.to/challenges/agentai"&gt;See Details&lt;/a&gt;)&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;Agent Inspector is a must-have tool for those building and iterating on agents on Agent.ai. Agent Inspector provides you information beyond what Agent.AI's built in debugger shows. It tells you what format the output of an agent should be, validates if the agent is in-fact returning that output, assesses toxicity of the agent's output. Provides a clear overall Pass/Fail result. If there's opportunity to improve the prompt, or provide more data to the agent, it makes suggestions.&lt;/p&gt;

&lt;p&gt;The agent has become useful enough that I use every time I create a new agent or am iterating on an existing one.&lt;/p&gt;

&lt;p&gt;Without giving away all the secrets publicly here are some of the things that have gone into it:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;LLM actions with specific models chosen for special skills they have.&lt;/li&gt;
&lt;li&gt;Invoking agents. I created another utility agent that simply grabs the current time and date and returns it in a useful way for agents. The current date and time agent uses a serverless function to grab the date and time and return a JSON response providing that information in a way that is easily understood by LLMs to better handle time related requests. This modular way of building allowed me to both help others build agents that need to utilize time and date, as well as power the functionality for this agent. The Debug Agent is also intended to be used by other agents - that is the primary way to use it.&lt;/li&gt;
&lt;li&gt;To build the Agent Inspector and ensure quality in all of it's tests I actually had to build an agent for testing it.&lt;/li&gt;
&lt;li&gt;Multiple prompt engineering techniques.&lt;/li&gt;
&lt;li&gt;The agent does hit a serverless function within the previously mentioned current date and time agent I created that it invokes.&lt;/li&gt;
&lt;li&gt;Working around some issues found in the if statement action and the inability to export multiple variables to other agents - This agent actually has a companion JSON variant that returns the data in JSON so you can take automated action based on the test results.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Tests performed by the Agent Inspector:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Expected Data type of output based on prompt&lt;/li&gt;
&lt;li&gt;Validation that the output is actually matching the prompt with confidence score.&lt;/li&gt;
&lt;li&gt;Relevancy of output to prompt provided - with confidence score.&lt;/li&gt;
&lt;li&gt;Likelihood of hallucination - validates LLM has all needed information to provide answer. - with confidence score.&lt;/li&gt;
&lt;li&gt;Toxicity - is the response using offensive or harmful language. (This takes into account the prompt and does not simply flag simply using 1 "bad" word as toxic, so if the prompt is talking about a subject in an academic sense it is not going to say the response is toxic unless it goes too far.)&lt;/li&gt;
&lt;li&gt;Fluffy/substance test of text answer - Checks the response for fluffy content that doesn't have much substance. Think of it like this: if it's supposed to be a blog post - is this something someone's going to in turn just pass to an LLM to summarize because it's not concise and meaty enough?&lt;/li&gt;
&lt;li&gt;Suggested prompt revisions - based on all of the tests the agent suggests improvements to encourage better results from your LLM action or agent.&lt;/li&gt;
&lt;li&gt;Execution timing - know how long your agent takes to execute from start to finish. Provides some best practices and norms.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why this agent meets the criteria
&lt;/h2&gt;

&lt;p&gt;This agent invokes another agent I created &lt;code&gt;datetime&lt;/code&gt; which is designed to swiftly get the current date and time for a specific timezone, it returns that data in a format that agents can understand. That agent uses a serverless function. I wanted to open that functionality up to others to use so that is why I'm invoking the agent within Agent Inspector rather than using the serverless function action directly, keeping my code modular and reusable. &lt;/p&gt;

&lt;p&gt;Additionally I built Agent Inspector with a &lt;a href="https://agent.ai/agent/debug_my_agent_json" rel="noopener noreferrer"&gt;companion JSON response version&lt;/a&gt;. The purpose of that agent is that it responds with the same report but in JSON and doesn't display it to the user. Instead you can then take that JSON either store it in a database to keep a log of data you can use to improve your agent, or you could have your agent actually take action immediately with the results of the report. For example if it was going to provide a toxic response to the user the agent can be set up to see the report, and take an action other than returning directly the toxic response.&lt;/p&gt;

&lt;p&gt;Originally the JSON functionality was built into Agent Inspector itself but I found that the If statement capability and invoking agents capability within Agent.AI to have integration issues preventing that from properly working. So the solution was to provide this second agent for folks wanting the JSON.&lt;/p&gt;

&lt;h2&gt;
  
  
  Demo
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://www.jonmclaren.dev/agent-inspector" rel="noopener noreferrer"&gt;Watch a video showing Agent Inspector as well as instructions to set it up&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://agent.ai/agent/debug_my_agent" rel="noopener noreferrer"&gt;Try the agent yourself&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Agent.ai Experience
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Overall I've enjoyed the experience, and want to push the platform to do things it was never designed to do.&lt;/strong&gt; I'm providing feedback on a lot of areas where the platform can be improved - understand that my feedback is coming from a place of appreciating it for what it is, and just wanting to see it further thrive. Being a developer I'm always going to want more, but there are limitations I ran into that prevent me from being able to deliver even more with this agent and other agents.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://docs.google.com/document/d/1YcRtJhS3LF0Mnc5kZLwJPO4rlj8wyjgilavFC2n8osg/edit?usp=sharing" rel="noopener noreferrer"&gt;Feedback for the Agent.ai team.&lt;/a&gt;&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>agentaichallenge</category>
      <category>ai</category>
      <category>machinelearning</category>
    </item>
  </channel>
</rss>
