Building Stateful AI Research Agent with openai-agents

Back Building Stateful AI Research Agent with openai-agents and AutoKitteh By Itay Donanhirsh Introduction to AI Agents AI agents operate autonomously, making decisions and taking actions to achieve specific goals. Their most significant challenge is maintaining state across interruptions – when an agent’s task spans hours or days, any disruption can force it to restart […]
Remind Me: Using AI to Keep Track of GitHub Discussions

Back Remind Me: Using AI to Keep Track of GitHub Discussions By Pavel Fateev Backstory We recently had a hackathon at work where we were told to build something using the product we’ve been working on behind the scenes. I loved it because it had been a while since I built a workflow using our […]
Hijacking Function Calls for Durability

Back Hijacking Function Calls for Durability By Miki Tebeka In the previous post we discussed how to intercept function calls in the user Python code and transform them. For example, the following code: event = ml.enrich(event) is transformed into: event = ml.enrich(event)event = _ak_call(ml.enrich, event) In this blog post, we’re going to look at how _ak_call works. Durable Execution […]