diff --git a/llm_coder/__init__.py b/llm_coder/__init__.py index 3de7342..e8aace7 100644 --- a/llm_coder/__init__.py +++ b/llm_coder/__init__.py @@ -1,2 +1,15 @@ -# Package initialization -__version__ = "0.0.1" +""" +llm-coder: LLMによる自立型Cliコーディングエージェントライブラリ + +ユーザーの指示通りコーディングし、自前のlinterやformatterやtestコードを評価フェーズに実行し、 +通るまで修正するエージェントを提供します。 +""" + +# メインのクラスを公開APIとして再エクスポート +from llm_coder.agent import Agent + +# 公開するAPIを定義 +__all__ = ["Agent"] + +# バージョン情報 +__version__ = "0.0.2" diff --git a/pyproject.toml b/pyproject.toml index d43db10..94a2514 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "llm-coder" -version = "0.0.1" +version = "0.0.2" description = "llm による自立型 Cli コーディングエージェントライブラリ" readme = "README.md" requires-python = ">=3.11" diff --git a/uv.lock b/uv.lock index 439bc13..7a54b89 100644 --- a/uv.lock +++ b/uv.lock @@ -513,7 +513,7 @@ wheels = [ [[package]] name = "llm-coder" -version = "0.0.1" +version = "0.0.2" source = { editable = "." } dependencies = [ { name = "litellm" },