awesome-repositories.com
博客
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

5 个仓库

Awesome GitHub RepositoriesFunction-Based Tool Definitions

Methods for defining agent tools using standard Python functions.

Distinguishing note: Focuses on the function-based authoring pattern.

Explore 5 awesome GitHub repositories matching artificial intelligence & ml · Function-Based Tool Definitions. Refine with filters or upvote what's useful.

Awesome Function-Based Tool Definitions GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • huggingface/smolagentshuggingface 的头像

    huggingface/smolagents

    27,885在 GitHub 上查看↗

    This framework provides a development toolkit for building autonomous agents that utilize language models to solve complex, non-deterministic tasks. Its core design centers on a code-executing architecture where agents generate and run Python code snippets to perform logic, data manipulation, and tool interactions. By moving beyond structured data formats, the system enables agents to manage program flow and object state through iterative reasoning cycles. The project distinguishes itself through its focus on code-based agent implementation and secure execution environments. Developers can ch

    Enables tool creation by converting Python functions using type hints and docstrings.

    Python
    在 GitHub 上查看↗27,885
  • prefecthq/fastmcpPrefectHQ 的头像

    PrefectHQ/fastmcp

    22,994在 GitHub 上查看↗

    FastMCP is a Python framework designed for building servers that expose functions, resources, and prompts to AI models using the Model Context Protocol. It simplifies the development process by automatically deriving tool metadata, input schemas, and documentation directly from Python function signatures and type hints. The framework provides a unified container for managing these components, allowing developers to build modular applications that integrate seamlessly with AI assistants. The project distinguishes itself through its support for interactive, server-defined user interface compone

    Derives tool metadata and schemas automatically from function signatures and type hints.

    Pythonagentsfastmcpllms
    在 GitHub 上查看↗22,994
  • nearai/ironclawnearai 的头像

    nearai/ironclaw

    12,456在 GitHub 上查看↗

    Ironclaw is an LLM orchestration framework and AI agent gateway designed to connect large language models with external tools, messaging interfaces, and persistent memory systems. It functions as a communication layer that routes interactions between users and AI models via HTTP webhooks and various messaging channels. The system focuses on secure tool execution through a WebAssembly sandbox and isolated containers, which allows the framework to run untrusted code and dynamically generate new tools from natural language descriptions. Security middleware provides prompt injection defense and s

    Compiles natural language descriptions into functional WebAssembly modules for safe, dynamic tool execution.

    Rust
    在 GitHub 上查看↗12,456
  • strands-agents/sdk-pythonstrands-agents 的头像

    strands-agents/sdk-python

    6,176在 GitHub 上查看↗

    This is an open-source Python SDK for building and orchestrating production-grade AI agents. It provides a unified framework for creating conversational agents that can use tools, maintain state, and coordinate across multiple language model providers including OpenAI, Anthropic, Google, Amazon Bedrock, and locally-hosted models. The SDK supports multi-agent orchestration through graphs, teams, and swarms, allowing several specialized agents to collaborate on complex tasks. Agents can be composed as callable tools that other agents invoke, and the framework includes policy handlers that inspe

    Defines agent tools using standard Python functions with docstring and signature for model understanding.

    Python
    在 GitHub 上查看↗6,176
  • openai/harmonyopenai 的头像

    openai/harmony

    4,409在 GitHub 上查看↗

    Harmony 是一个 AI SDK,旨在对对话进行 Token 化、格式化推理布局、解析原始输出并定义工具调用模式。它提供了一个系统,用于将结构化对话和工具调用转换为大型语言模型推理和训练所需的 Token 序列。 该项目包括一个输出格式化程序,将推理链和多通道输出结构化为一致的布局,以防止 Token 丢失。它还具有一个响应解析器,将原始完成 Token 和实时流转换回结构化的消息对象和角色。 该 SDK 通过用于定义可调用函数和命名空间的框架来管理工具集成。它还提供了实时 Token 解析、模型行为配置和有状态对话序列化的功能。

    Organizes callable functions into hierarchies to specify the exact operations a model can execute.

    Rust
    在 GitHub 上查看↗4,409
  1. Home
  2. Artificial Intelligence & ML
  3. Function-Based Tool Definitions

探索子标签

  • Namespaced Tool HierarchiesOrganization of callable AI functions into hierarchies to manage model execution capabilities. **Distinct from Function-Based Tool Definitions:** Focuses on organizing tools into namespaces/hierarchies rather than the method of defining a tool via Python functions.
  • WebAssembly Tool CompilersSystems that compile logic into WebAssembly modules to create functional tools for AI agents. **Distinct from Function-Based Tool Definitions:** Specific to generating executable Wasm binaries from natural language, whereas the parent covers general Python function definitions.