OlympHill
smolagents logo

smolagentsAg agents صغيرة وسريعة مبنية بلغة بايثون

5.0 (4)
Daniel Nikulshynمراجعة بواسطة Daniel Nikulshyn·تم التحديث مايو 2026

نظرة عامة

هو framework مفتوح المصدر للأنباء من Hugging Face مصمم حول البساطة وتجويع المنطقة السطحية. بدلاً من الريادة في الأهداف باستخدام تعليمات JSON verbose، يسمح للأنباء التعبير عن الإجراءات بسمية برامج بايثون، وهو عادة أكثر التعبيرية وتقلل من عدد الخطوات التي تحتاجها لإكمال مهمة Large Language Model. يُمكن استخدام المكتبة بشكل مستقل عن النماذج، من خلال العمل معها على نماذج مضيفة على هاب هوجنج فاس (Hugging Face Hub) وعلى خوادم الاستدلال المحلية وعلى providers API الرئيسية مثل أوपन إيه آي (OpenAI) و أَنْثَروپِك (Anthropic). ويُنشر المكتبة بتضمين خيارات تنفيذ مغلق مثل E2B و Doker (دッカー) مما يَتيح ей تشغيل الكود المُنتِج آمنًا، بالإضافة إلى ذلك، تتكامَل المكتبة مع أنظمة الإبداع الشائعة بما في ذلك HubSpaces (ملاهي هاب) و LangChain (سياق اللغة). تهدف إلى مطورين يرغبون في نقطة بداية واضحة قابلة للتطوير للأنظمة الجريئة بدلا من إطار opinated ثقيل، مما تجعله مناسبًا بشكل خاص للوظائف البحثية، والإنتاج الخفيف، وإنحاء التجريبية.

الميزات الرئيسية

  • الوكيل التعليمي الذي يكتب واستخدم برمجة بايثون لاستجابة المهام
  • دعم لذكاء الحاسوب المكون من مكونات (Hugging Face, OpenAI, Anthropic, وMODELS المحلية)
  • استخدام التعليمات البرمجية محروس مع خلفيات E2B والكونتينيين Docker
  • ت интجراسيون هذا النقطة بالهب LangChain والوكيل الوظيفي ووظائف في بايثون المخصصه
  • الوكيل المدمج لطريقة استعمال JSON التقليدية للمهام التقليدية
  • تصميم بسيط ومتواضع بالاستدانة الاكترونية

التسعير

النموذج
Free
التقييم
5.0 / 5 (4)

حالات الاستخدام

المزايا والعيوب

المزايا

  • Ag agents صغيرة وسريعة مبنية بلغة بايثون
  • عمل مع أي موفر لخدمات التدريب المسبق للغة
  • تعيين E2B أو حاويات Docker لتنفيذ شفرة بايثون Python المولدة بشكل آمن in a safe manner in isolated environments, reducing security risks when automating task execution
  • التكامل مع النظم البيئية مخصصة لبرمجة Python
  • مكتبة بيثون Python مفتوحة المصدر ومجاناً

العيوب

  • أدوات تحكم أقل مقارنة بالحلول المعتمدة على JSON
  • لا يناسب حلول التعلم الآلي المطورة خارج المكتبة
  • قد يتطلب معرفة برمجية في بايثون Python
  • يعتمد على E2B ou Docker containers for safe code execution

المراجعات

5.0

المتوسط من 4 تقييم.

5
4
4
0
3
0
2
0
1
0

سجّل الدخول لكتابة مراجعة.

Naomi Suzuki

Naomi Suzuki

Apr 15, 2026

Use it every day

Honestly didn't expect to like it this much. Tool integration with Hub, LangChain, and custom Python functions is exactly what I needed, and code-based actions reduce steps and boost agent expressiveness. I do wish requires Python knowledge to use effectively, but I reach for it almost every day now and it just clicks.

WC

Wei Chen

Dec 18, 2025

Does the job

Pretty happy overall. Tool integration with Hub, LangChain, and custom Python functions just works and very small, readable codebase that is easy to extend. Code execution introduces security considerations to manage can be annoying, but no dealbreakers — I'd recommend it to a friend without hesitating.

Jamal Carter

Jamal Carter

Nov 25, 2025

Does the job

Pretty happy overall. Sandboxed code execution with E2B and Docker backends just works and sandboxed execution via E2B or Docker for safer code running. but no dealbreakers — I'd recommend it to a friend without hesitating.

SG

Sanjay Gupta

Jul 11, 2025

Skeptical, then convinced

I went in skeptical — most tools in this space overpromise. It actually delivers on codeAgent that writes and executes Python to solve tasks, and code-based actions reduce steps and boost agent expressiveness caught me off guard. still, I'd recommend giving it a real trial.

أسئلة وأجوبة

How strong are open models for agentic workflows?

We've created CodeAgent instances with some leading models, and compared them on this benchmark that gathers questions from a few different benchmarks to propose a varied blend of challenges. Find the benchmarking code here for more detail on the agentic setup used, and see a comparison of using LLMs code agents compared to vanilla (spoilers: code agents works better). This comparison shows that open-source models can now take on the best closed models!

Asked by Diego Fernández · Feb 16, 2026

How smol is this library?

We strived to keep abstractions to a strict minimum: the main code in agents.py has <1,000 lines of code. Still, we implement several types of agents: CodeAgent writes its actions as Python code snippets, and the more classic ToolCallingAgent leverages built-in tool calling methods. We also have multi-agent hierarchies, import from tool collections, remote code execution, vision models... By the way, why use a framework at all? Well, because a big part of this stuff is non-trivial. For instance, the code agent has to keep a consistent format for code throughout its system prompt, its parser, the execution. So our framework handles this complexity for you. But of course we still encourage you to hack into the source code and use only the bits that you need, to the exclusion of everything else!

Asked by Ludovic Girard · Nov 27, 2025

How do Code agents work?

Our CodeAgent works mostly like classical ReAct agents - the exception being that the LLM engine writes its actions as Python code snippets. Actions are now Python code snippets. Hence, tool calls will be performed as Python function calls. For instance, here is how the agent can perform web search over several websites in one single action: Writing actions as code snippets is demonstrated to work better than the current industry practice of letting the LLM output a dictionary of the tools it wants to call: uses 30% fewer steps (thus 30% fewer LLM calls) and reaches higher performance on difficult benchmarks. Head to our high-level intro to agents to learn more on that. Since code execution can be a serious security concern (arbitrary code execution!), you should run agent code in a sandbox. We support several options: E2B, Blaxel, Modal — managed cloud sandboxes, simplest to set up Docker — self-hosted container isolation The built-in LocalPythonExecutor is not a security sandbox. It applies some restrictions but can be bypassed and must not be used as a security boundary. Alongside CodeAgent, we also provide the standard ToolCallingAgent which writes actions as JSON/text blobs. You can pick whichever style best suits your use case.

Asked by Greta Nowak · Oct 31, 2025

اطرح سؤالاً

بدائل لـ ابي ابدية كاني الحضر

Mini LLM Flow logo

Mini LLM Flow

ابي ابدية كاني الحضر

إطار عمل LLM بسيط مكون من 100 سطر لبناء تدفقات عمل الوكلاء ذاتية البرمجة

4.8 (6)
3Free
upsonicAI logo

upsonicAI

ابي ابدية كاني الحضر

إطار عمل مفتوح المصدر لإنشاء عمال رقمون موجهين للمهام ووكلاء ذكاء اصطناعي للقطاعات

4.8 (6)
2Free
AI-Powered RAG Workflow for n8n logo

AI-Powered RAG Workflow for n8n

ابي ابدية كاني الحضر

اسأل أسئلتك واحصل على إجابات مستندة إلى وثائق Google Drive المخزنة باستخدام n8n

4.8 (6)
Free
ControlFlow logo

ControlFlow

ابي ابدية كاني الحضر

Python إطار عمل ذكي لبناء عمليات التدفق الوكيل المستندة على المهام

4.8 (6)
Free
roboneo art logo

roboneo art

ابي ابدية كاني الحضر

مولد فن AI الذي يحول موجهات النص إلى صور عالية الجودة في ثوانٍ.

4.8 (6)
Free
A

Agent Genesis

ابي ابدية كاني الحضر

تبني جيل جديد من الوكلاء الذكاء الاصطناعي بسهولة

4.8 (6)
Free
Eclat Institute logo

Eclat Institute

ابي ابدية كاني الحضر

توجيه م dedicated to IP and JC subjects, Eclat Institute focuses on building a deep understanding of core subjects through structured lessons and focused practice.

4.8 (5)
Free
Remove Watermark logo

Remove Watermark

ابي ابدية كاني الحضر

أداة AI المجانية لإزالة العلامات المائية والشعارات من الصور في ثوانٍ

4.8 (5)
Free