gofannon 0.1.0__py3-none-any.whl → 0.25.11__py3-none-any.whl

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.
@@ -0,0 +1,148 @@
1
+ Metadata-Version: 2.3
2
+ Name: gofannon
3
+ Version: 0.25.11
4
+ Summary: A collection of tools for LLMs
5
+ License: ASFv2
6
+ Author: Trevor Grant
7
+ Author-email: trevor.d.grant@gmail.com
8
+ Requires-Python: >=3.10,<4.0
9
+ Classifier: License :: Other/Proprietary License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.10
12
+ Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Classifier: Programming Language :: Python :: 3.13
15
+ Provides-Extra: aws
16
+ Provides-Extra: google
17
+ Provides-Extra: headless-browser
18
+ Provides-Extra: langchain
19
+ Provides-Extra: smolagents
20
+ Provides-Extra: testing
21
+ Requires-Dist: GitPython (>=3.1.43,<4.0.0)
22
+ Requires-Dist: boto3 (>=1.34.97,<2.0.0) ; extra == "aws"
23
+ Requires-Dist: google-api-python-client (>=2.161.0,<3.0.0) ; extra == "google"
24
+ Requires-Dist: jsonschema (>=4.23.0,<5.0.0)
25
+ Requires-Dist: langchain (>=0.3.16,<0.4.0) ; extra == "langchain"
26
+ Requires-Dist: openai (>=1.60.2,<2.0.0)
27
+ Requires-Dist: pydantic (>=2.10.6,<3.0.0) ; extra == "langchain"
28
+ Requires-Dist: pygithub (>=2.6.1,<3.0.0)
29
+ Requires-Dist: pytest (>=8.3.4,<9.0.0) ; extra == "testing"
30
+ Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
31
+ Requires-Dist: requests (>=2.32.3,<3.0.0)
32
+ Requires-Dist: requests-mock (>=1.12.1,<2.0.0) ; extra == "testing"
33
+ Requires-Dist: selenium (>=4.10.0,<5.0.0) ; extra == "headless-browser"
34
+ Requires-Dist: smolagents (>=1.6.0,<2.0.0) ; extra == "smolagents"
35
+ Description-Content-Type: text/markdown
36
+
37
+ ![gofannon logo](https://github.com/The-AI-Alliance/gofannon/blob/main/gofannon.jpg)
38
+ <!-- ![CI](https://github.com/The-AI-Alliance/gofannon/actions/workflows/main.yml/badge.svg) -->
39
+ ![PyPI](https://img.shields.io/pypi/v/gofannon)
40
+ ![License](https://img.shields.io/github/license/The-AI-Alliance/gofannon)
41
+ ![Issues](https://img.shields.io/github/issues/The-AI-Alliance/gofannon)
42
+ ![GitHub stars](https://img.shields.io/github/stars/The-AI-Alliance/gofannon?style=social)
43
+
44
+ # gofannon
45
+
46
+ **gofannon** is a collection of tools designed to enhance the capabilities of function-calling-enabled language models. These tools provide additional functionality for various tasks, including mathematical operations, GitHub interactions, arXiv searches, and advanced reasoning techniques.
47
+
48
+ ## Why the name `gofanon` ?
49
+
50
+ See [`why_the_name_gofannon.md`](https://github.com/The-AI-Alliance/gofannon/blob/main/why_the_name_gofannon.md) for the rich story on why we chose to honor this Celtic Diety
51
+
52
+ ## Our Mission
53
+
54
+ We aim to achieve:
55
+
56
+ ### Cross-Framework Compatibility
57
+ We solve the "vendor lock-in" problem in AI tooling through:
58
+ - Standardized interface definitions
59
+ - Automatic schema translation
60
+ - Bidirectional conversion tools
61
+
62
+ ### Open Source Education
63
+ We make AI development accessible by:
64
+ - Curated contribution pathways
65
+ - Interactive documentation
66
+ - Pair programming sessions
67
+ - Weekly office hours
68
+
69
+ ### Encouraging First-Time Contributors
70
+ We actively support new contributors through:
71
+ - Beginner-friendly issues
72
+ - Clear documentation and guides
73
+ - Supportuve community engagement
74
+
75
+ ## Features
76
+
77
+ - **Basic Math Operations**: Perform addition, subtraction, multiplication, division, and exponentiation.
78
+ - **GitHub Integration**: Interact with GitHub repositories, including creating issues, committing files, and retrieving repository contents.
79
+ - **arXiv Search**: Search for and retrieve articles from arXiv.
80
+ - **Advanced Reasoning**: Utilize Chain-of-Thought (CoT) and Tree-of-Thought (ToT) reasoning techniques for complex problem-solving.
81
+ - **NHTSA Complaints**: Retrieve vehicle complaint data from the National Highway Traffic Safety Administration (NHTSA).
82
+
83
+ ## Roadmap
84
+
85
+ For a detailed overview of planned features and their current status, please refer to the [ROADMAP](https://github.com/The-AI-Alliance/gofannon/blob/main/ROADMAP.md).
86
+
87
+ ## Documentation
88
+
89
+ Documentation can be found [here](https://github.com/The-AI-Alliance/gofannon/tree/main/docs).Each tool comes with its own documentation, which can be found in the docs/ directory. The documentation provides detailed information on how to use each tool, including required parameters and example usage.
90
+
91
+ ## Installation
92
+
93
+ To install gofannon, simply clone the repository and install the required dependencies:
94
+
95
+ ```bash
96
+ git clone https://github.com/The-AI-Alliance/gofannon.git
97
+ cd gofannon
98
+ pip install -r requirements.txt
99
+ ```
100
+
101
+ or
102
+
103
+ ```
104
+ pip install git+https://github.com/The-AI-Alliance/gofannon.git
105
+ # OR
106
+ pip install gofannon
107
+ ```
108
+
109
+ ## Communication Channels
110
+ - **Discord** [Join our Discord server](https://discord.gg/2MMCVs76Sr)for eal-time collaboration and support
111
+ - **GitHub Discussions**: Explore our [GitHub organization](https://github.com/The-AI-Alliance/agents-wg/discussions/) for all related projects
112
+ - **Community Calls**: [Join our bi-weekly video meetings](https://calendar.app.google/c4eKW4zrNiXaue926)
113
+
114
+ ## Usage Example
115
+ ```bash
116
+ from gofannon.base import BaseTool
117
+
118
+ class NewTool(BaseTool):
119
+ def __init__(self):
120
+ super().__init__()
121
+
122
+ @property
123
+ def definition(self):
124
+ return {
125
+ # Define your tool metadata and configuration
126
+ }
127
+
128
+ def fn(self, *args, **kwargs):
129
+ # Define your tool functionality
130
+ pass
131
+ ```
132
+
133
+ ## License
134
+
135
+ This project is licensed under the ASFv2 License. See the [LICENSE](https://github.com/The-AI-Alliance/gofannon/blob/main/LICENSE) file for more details.
136
+
137
+ ## Contributing
138
+
139
+ We welcome contributions from the community! If you'd like to add a new tool or improve an existing one, please check out our [CONTRIBUTING](https://github.com/The-AI-Alliance/gofannon/blob/main/CONTRIBUTING.md) guide for detailed instructions on how to get started.
140
+
141
+ ## Support
142
+
143
+ If you encounter any issues or have questions, please open an issue on our [GitHub repository](https://github.com/your-repo/gofannon/issues).
144
+
145
+ ## Acknowledgments
146
+
147
+ We would like to thank the open-source community for their contributions and support in making this project possible.
148
+
@@ -1,32 +1,43 @@
1
1
  gofannon/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- gofannon/arxiv/__init__.py,sha256=BoTEVP6yli8gCNTrf0IhXKc4uk5sZvvY7MV4FHtJoVI,62
2
+ gofannon/arxiv/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  gofannon/arxiv/get_article.py,sha256=SRGTXFXdXdXTIOLZKWUTXxZEYEqZFWFJEV2nTsU5qqU,1167
4
4
  gofannon/arxiv/search.py,sha256=37Zx1y2vAX1xYIKaAxzBGXE3qPHUZdAD2XR0H1Acs-4,4225
5
- gofannon/base/__init__.py,sha256=xcb2cMVUcTsMX-z60dDyfJsPmw-KgMFzY4c5xF_tz4k,8401
6
- gofannon/basic_math/__init__.py,sha256=P-BGr3HrkFK5KmfW9jrPkUF8B0n2s7B6_CoWpM1QdkY,170
5
+ gofannon/base/__init__.py,sha256=8-uJsYAbLD-2e4clX73QZ8eip9S2PJlQ9JMRNWFHxSI,3387
6
+ gofannon/base/bedrock.py,sha256=Z2c36R8jaIusgpmegbYVz2eR7lDBc0IhTtwiqUGOcT4,25646
7
+ gofannon/base/langchain.py,sha256=gAmDT_khB28-p8KMf4lT4Buy2w4zrdP1jG4hOituQ54,2714
8
+ gofannon/base/smol_agents.py,sha256=rrdsXiOF-LZ1eY08PCN3r8bg0YEaN1b4vPlSaxii4LI,1654
9
+ gofannon/basic_math/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
7
10
  gofannon/basic_math/addition.py,sha256=zA-xtUBNnGnQVqTJkBvjZwX0gnGZ6mrUGhrlTbsH1ts,1148
8
11
  gofannon/basic_math/division.py,sha256=ZO8ZzWNL9zeFdXTEdPWDpnbDrWMXVeucSu105RbQmWU,1229
9
12
  gofannon/basic_math/exponents.py,sha256=w4qDlFZ9M1lf6X-tjG-ndpECfCOS7Qtc_VLICw0oh2w,1205
10
13
  gofannon/basic_math/multiplication.py,sha256=PJ5sKWMCVlBaTeZ_j3gwYOEQXAhN-qIXhnrNcyhWGKM,1168
11
14
  gofannon/basic_math/subtraction.py,sha256=gM1_N1mZ3qAXC6qnkzfijKXiOx27Gg93-CaB_ifMbOQ,1164
12
15
  gofannon/cli.py,sha256=-T-jjBNl_74TsGRcrjxsQnG0-wA2neYhncnaqCiEzPo,1733
13
- gofannon/config.py,sha256=zP_PUuSDNJ4dlZpG7m9i2-e0oqqGrK9SFoJ8GuR7VYE,1568
14
- gofannon/github/__init__.py,sha256=i0OtQehyyQn-1nratJD2737eMJILMJ-pobQHpM4hRcY,225
16
+ gofannon/config.py,sha256=N1xmWTbcyDPZT3r_ZuwW1RI0VRhDcbf3qIasEZZNwyc,1718
17
+ gofannon/github/__init__.py,sha256=VFw4sJIt4Zc0-__eYnksN8Ku9qMhbPpHJEkXMWUiD30,4
15
18
  gofannon/github/commit_file.py,sha256=jdQGQHbrZx4521XgTbx5N0Ss8fDyl7hvp9sjDW15v9U,2573
16
19
  gofannon/github/commit_files.py,sha256=0WP4nx4RYpO_Vb45Sa65afuzSMf4de-Wt6awpSOusyM,4395
17
20
  gofannon/github/create_issue.py,sha256=WXq0klzPvGZnZyZRmriGOkHl7E_Tp08vO1v2ou7TR8w,2560
18
21
  gofannon/github/get_repo_contents.py,sha256=9k6M2BqGlNsSGVjyfW7nxZpk1TFuhyPoZvURkv1PEyo,3637
22
+ gofannon/github/pr_review_tool.py,sha256=srBbfgqBWy-J4wdAM0kLJfQr8LJ6uaA4vkDErqhyMxI,4336
19
23
  gofannon/github/read_issue.py,sha256=JrnBAlZxknhHm3aLC0uB9u0bSvoQNfK3OKmxYlr8jgQ,2308
20
24
  gofannon/github/search.py,sha256=yuX_dZ6f8ogUnskIRMUgF8wuN7JepqRtTDFrbmbwrrs,2183
25
+ gofannon/google_search/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
+ gofannon/google_search/google_search.py,sha256=WRaGSLoeZjy5Qtn89Sp01nNugiGI0NL1ZEdE1ebghl4,2100
27
+ gofannon/headless_browser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
+ gofannon/headless_browser/base.py,sha256=bgvBvkTNCqRnhC8Ffc6oZ3yoxpOl6fkAq0doDKnQtt8,1721
29
+ gofannon/headless_browser/headless_browser_get.py,sha256=kOnHxfoZayfCuS6OKloLdwxehiInwcd5dM0HbKAeM5U,1182
21
30
  gofannon/nhsta/__init__.py,sha256=jTV6arXumVgJagKOq6GnYhHwcX9t7Jjqq5JvsE5-zxQ,1925
31
+ gofannon/open_notify_space/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
32
+ gofannon/open_notify_space/iss_locator.py,sha256=STLNSD5HriRR6grpRpiTRDbqVRtWMPVoGuV8SygHGNY,4734
22
33
  gofannon/orchestration/__init__.py,sha256=_p_XhWHgOIgiamFSGwFUqrnBlIYDvQMq5L5mxJvxiks,5121
23
34
  gofannon/orchestration/firebase_wrapper.py,sha256=jXqUcIoKuTC_1ZffN3v1DN9X6of-OuMKWP8ZzQ-wHOU,1394
24
- gofannon/reasoning/__init__.py,sha256=pk7Sbh_pvZG6xR4o4vFeM1UWUZA44MNYDUMpDD1wI-c,130
35
+ gofannon/reasoning/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
36
  gofannon/reasoning/base.py,sha256=D-4JHJqUlqgwMNOkKU0BHYA4GEWwNgPlLxKYHX0FVyg,1494
26
37
  gofannon/reasoning/hierarchical_cot.py,sha256=e8ZgMbyJQ0wCBEmv7QJqFv7l3XxTMwDYupGxJ7EF6t8,11516
27
38
  gofannon/reasoning/sequential_cot.py,sha256=m9c8GnyTtmI-JntCuhkoFfULAabVOxsYgTRUd3MjzfY,3166
28
39
  gofannon/reasoning/tree_of_thought.py,sha256=TRhRJQNsFVauCLw4TOvQCDcX1nGmp_wSg9H67GJn1hs,10574
29
- gofannon-0.1.0.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
30
- gofannon-0.1.0.dist-info/METADATA,sha256=hsBifn6bjBvduAeNI61p9j4Ep_rb1feIy1bPyPlv0rI,3279
31
- gofannon-0.1.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
32
- gofannon-0.1.0.dist-info/RECORD,,
40
+ gofannon-0.25.11.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ gofannon-0.25.11.dist-info/METADATA,sha256=A7hrWXMnDOp2fuTP0hCwzr6zRUjH0voAz4q0NHntBDQ,6052
42
+ gofannon-0.25.11.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
43
+ gofannon-0.25.11.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.6.1
2
+ Generator: poetry-core 2.1.1
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,84 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: gofannon
3
- Version: 0.1.0
4
- Summary: A collection of tools for LLMs
5
- License: ASFv2
6
- Author: Trevor Grant
7
- Author-email: trevor.d.grant@gmail.com
8
- Requires-Python: >=3.10,<4.0
9
- Classifier: License :: Other/Proprietary License
10
- Classifier: Programming Language :: Python :: 3
11
- Classifier: Programming Language :: Python :: 3.10
12
- Classifier: Programming Language :: Python :: 3.11
13
- Requires-Dist: GitPython (>=3.1.43,<4.0.0)
14
- Requires-Dist: langchain (>=0.3.16,<0.4.0)
15
- Requires-Dist: openai (>=1.60.2,<2.0.0)
16
- Requires-Dist: pydantic (>=2.10.6,<3.0.0)
17
- Requires-Dist: pytest (>=8.3.4,<9.0.0)
18
- Requires-Dist: python-dotenv (>=1.0.1,<2.0.0)
19
- Requires-Dist: requests (>=2.32.3,<3.0.0)
20
- Requires-Dist: smolagents (>=1.6.0,<2.0.0)
21
- Description-Content-Type: text/markdown
22
-
23
- ![gofannon logo](./gofannon.jpg)
24
-
25
- # gofannon
26
-
27
- **gofannon** is a collection of tools designed to enhance the capabilities of function-calling-enabled language models. These tools provide additional functionality for various tasks, including mathematical operations, GitHub interactions, arXiv searches, and advanced reasoning techniques.
28
-
29
- ## Why the name `gofanon` ?
30
-
31
- See [`why_the_name_gofannon.md`](./why_the_name_gofannon.md) for the rich story on why we chose to honor this Celtic Diety
32
-
33
- ## Features
34
-
35
- - **Basic Math Operations**: Perform addition, subtraction, multiplication, division, and exponentiation.
36
- - **GitHub Integration**: Interact with GitHub repositories, including creating issues, committing files, and retrieving repository contents.
37
- - **arXiv Search**: Search for and retrieve articles from arXiv.
38
- - **Advanced Reasoning**: Utilize Chain-of-Thought (CoT) and Tree-of-Thought (ToT) reasoning techniques for complex problem-solving.
39
- - **NHTSA Complaints**: Retrieve vehicle complaint data from the National Highway Traffic Safety Administration (NHTSA).
40
-
41
- ## Roadmap
42
-
43
- For a detailed overview of planned features and their current status, please refer to the [ROADMAP](./ROADMAP.md).
44
-
45
- ## Documentation
46
-
47
- Documentation can be found [here](./docs).
48
-
49
- ## Contributing
50
-
51
- We welcome contributions from the community! If you'd like to add a new tool or improve an existing one, please check out our [CONTRIBUTING](./CONTRIBUTING.md) guide for detailed instructions on how to get started.
52
-
53
- ## Documentation
54
-
55
- Each tool comes with its own documentation, which can be found in the `docs/` directory. The documentation provides detailed information on how to use each tool, including required parameters and example usage.
56
-
57
- ## Installation
58
-
59
- To install gofannon, simply clone the repository and install the required dependencies:
60
-
61
- ```bash
62
- git clone https://github.com/your-repo/gofannon.git
63
- cd gofannon
64
- pip install -r requirements.txt
65
- ```
66
-
67
- or
68
-
69
- ```
70
- pip install git+https://github.com/your-repo/gofannon.git
71
- ```
72
-
73
- ## License
74
-
75
- This project is licensed under the ASFv2 License. See the [LICENSE](./LICENSE) file for more details.
76
-
77
- ## Support
78
-
79
- If you encounter any issues or have questions, please open an issue on our [GitHub repository](https://github.com/your-repo/gofannon/issues).
80
-
81
- ## Acknowledgments
82
-
83
- We would like to thank the open-source community for their contributions and support in making this project possible.
84
-