Metadata-Version: 2.4
Name: harzoo
Version: 0.1.7
Summary: Terminal agent framework with pluggable tools and TUI.
Author: Harzoo Maintainers
License: MIT
Project-URL: Homepage, https://github.com/leeharhar/harzoo
Project-URL: Repository, https://github.com/leeharhar/harzoo
Project-URL: Issues, https://github.com/leeharhar/harzoo/issues
Keywords: agent,tui,tools,automation
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: openai>=1.0.0
Requires-Dist: PyYAML>=6.0
Requires-Dist: textual>=0.50.0
Provides-Extra: web
Requires-Dist: fastapi>=0.110.0; extra == "web"
Requires-Dist: uvicorn>=0.30.0; extra == "web"
Provides-Extra: jupyter
Requires-Dist: jupyterlab>=4.0.0; extra == "jupyter"
Requires-Dist: ipykernel>=6.0.0; extra == "jupyter"
Provides-Extra: docs
Requires-Dist: mkdocs>=1.6.0; extra == "docs"
Requires-Dist: mkdocs-material>=9.5.0; extra == "docs"
Dynamic: license-file

# Harzoo

Harzoo 是一个开源的、简单的、灵活的智能体框架，由Python语言实现。

你可以通过为Harzoo配置profile、tool、skill等文件来实现几乎任意复杂的智能体，你也几乎可以对源代码进行任意想法的改造与使用，希望它能在你的领域里帮上忙。

## 官方文档

```text
www.harzoo.com
```

## 项目目录


| 路径        | 作用        |
| --------- | --------- |
| `src/`    | Harzoo 源码 |
| `docs/`   | 官方文档文件    |
| `assets/` | 官方示例与配置文件 |
| `tests/`  | 测试代码      |
| other     | 项目维护相关    |


## 安装与启动

### pip包方式

```bash
pip install harzoo
```

```bash
harzoo
```

### 源码方式

```bash
cd ./src/harzoo/
```

```bash
python main.py
```

## 许可证

MIT
