सामग्री पर जाएं
AIAn Alian Software company

AI glossary

एजेंट

एक AI सिस्टम जो एक workflow चलाता है — data fetch करता है, tools को call करता है, branches के बीच निर्णय लेता है, और जब उसका confidence कम हो तो humans को escalate करता है। chatbot (जो सवालों के जवाब देता है) से अलग है क्योंकि agent actions लेता है।

The longer version

एजेंट और chatbot के बीच निर्णायक अंतर action है। Chatbot जवाब देते हैं; एजेंट करते हैं। production में, एजेंट language model को इनके साथ जोड़ते हैं: (a) एक tool-use loop जो model को external functions call करने देता है, (b) multi-step context के लिए memory layer, (c) स्पष्ट guardrails कि कौन से actions को मानव approval के बिना अनुमति है, और (d) escalation paths जब confidence गिरती है। हम एजेंट को exception-first डिज़ाइन करते हैं — refusal cases, escalation queues, और failure modes को happy path से पहले scope किया जाता है। पूरे pattern के लिए /playbooks/agent-design देखें।

Want to talk about how this applies to your stack?