Skip to content

Commit e6feb28

Browse files
authored
Merge pull request #27 from igtm/feature/igtm-qneq
allowed dir
2 parents c25622f + a47c05d commit e6feb28

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

llm_coder/__init__.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,16 @@
77

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

1313
# 公開するAPIを定義
14-
__all__ = ["Agent", "get_filesystem_tools", "get_shell_command_tools"]
14+
__all__ = [
15+
"Agent",
16+
"get_filesystem_tools",
17+
"initialize_filesystem_settings",
18+
"get_shell_command_tools",
19+
]
1520

1621
# バージョン情報
17-
__version__ = "0.0.3"
22+
__version__ = "0.0.4"

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.3"
7+
version = "0.0.4"
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)