AI Skill Hub 强烈推荐:Hermex 是一款优质的Agent工作流。AI 综合评分 8.0 分,在同类工具中表现稳健。如果你正在寻找可靠的Agent工作流解决方案,这是一个值得深入了解的选择。
Hermex 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
Hermex 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:pip 安装(推荐)
pip install hermex
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install hermex
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/pseudo-usama/hermex
cd hermex
pip install -e .
# 验证安装
python -c "import hermex; print('安装成功')"
# 命令行使用
hermex --help
# 基本用法
hermex input_file -o output_file
# Python 代码中调用
import hermex
# 示例
result = hermex.process("input")
print(result)
# hermex 配置文件示例(config.yml) app: name: "hermex" debug: false log_level: "INFO" # 运行时指定配置文件 hermex --config config.yml # 或通过环境变量配置 export HERMEX_API_KEY="your-key" export HERMEX_OUTPUT_DIR="./output"
<p align="center"> <a href="https://hermex.usama.ai/"> <img src="https://raw.githubusercontent.com/pseudo-usama/hermex/main/docs/assets/logo.svg" alt="Hermex" width="450" style="margin: 24px 0;"/> </a> <br> <em>Drive ChatGPT and Gemini from Python — no API keys, no billing, just the free web UI.</em> <br><br> <a href="https://pypi.org/project/hermex"> <img src="https://img.shields.io/pypi/v/hermex?color=3cb371" alt="PyPI"/> </a> <a href="https://pypi.org/project/hermex"> <img src="https://img.shields.io/pypi/pyversions/hermex?color=3cb371" alt="Python 3.11+"/> </a> <img src="https://img.shields.io/badge/license-MIT-blue" alt="MIT License"/> <a href="https://github.com/pseudo-usama/hermex"> <img src="https://img.shields.io/badge/GitHub-Hermex-181717?logo=github" alt="GitHub Repo"/> </a> <a href="https://hermex.usama.ai"> <img src="https://img.shields.io/badge/docs-hermex.usama.ai-3cb371" alt="Docs"/> </a> </p>
---
ChatGPT and Gemini are incredibly capable — but their official APIs are expensive, and for many tasks you simply don't need them. If you want to run OCR on an image, generate artwork, extract text from a screenshot, or just ask a quick question in a script, paying per-token for API access is overkill when the free web UI can do the same thing.
Hermex lets you automate ChatGPT and Gemini with Python — no API keys, no billing, no rate-limit tiers. It opens a real Chrome browser, types your message, uploads your files, waits for the response, and hands it back to you as a Python object, just like a human would.
from hermex import ChatGPT
response = ChatGPT.simple_query("What does this receipt say?", attachments=["receipt.jpg"])
print(response.text)
It uses undetected-chromedriver under the hood to avoid bot detection, and reuses a persistent browser profile so your login session survives across runs.
pip install hermex
Requires Python 3.11+ and Google Chrome 130+.
Hermex reuses a persistent Chrome profile so you only need to log in once:
from hermex import Gemini
Gemini.setup() # opens a browser — log in, browse briefly, then close the window
After setup, all future runs reuse the saved session automatically. Repeat this if your session expires.
Guest mode (no login) works for basic text queries on Gemini but file upload requires a logged-in session. ChatGPT works without login for text queries and file upload, but image generation requires a logged-in session.
```python Gemini( chrome_version=None, # auto-detected from installed Chrome download_dir=Path("."), # where generated images are saved headless=False, typing_delay=0.025, # seconds between keystrokes disable_web_security=True, )
Both Gemini and ChatGPT share the same interface — all methods below apply to both unless noted.
| Method | Description |
|---|---|
open_url(url, timeout) | Open the chat interface in the browser |
send_message(message, submit, attachments, paste, fake_typing, typing_delay) | Type and optionally submit a message |
query(message, timeout, attachments, paste, get_markdown, remove_watermark) | Send a message, wait for the response, and return it |
get_last_response(get_markdown, remove_watermark) | Retrieve the most recent response |
wait_until_idle(timeout) | Block until the chatbot finishes generating |
get_state() | Return the current UI state (State.IDLE, GENERATING, TYPING, UPLOADING) |
simple_query(message, attachments, timeout) | Class method — open, query, close in one call |
short_wait() | Sleep ~7 seconds |
long_wait() | Sleep ~5 minutes |
refresh_page() | Reload the current page |
close() | Close the browser |
setup() | One-time login setup (class method) |
See the full documentation for detailed guides on Gemini and ChatGPT.
高质量开源AI工作流,简化ChatGPT交互
该工具使用 NOASSERTION 协议,商用场景请仔细阅读协议条款,必要时咨询法律意见。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
📄 NOASSERTION — 请查阅原始协议条款了解具体使用限制。
总体来看,Hermex 是一款质量优秀的Agent工作流,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | hermex |
| 原始描述 | 开源AI工作流:Drive ChatGPT and Gemini from Python — no API keys, no billing, just the free we。⭐9 · Python |
| Topics | chatbot-automationchatgptpython |
| GitHub | https://github.com/pseudo-usama/hermex |
| License | NOASSERTION |
| 语言 | Python |
收录时间:2026-05-27 · 更新时间:2026-05-27 · License:NOASSERTION · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端