Are coding agents python only?

I have experience working in python, but it’s my least preferred language. I can understand that my environment for crewai tools need to be run in a python environment, but I only discovered crewai a few hours ago in a Youtube tutorial.

If I’m a developer who wants to use agentic ai to help me on my projects, and NONE of those projects will ever be in python, they might be C#, C++ (gaming projects) or Next.js (websites) should I even bother trying the coding agents from crew to generate that type of content or will they only really help me if I’m working on python projects as well.

I know I can prompt chatgpt and get c# code in the response, but I’m looking for the benefits of agentic ai to help automating that process so want to know if the coding agents are just not going to know how to handle c# code in the first place.

Of course if the underlying LLM doesn’t have any clue about your desired language it might be difficult and the provided “allowCodeExecution” flags won’t help you.
Nevertheless you sure can create a CrewAI using tools to execute whatever language you want to. For example my Crew creates code which i save to files, which i then can execute via a subprocess command as i would do on the comman line, and of course i can use that feedback (i.e. not working) as an input for my CrewAI to debug and improve the code (and the loop goes on, until desired outcome is reached)…