What about AI Agents? #442
-
|
I was thinking about creating an AI Agent that helps us create any workflow we want. I was inspired by n8n Agents, which allow me to receive a question (or json or markdown), process it with the AI API. These agents can have tools, output parsers, action callbacks, and so on. What do you think about this? Can this idea be implemented here, or do we need to create it in another gem using RubyLLM? If something similar already exists here, please let me know. Thank you in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Agents are just LLMs with Tools. I wrote about them here: https://paolino.me/rubyllm-1-12-agents/ We have a new Agent DSL to make their definition more beautiful: https://rubyllm.com/agents/ I also posted an extensive Agentic Workflows guide that should help you out: https://rubyllm.com/agentic-workflows/ |
Beta Was this translation helpful? Give feedback.
Agents are just LLMs with Tools. I wrote about them here: https://paolino.me/rubyllm-1-12-agents/
We have a new Agent DSL to make their definition more beautiful: https://rubyllm.com/agents/
I also posted an extensive Agentic Workflows guide that should help you out: https://rubyllm.com/agentic-workflows/