Telegram AI Translator: No More App Switching

Back Building a Telegram AI Translator Using AutoKitteh: No More App Switching By Mario Rohana The Problem When chatting on Telegram with people who speak different languages, I kept running into the same annoying process: see a message I don’t understand, leave Telegram, open Google Translate, paste the text, read the translation, then go back […]
From No-Code to AI-Guided Automation with Code and Diagrams

Back From No-Code to AI-Guided Automation with Code and Diagrams By Haim Zlatokrilov Automation today is largely driven by no-code and low-code tools, enabling users to create workflows—sequences of tasks across multiple systems that achieve business goals—without needing to write code. However, no-code/low-code as it exists today is set to change. With AI advancements, the […]
Practical Automation: Managing Your Team’s GitHub Copilot Seats

Back Practical Automation: Managing Your Team’s GitHub Copilot Seats By Pasha Fateev I love cool tools—even when they’re impractical. Sometimes I obsess over creating something just because the building process itself is rewarding. Recently, I built a system aimed at personal productivity, only to realize later it was overkill. But building it was genuinely fun, […]
Automating Invoice Processing with AI: My Journey with Autokitteh

Back Automating Invoice Processing with AI: My Journey with Autokitteh By Mario Rohana The Problem: Drowning in Invoice Emails If you’ve ever managed invoices manually, you know the struggle: emails flooding your inbox, sifting through attachments, and then forwarding the invoices and receipts to the accountant. It’s a time-consuming process that no one enjoys. I […]
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 […]
Hacking the Import System and Rewriting the AST For Durable Execution

Back Hacking the Import System and Rewriting the AST For Durable Execution By Miki Tebeka At AutoKitteh, we run users’ Python code as-is in a way that can redo parts of the execution in case of failures. In this article, we’ll discuss the part of the code that takes the user code and transforms it by […]
automation-as-code: Versatile Automation Made Simple

Automation-as-Code – Versatile Automation made simple Until now, building versatile automation by simply writing code – and without the drudgery of dealing with repetitive, boilerplate infrastructure tasks – was a fantasy.Most developers have encountered the challenge of automating tasks that connect various applications or services. Whether these automations were seemingly simple or complex, there was […]
Durable Python: Reliable, Long-Running Workflows with Just a Few Lines of Code

Durable Python: Reliable, Long-Running Workflows with Just a Few Lines of Code By Haim Zlatokrilov In modern distributed systems, developers often need to orchestrate workflows that connect APIs from diverse systems or services. Common automation use cases may include DevOps, AI pipelines, business operations workflows, and more.Generally speaking, coding the business logic for such a […]