From a47c05dfd58048af4cedf1a3da49bc79af6640af Mon Sep 17 00:00:00 2001 From: igtm Date: Sat, 24 May 2025 02:35:18 +0900 Subject: [PATCH] allowed dir --- llm_coder/__init__.py | 11 ++++++++--- pyproject.toml | 2 +- uv.lock | 2 +- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/llm_coder/__init__.py b/llm_coder/__init__.py index 99b54f7..a9a036d 100644 --- a/llm_coder/__init__.py +++ b/llm_coder/__init__.py @@ -7,11 +7,16 @@ # メインのクラスを公開APIとして再エクスポート from llm_coder.agent import Agent -from llm_coder.filesystem import get_filesystem_tools +from llm_coder.filesystem import get_filesystem_tools, initialize_filesystem_settings from llm_coder.shell_command import get_shell_command_tools # 公開するAPIを定義 -__all__ = ["Agent", "get_filesystem_tools", "get_shell_command_tools"] +__all__ = [ + "Agent", + "get_filesystem_tools", + "initialize_filesystem_settings", + "get_shell_command_tools", +] # バージョン情報 -__version__ = "0.0.3" +__version__ = "0.0.4" diff --git a/pyproject.toml b/pyproject.toml index 12f38d6..6848955 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "llm-coder" -version = "0.0.3" +version = "0.0.4" description = "llm による自立型 Cli コーディングエージェントライブラリ" readme = "README.md" requires-python = ">=3.11" diff --git a/uv.lock b/uv.lock index e6cc843..5ae7e58 100644 --- a/uv.lock +++ b/uv.lock @@ -513,7 +513,7 @@ wheels = [ [[package]] name = "llm-coder" -version = "0.0.3" +version = "0.0.4" source = { editable = "." } dependencies = [ { name = "litellm" },