Skip to content

Commit c25622f

Browse files
authored
Merge pull request #26 from igtm/feature/igtm-ckgp
public tools
2 parents 8a17e3e + f8b613d commit c25622f

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

llm_coder/__init__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@
77

88
# メインのクラスを公開APIとして再エクスポート
99
from llm_coder.agent import Agent
10+
from llm_coder.filesystem import get_filesystem_tools
11+
from llm_coder.shell_command import get_shell_command_tools
1012

1113
# 公開するAPIを定義
12-
__all__ = ["Agent"]
14+
__all__ = ["Agent", "get_filesystem_tools", "get_shell_command_tools"]
1315

1416
# バージョン情報
15-
__version__ = "0.0.2"
17+
__version__ = "0.0.3"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "llm-coder"
7-
version = "0.0.2"
7+
version = "0.0.3"
88
description = "llm による自立型 Cli コーディングエージェントライブラリ"
99
readme = "README.md"
1010
requires-python = ">=3.11"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)