adam-community 0.3__tar.gz → 1.0.1__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.
Files changed (22) hide show
  1. {adam_community-0.3 → adam_community-1.0.1}/PKG-INFO +1 -1
  2. adam_community-1.0.1/adam_community/__init__.py +14 -0
  3. adam_community-1.0.1/adam_community/cli/__init__.py +1 -0
  4. {adam_community-0.3 → adam_community-1.0.1}/adam_community/cli/init.py +0 -2
  5. {adam_community-0.3 → adam_community-1.0.1}/adam_community.egg-info/PKG-INFO +1 -1
  6. {adam_community-0.3 → adam_community-1.0.1}/setup.py +1 -1
  7. adam_community-0.3/adam_community/__init__.py +0 -4
  8. adam_community-0.3/adam_community/cli/__init__.py +0 -0
  9. {adam_community-0.3 → adam_community-1.0.1}/README.md +0 -0
  10. {adam_community-0.3 → adam_community-1.0.1}/adam_community/cli/build.py +0 -0
  11. {adam_community-0.3 → adam_community-1.0.1}/adam_community/cli/cli.py +0 -0
  12. {adam_community-0.3 → adam_community-1.0.1}/adam_community/cli/parser.py +0 -0
  13. {adam_community-0.3 → adam_community-1.0.1}/adam_community/cli/templates/__init__.py +0 -0
  14. {adam_community-0.3 → adam_community-1.0.1}/adam_community/tool.py +0 -0
  15. {adam_community-0.3 → adam_community-1.0.1}/adam_community/util.py +0 -0
  16. {adam_community-0.3 → adam_community-1.0.1}/adam_community.egg-info/SOURCES.txt +0 -0
  17. {adam_community-0.3 → adam_community-1.0.1}/adam_community.egg-info/dependency_links.txt +0 -0
  18. {adam_community-0.3 → adam_community-1.0.1}/adam_community.egg-info/entry_points.txt +0 -0
  19. {adam_community-0.3 → adam_community-1.0.1}/adam_community.egg-info/requires.txt +0 -0
  20. {adam_community-0.3 → adam_community-1.0.1}/adam_community.egg-info/top_level.txt +0 -0
  21. {adam_community-0.3 → adam_community-1.0.1}/setup.cfg +0 -0
  22. {adam_community-0.3 → adam_community-1.0.1}/test/test_util_tool.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: adam_community
3
- Version: 0.3
3
+ Version: 1.0.1
4
4
  Summary: Adam Community Tools and Utilities
5
5
  Home-page: https://github.com/yourusername/adam-community
6
6
  Author: Adam Community
@@ -0,0 +1,14 @@
1
+ from .util import messageSend, knowledgeSearch, completionCreate, runCmd
2
+ from .tool import Tool
3
+ from .cli.parser import parse_python_file, parse_directory, convert_python_type_to_json_schema
4
+
5
+ __all__ = [
6
+ 'Tool',
7
+ 'messageSend',
8
+ 'knowledgeSearch',
9
+ 'completionCreate',
10
+ 'runCmd',
11
+ 'parse_python_file',
12
+ 'parse_directory',
13
+ 'convert_python_type_to_json_schema'
14
+ ]
@@ -1,6 +1,4 @@
1
1
  import click
2
- import json
3
- import os
4
2
  import re
5
3
  from pathlib import Path
6
4
  from jinja2 import Environment, FileSystemLoader
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: adam_community
3
- Version: 0.3
3
+ Version: 1.0.1
4
4
  Summary: Adam Community Tools and Utilities
5
5
  Home-page: https://github.com/yourusername/adam-community
6
6
  Author: Adam Community
@@ -3,7 +3,7 @@ import os
3
3
 
4
4
  setup(
5
5
  name="adam_community",
6
- version="0.3",
6
+ version="1.0.1",
7
7
  packages=find_packages(),
8
8
  install_requires=[
9
9
  "requests>=2.31.0",
@@ -1,4 +0,0 @@
1
- from .util import messageSend, knowledgeSearch, completionCreate, runCmd
2
- from .tool import Tool
3
-
4
- __all__ = ['Tool', 'messageSend', 'knowledgeSearch', 'completionCreate', 'runCmd']
File without changes
File without changes
File without changes