Skip to content

Commit 8a17e3e

Browse files
authored
Merge pull request #25 from igtm/feature/igtm-odmo
make Agent class public
2 parents a4150ce + 16ffa36 commit 8a17e3e

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

llm_coder/__init__.py

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,15 @@
1-
# Package initialization
2-
__version__ = "0.0.1"
1+
"""
2+
llm-coder: LLMによる自立型Cliコーディングエージェントライブラリ
3+
4+
ユーザーの指示通りコーディングし、自前のlinterやformatterやtestコードを評価フェーズに実行し、
5+
通るまで修正するエージェントを提供します。
6+
"""
7+
8+
# メインのクラスを公開APIとして再エクスポート
9+
from llm_coder.agent import Agent
10+
11+
# 公開するAPIを定義
12+
__all__ = ["Agent"]
13+
14+
# バージョン情報
15+
__version__ = "0.0.2"

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.1"
7+
version = "0.0.2"
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)