Hermes Function Calling

不活跃
GitHub Jupyter Notebook MIT

简介

Hermes Function Calling 是 Nous Research 出品的开源函数调用模型与训练数据集,可微调为本地 function call LLM。

核心特性

  • 开源 — 模型与数据集完全开源
  • 函数调用 — 强 function call 能力
  • 可商用 — 训练权重可商用
  • 多格式 — JSON、Python、JS 函数 schema
  • 可微调 — 与主流训练管线兼容
  • Agent 集成 — 适配 LangChain 等框架

适用场景

💡 本地部署一个 function call LLM
💡 把 Hermes 微调到企业内部 API
💡 为 Agent 提供可商用的开源 function call 模型
💡 替换 OpenAI function call 节省成本

快速开始

# 通过 transformers 加载 Hermes
pip install transformers
from transformers import AutoModelForCausalLM
m = AutoModelForCausalLM.from_pretrained("NousResearch/hermes-function-calling-v1")
print(m.generate("What is the weather in SF?"))

相关项目