sa-assistant 0.1.1__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.
- agents/__init__.py +32 -0
- agents/orchestrator.py +283 -0
- agents/specialists.py +230 -0
- agentskills/__init__.py +38 -0
- agentskills/discovery.py +107 -0
- agentskills/errors.py +38 -0
- agentskills/models.py +48 -0
- agentskills/parser.py +183 -0
- agentskills/prompt.py +70 -0
- agentskills/tool.py +138 -0
- cli/__init__.py +51 -0
- cli/callback.py +145 -0
- cli/components.py +346 -0
- cli/console.py +106 -0
- cli/mdstream.py +236 -0
- mcp_client/client.py +12 -0
- model/__init__.py +20 -0
- model/load.py +87 -0
- prompts/__init__.py +65 -0
- prompts/system_prompts.py +464 -0
- sa_assistant-0.1.1.dist-info/METADATA +77 -0
- sa_assistant-0.1.1.dist-info/RECORD +25 -0
- sa_assistant-0.1.1.dist-info/WHEEL +5 -0
- sa_assistant-0.1.1.dist-info/entry_points.txt +2 -0
- sa_assistant-0.1.1.dist-info/top_level.txt +6 -0
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: sa-assistant
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: SA Assistant - AWS Solutions Architect Professional Agent with Multi-Agent Architecture
|
|
5
|
+
Author-email: onesuit <wltks2155@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/onesuit/SaAssistant
|
|
8
|
+
Project-URL: Repository, https://github.com/onesuit/SaAssistant
|
|
9
|
+
Project-URL: Issues, https://github.com/onesuit/SaAssistant/issues
|
|
10
|
+
Keywords: aws,solutions-architect,ai-agent,llm,bedrock,claude,multi-agent
|
|
11
|
+
Classifier: Development Status :: 3 - Alpha
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
20
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
21
|
+
Requires-Python: >=3.10
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
Requires-Dist: aws-opentelemetry-distro>=0.10.0
|
|
24
|
+
Requires-Dist: bedrock-agentcore>=1.0.3
|
|
25
|
+
Requires-Dist: botocore[crt]
|
|
26
|
+
Requires-Dist: mcp>=1.19.0
|
|
27
|
+
Requires-Dist: prompt-toolkit>=3.0.0
|
|
28
|
+
Requires-Dist: python-dotenv>=1.2.1
|
|
29
|
+
Requires-Dist: pyyaml>=6.0
|
|
30
|
+
Requires-Dist: rich>=13.0.0
|
|
31
|
+
Requires-Dist: strands-agents>=1.13.0
|
|
32
|
+
Requires-Dist: strands-agents-tools>=0.2.16
|
|
33
|
+
Provides-Extra: dev
|
|
34
|
+
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
35
|
+
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
|
|
36
|
+
Requires-Dist: ruff>=0.1.0; extra == "dev"
|
|
37
|
+
|
|
38
|
+
This is a project generated by the agentcore create --template basic CLI tool!
|
|
39
|
+
|
|
40
|
+
# Layout
|
|
41
|
+
|
|
42
|
+
There are two directories generated, `src/` and `test/`. At the root, there is a `.gitignore` file, a `.bedrock_agentcore.yaml` file
|
|
43
|
+
which is used for other `agentcore` commands like `deploy`, `dev`, and `invoke`.
|
|
44
|
+
|
|
45
|
+
## src/
|
|
46
|
+
|
|
47
|
+
The main entrypoint to your app is defined in `src/main.py`. Using the AgentCore SDK `@app.entrypoint` decorator, this file defines a Starlette ASGI app with the chosen Agent framework SDK
|
|
48
|
+
running within.
|
|
49
|
+
|
|
50
|
+
`src/mcp_client/client.py` implements an MCP client using the library from your chosen Agent framework SDK.
|
|
51
|
+
|
|
52
|
+
`src/model/load.py` instantiates your chosen model provider.
|
|
53
|
+
|
|
54
|
+
## test/
|
|
55
|
+
|
|
56
|
+
Tests are not defined by default. Add your own pytest definitions here.
|
|
57
|
+
|
|
58
|
+
# Developing locally
|
|
59
|
+
|
|
60
|
+
If installation was successful, a virtual environment is already created with dependencies installed.
|
|
61
|
+
|
|
62
|
+
Run `source .venv/bin/activate` before developing.
|
|
63
|
+
|
|
64
|
+
`agentcore dev` will start a local server on 0.0.0.0:8080.
|
|
65
|
+
|
|
66
|
+
In a new terminal, you can invoke that server with:
|
|
67
|
+
|
|
68
|
+
`agentcore invoke --dev "What can you do"`
|
|
69
|
+
|
|
70
|
+
# Deployment
|
|
71
|
+
|
|
72
|
+
If you want to customize your project, you can first run `agentcore configure` before deploying. Otherwise, the default project settings
|
|
73
|
+
will work out of the box.
|
|
74
|
+
|
|
75
|
+
After providing credentials, `agentcore deploy` will deploy your project into Amazon Bedrock AgentCore.
|
|
76
|
+
|
|
77
|
+
Use `agentcore invoke` to invoke your deployed agent.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
agents/__init__.py,sha256=8JFXiMK5i1SvHG6CIaLk3tQOELGq7Ya4iurqU8SceYM,664
|
|
2
|
+
agents/orchestrator.py,sha256=zApfJoXPt21Mt9J7YAS8vBLpBEK4bkAez6VNapLxTfk,10574
|
|
3
|
+
agents/specialists.py,sha256=vt7m6ZoXouZsitiaUfeKHWoS8tevUuPAw7LqTNSVBSc,7449
|
|
4
|
+
agentskills/__init__.py,sha256=fPV9cnDHuWwbXdzILpCmLperYKd4qxP5fynwsfCNHDg,983
|
|
5
|
+
agentskills/discovery.py,sha256=slbh9L-gMAnhf0aMl-528TUJs44wOyK2QpPCkN5mU9o,3379
|
|
6
|
+
agentskills/errors.py,sha256=FSXr76W3yFiznQLNu8oEcx-X9qQPSDpnuzCxeb_T3zw,788
|
|
7
|
+
agentskills/models.py,sha256=vwzj2mqDmoWUUfF2fpYK_4Kn5Ufq-98I-gt1vx6BFOE,1460
|
|
8
|
+
agentskills/parser.py,sha256=IOuTq2mN3IFTYy1EovqtsBKR0YQ_nsOt9ldWDKN29sA,5752
|
|
9
|
+
agentskills/prompt.py,sha256=CC6_Cqsl4DjHGsBJBDsKtBh4PWulQ2Rgil1pDlHUPRI,2230
|
|
10
|
+
agentskills/tool.py,sha256=bRK00HrvKtWcqatX7tf3UQ-TYV-sS3ip1J3ekO6cwh4,4696
|
|
11
|
+
cli/__init__.py,sha256=oHhC3UqZXtPuWrxVtSDjL-_f9-BHwInRTJTZHw6sF-I,968
|
|
12
|
+
cli/callback.py,sha256=hl22SmHwmOs5nq7KQ1OFY31OZfx5l-sPeqWHNP4ciYM,4713
|
|
13
|
+
cli/components.py,sha256=mCVnVUj0ZdfySOMm1TGy1pXImY8EZUU8ZakAjs8PILg,12262
|
|
14
|
+
cli/console.py,sha256=Ytjz63vwsfuWTyKVGauuquTLUDg0DOhfy9fcc1b6vug,3010
|
|
15
|
+
cli/mdstream.py,sha256=zYttBRcQdO-TgeDv-owxuZqI3-Q0pVGKbYXHK3r6Q8I,6555
|
|
16
|
+
mcp_client/client.py,sha256=ZLcf_gKmA7tLf-m5pZi6IloAJrUPbXwr1uIDfNaWmlo,620
|
|
17
|
+
model/__init__.py,sha256=x52FkeYWNIeyl4vmDhhNXiH2Son6Rx2avdYYeq9mHj4,316
|
|
18
|
+
model/load.py,sha256=HTD4RCqoyTwASGBC3AaMEhFVrXwu3bN_URcxLbNSzVk,3036
|
|
19
|
+
prompts/__init__.py,sha256=gwn1ncE7d-zuoe1pRI5uwElTQQvO8cJgwZqQEJ6oPYs,1518
|
|
20
|
+
prompts/system_prompts.py,sha256=DynDO1Kjwv_fZUm1nGvSTFGH-MEmS5J9w5U01Csn368,16241
|
|
21
|
+
sa_assistant-0.1.1.dist-info/METADATA,sha256=NaQ-ZQUnHNxHcW03msWtbiNuWHFEnkIJEVrx37DKflI,3034
|
|
22
|
+
sa_assistant-0.1.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
23
|
+
sa_assistant-0.1.1.dist-info/entry_points.txt,sha256=O6pc3nG9bmogRr3Cu4vOvgvU23JLAbcapPTyBPeIwMA,46
|
|
24
|
+
sa_assistant-0.1.1.dist-info/top_level.txt,sha256=SL5U7b8oo3VLFHZGxYgNEWRxLrvEFnP8HFUGvs_N3w8,48
|
|
25
|
+
sa_assistant-0.1.1.dist-info/RECORD,,
|