adam-community 1.0.16__tar.gz → 1.0.17__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {adam_community-1.0.16 → adam_community-1.0.17}/PKG-INFO +1 -1
- adam_community-1.0.17/adam_community/__version__.py +1 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community/cli/build.py +2 -2
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community.egg-info/PKG-INFO +1 -1
- adam_community-1.0.16/adam_community/__version__.py +0 -1
- {adam_community-1.0.16 → adam_community-1.0.17}/README.md +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community/__init__.py +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community/cli/__init__.py +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community/cli/cli.py +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community/cli/init.py +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community/cli/parser.py +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community/cli/templates/Makefile.j2 +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community/cli/templates/README_agent.md.j2 +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community/cli/templates/README_kit.md.j2 +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community/cli/templates/__init__.py +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community/cli/templates/agent_python.py.j2 +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community/cli/templates/configure.json.j2 +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community/cli/templates/initial_assistant_message.md.j2 +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community/cli/templates/initial_system_prompt.md.j2 +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community/cli/templates/input.json.j2 +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community/cli/templates/kit_python.py.j2 +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community/cli/templates/long_description.md.j2 +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community/cli/templates/rag_python.py.j2 +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community/cli/updater.py +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community/tool.py +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community/util.py +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community.egg-info/SOURCES.txt +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community.egg-info/dependency_links.txt +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community.egg-info/entry_points.txt +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community.egg-info/requires.txt +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/adam_community.egg-info/top_level.txt +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/setup.cfg +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/setup.py +0 -0
- {adam_community-1.0.16 → adam_community-1.0.17}/test/test_util_tool.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1.0.17"
|
|
@@ -219,7 +219,7 @@ def create_zip_package(directory: Path) -> str:
|
|
|
219
219
|
|
|
220
220
|
with zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED) as zipf:
|
|
221
221
|
# 添加所有 Python 文件
|
|
222
|
-
py_files = [f for f in directory.rglob('*.py')
|
|
222
|
+
py_files = [f for f in directory.rglob('*.py')]
|
|
223
223
|
for py_file in py_files:
|
|
224
224
|
zipf.write(py_file, py_file.relative_to(directory))
|
|
225
225
|
file_count += 1
|
|
@@ -334,4 +334,4 @@ def build_package(directory: Path) -> Tuple[bool, List[str], str]:
|
|
|
334
334
|
border_style="red"
|
|
335
335
|
))
|
|
336
336
|
|
|
337
|
-
return all_passed, all_errors, zip_name
|
|
337
|
+
return all_passed, all_errors, zip_name
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "1.0.16"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{adam_community-1.0.16 → adam_community-1.0.17}/adam_community/cli/templates/README_agent.md.j2
RENAMED
|
File without changes
|
{adam_community-1.0.16 → adam_community-1.0.17}/adam_community/cli/templates/README_kit.md.j2
RENAMED
|
File without changes
|
|
File without changes
|
{adam_community-1.0.16 → adam_community-1.0.17}/adam_community/cli/templates/agent_python.py.j2
RENAMED
|
File without changes
|
{adam_community-1.0.16 → adam_community-1.0.17}/adam_community/cli/templates/configure.json.j2
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{adam_community-1.0.16 → adam_community-1.0.17}/adam_community/cli/templates/kit_python.py.j2
RENAMED
|
File without changes
|
{adam_community-1.0.16 → adam_community-1.0.17}/adam_community/cli/templates/long_description.md.j2
RENAMED
|
File without changes
|
{adam_community-1.0.16 → adam_community-1.0.17}/adam_community/cli/templates/rag_python.py.j2
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{adam_community-1.0.16 → adam_community-1.0.17}/adam_community.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|