solace-agent-mesh 0.0.1__py3-none-any.whl → 0.1.0__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.
Potentially problematic release.
This version of solace-agent-mesh might be problematic. Click here for more details.
- solace_agent_mesh/__init__.py +0 -3
- solace_agent_mesh/agents/__init__.py +0 -0
- solace_agent_mesh/agents/base_agent_component.py +224 -0
- solace_agent_mesh/agents/global/__init__.py +0 -0
- solace_agent_mesh/agents/global/actions/__init__.py +0 -0
- solace_agent_mesh/agents/global/actions/agent_state_change.py +54 -0
- solace_agent_mesh/agents/global/actions/clear_history.py +32 -0
- solace_agent_mesh/agents/global/actions/convert_file_to_markdown.py +160 -0
- solace_agent_mesh/agents/global/actions/create_file.py +70 -0
- solace_agent_mesh/agents/global/actions/error_action.py +45 -0
- solace_agent_mesh/agents/global/actions/plantuml_diagram.py +93 -0
- solace_agent_mesh/agents/global/actions/plotly_graph.py +117 -0
- solace_agent_mesh/agents/global/actions/retrieve_file.py +51 -0
- solace_agent_mesh/agents/global/global_agent_component.py +38 -0
- solace_agent_mesh/agents/image_processing/__init__.py +0 -0
- solace_agent_mesh/agents/image_processing/actions/__init__.py +0 -0
- solace_agent_mesh/agents/image_processing/actions/create_image.py +75 -0
- solace_agent_mesh/agents/image_processing/actions/describe_image.py +115 -0
- solace_agent_mesh/agents/image_processing/image_processing_agent_component.py +23 -0
- solace_agent_mesh/agents/slack/__init__.py +1 -0
- solace_agent_mesh/agents/slack/actions/__init__.py +1 -0
- solace_agent_mesh/agents/slack/actions/post_message.py +177 -0
- solace_agent_mesh/agents/slack/slack_agent_component.py +59 -0
- solace_agent_mesh/agents/web_request/__init__.py +0 -0
- solace_agent_mesh/agents/web_request/actions/__init__.py +0 -0
- solace_agent_mesh/agents/web_request/actions/do_image_search.py +84 -0
- solace_agent_mesh/agents/web_request/actions/do_news_search.py +47 -0
- solace_agent_mesh/agents/web_request/actions/do_suggestion_search.py +34 -0
- solace_agent_mesh/agents/web_request/actions/do_web_request.py +134 -0
- solace_agent_mesh/agents/web_request/actions/download_file.py +69 -0
- solace_agent_mesh/agents/web_request/web_request_agent_component.py +33 -0
- solace_agent_mesh/cli/__init__.py +1 -0
- solace_agent_mesh/cli/commands/__init__.py +0 -0
- solace_agent_mesh/cli/commands/add/__init__.py +3 -0
- solace_agent_mesh/cli/commands/add/add.py +88 -0
- solace_agent_mesh/cli/commands/add/agent.py +110 -0
- solace_agent_mesh/cli/commands/add/copy_from_plugin.py +90 -0
- solace_agent_mesh/cli/commands/add/gateway.py +221 -0
- solace_agent_mesh/cli/commands/build.py +631 -0
- solace_agent_mesh/cli/commands/chat/__init__.py +3 -0
- solace_agent_mesh/cli/commands/chat/chat.py +361 -0
- solace_agent_mesh/cli/commands/config.py +29 -0
- solace_agent_mesh/cli/commands/init/__init__.py +3 -0
- solace_agent_mesh/cli/commands/init/ai_provider_step.py +76 -0
- solace_agent_mesh/cli/commands/init/broker_step.py +102 -0
- solace_agent_mesh/cli/commands/init/builtin_agent_step.py +88 -0
- solace_agent_mesh/cli/commands/init/check_if_already_done.py +13 -0
- solace_agent_mesh/cli/commands/init/create_config_file_step.py +52 -0
- solace_agent_mesh/cli/commands/init/create_other_project_files_step.py +96 -0
- solace_agent_mesh/cli/commands/init/file_service_step.py +73 -0
- solace_agent_mesh/cli/commands/init/init.py +114 -0
- solace_agent_mesh/cli/commands/init/project_structure_step.py +45 -0
- solace_agent_mesh/cli/commands/init/rest_api_step.py +50 -0
- solace_agent_mesh/cli/commands/init/web_ui_step.py +40 -0
- solace_agent_mesh/cli/commands/plugin/__init__.py +3 -0
- solace_agent_mesh/cli/commands/plugin/add.py +98 -0
- solace_agent_mesh/cli/commands/plugin/build.py +217 -0
- solace_agent_mesh/cli/commands/plugin/create.py +117 -0
- solace_agent_mesh/cli/commands/plugin/plugin.py +109 -0
- solace_agent_mesh/cli/commands/plugin/remove.py +71 -0
- solace_agent_mesh/cli/commands/run.py +68 -0
- solace_agent_mesh/cli/commands/visualizer.py +138 -0
- solace_agent_mesh/cli/config.py +81 -0
- solace_agent_mesh/cli/main.py +306 -0
- solace_agent_mesh/cli/utils.py +246 -0
- solace_agent_mesh/common/__init__.py +0 -0
- solace_agent_mesh/common/action.py +91 -0
- solace_agent_mesh/common/action_list.py +37 -0
- solace_agent_mesh/common/action_response.py +327 -0
- solace_agent_mesh/common/constants.py +3 -0
- solace_agent_mesh/common/mysql_database.py +40 -0
- solace_agent_mesh/common/postgres_database.py +79 -0
- solace_agent_mesh/common/prompt_templates.py +30 -0
- solace_agent_mesh/common/prompt_templates_unused_delete.py +161 -0
- solace_agent_mesh/common/stimulus_utils.py +152 -0
- solace_agent_mesh/common/time.py +24 -0
- solace_agent_mesh/common/utils.py +638 -0
- solace_agent_mesh/configs/agent_global.yaml +74 -0
- solace_agent_mesh/configs/agent_image_processing.yaml +82 -0
- solace_agent_mesh/configs/agent_slack.yaml +64 -0
- solace_agent_mesh/configs/agent_web_request.yaml +75 -0
- solace_agent_mesh/configs/conversation_to_file.yaml +56 -0
- solace_agent_mesh/configs/error_catcher.yaml +56 -0
- solace_agent_mesh/configs/monitor.yaml +0 -0
- solace_agent_mesh/configs/monitor_stim_and_errors_to_slack.yaml +106 -0
- solace_agent_mesh/configs/monitor_user_feedback.yaml +58 -0
- solace_agent_mesh/configs/orchestrator.yaml +241 -0
- solace_agent_mesh/configs/service_embedding.yaml +81 -0
- solace_agent_mesh/configs/service_llm.yaml +265 -0
- solace_agent_mesh/configs/visualize_websocket.yaml +55 -0
- solace_agent_mesh/gateway/__init__.py +0 -0
- solace_agent_mesh/gateway/components/__init__.py +0 -0
- solace_agent_mesh/gateway/components/gateway_base.py +41 -0
- solace_agent_mesh/gateway/components/gateway_input.py +265 -0
- solace_agent_mesh/gateway/components/gateway_output.py +289 -0
- solace_agent_mesh/gateway/identity/bamboohr_identity.py +18 -0
- solace_agent_mesh/gateway/identity/identity_base.py +10 -0
- solace_agent_mesh/gateway/identity/identity_provider.py +60 -0
- solace_agent_mesh/gateway/identity/no_identity.py +9 -0
- solace_agent_mesh/gateway/identity/passthru_identity.py +9 -0
- solace_agent_mesh/monitors/base_monitor_component.py +26 -0
- solace_agent_mesh/monitors/feedback/user_feedback_monitor.py +75 -0
- solace_agent_mesh/monitors/stim_and_errors/stim_and_error_monitor.py +560 -0
- solace_agent_mesh/orchestrator/__init__.py +0 -0
- solace_agent_mesh/orchestrator/action_manager.py +225 -0
- solace_agent_mesh/orchestrator/components/__init__.py +0 -0
- solace_agent_mesh/orchestrator/components/orchestrator_action_manager_timeout_component.py +54 -0
- solace_agent_mesh/orchestrator/components/orchestrator_action_response_component.py +179 -0
- solace_agent_mesh/orchestrator/components/orchestrator_register_component.py +107 -0
- solace_agent_mesh/orchestrator/components/orchestrator_stimulus_processor_component.py +477 -0
- solace_agent_mesh/orchestrator/components/orchestrator_streaming_output_component.py +246 -0
- solace_agent_mesh/orchestrator/orchestrator_main.py +166 -0
- solace_agent_mesh/orchestrator/orchestrator_prompt.py +410 -0
- solace_agent_mesh/services/__init__.py +0 -0
- solace_agent_mesh/services/authorization/providers/base_authorization_provider.py +56 -0
- solace_agent_mesh/services/bamboo_hr_service/__init__.py +3 -0
- solace_agent_mesh/services/bamboo_hr_service/bamboo_hr.py +182 -0
- solace_agent_mesh/services/common/__init__.py +4 -0
- solace_agent_mesh/services/common/auto_expiry.py +45 -0
- solace_agent_mesh/services/common/singleton.py +18 -0
- solace_agent_mesh/services/file_service/__init__.py +14 -0
- solace_agent_mesh/services/file_service/file_manager/__init__.py +0 -0
- solace_agent_mesh/services/file_service/file_manager/bucket_file_manager.py +149 -0
- solace_agent_mesh/services/file_service/file_manager/file_manager_base.py +162 -0
- solace_agent_mesh/services/file_service/file_manager/memory_file_manager.py +64 -0
- solace_agent_mesh/services/file_service/file_manager/volume_file_manager.py +106 -0
- solace_agent_mesh/services/file_service/file_service.py +432 -0
- solace_agent_mesh/services/file_service/file_service_constants.py +54 -0
- solace_agent_mesh/services/file_service/file_transformations.py +131 -0
- solace_agent_mesh/services/file_service/file_utils.py +322 -0
- solace_agent_mesh/services/file_service/transformers/__init__.py +5 -0
- solace_agent_mesh/services/history_service/__init__.py +3 -0
- solace_agent_mesh/services/history_service/history_providers/__init__.py +0 -0
- solace_agent_mesh/services/history_service/history_providers/base_history_provider.py +78 -0
- solace_agent_mesh/services/history_service/history_providers/memory_history_provider.py +167 -0
- solace_agent_mesh/services/history_service/history_providers/redis_history_provider.py +163 -0
- solace_agent_mesh/services/history_service/history_service.py +139 -0
- solace_agent_mesh/services/llm_service/components/llm_request_component.py +293 -0
- solace_agent_mesh/services/llm_service/components/llm_service_component_base.py +152 -0
- solace_agent_mesh/services/middleware_service/__init__.py +0 -0
- solace_agent_mesh/services/middleware_service/middleware_service.py +20 -0
- solace_agent_mesh/templates/action.py +38 -0
- solace_agent_mesh/templates/agent.py +29 -0
- solace_agent_mesh/templates/agent.yaml +70 -0
- solace_agent_mesh/templates/gateway-config-template.yaml +6 -0
- solace_agent_mesh/templates/gateway-default-config.yaml +28 -0
- solace_agent_mesh/templates/gateway-flows.yaml +81 -0
- solace_agent_mesh/templates/gateway-header.yaml +16 -0
- solace_agent_mesh/templates/gateway_base.py +15 -0
- solace_agent_mesh/templates/gateway_input.py +98 -0
- solace_agent_mesh/templates/gateway_output.py +71 -0
- solace_agent_mesh/templates/plugin-pyproject.toml +30 -0
- solace_agent_mesh/templates/rest-api-default-config.yaml +23 -0
- solace_agent_mesh/templates/rest-api-flows.yaml +80 -0
- solace_agent_mesh/templates/slack-default-config.yaml +9 -0
- solace_agent_mesh/templates/slack-flows.yaml +90 -0
- solace_agent_mesh/templates/solace-agent-mesh-default.yaml +77 -0
- solace_agent_mesh/templates/solace-agent-mesh-plugin-default.yaml +8 -0
- solace_agent_mesh/templates/web-default-config.yaml +5 -0
- solace_agent_mesh/templates/web-flows.yaml +86 -0
- solace_agent_mesh/tools/__init__.py +0 -0
- solace_agent_mesh/tools/components/__init__.py +0 -0
- solace_agent_mesh/tools/components/conversation_formatter.py +111 -0
- solace_agent_mesh/tools/components/file_resolver_component.py +58 -0
- solace_agent_mesh/tools/config/runtime_config.py +26 -0
- solace_agent_mesh-0.1.0.dist-info/METADATA +179 -0
- solace_agent_mesh-0.1.0.dist-info/RECORD +170 -0
- solace_agent_mesh-0.1.0.dist-info/entry_points.txt +3 -0
- solace_agent_mesh-0.0.1.dist-info/licenses/LICENSE.txt → solace_agent_mesh-0.1.0.dist-info/licenses/LICENSE +1 -2
- solace_agent_mesh-0.0.1.dist-info/METADATA +0 -51
- solace_agent_mesh-0.0.1.dist-info/RECORD +0 -5
- {solace_agent_mesh-0.0.1.dist-info → solace_agent_mesh-0.1.0.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: solace-agent-mesh
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Solace Agent Mesh is an EDA AI-first platform powered by Solace
|
|
5
|
+
Project-URL: homepage, https://github.com/SolaceLabs/solace-agent-mesh
|
|
6
|
+
Project-URL: repository, https://github.com/SolaceLabs/solace-agent-mesh
|
|
7
|
+
Project-URL: documentation, https://github.com/SolaceLabs/solace-agent-mesh/blob/main/docs/docs/index.md
|
|
8
|
+
Author-email: Edward Funnekotter <edward.funnekotter@solace.com>, Greg Meldrum <greg.meldrum@solace.com>, Cyrus Mobini <cyrus.mobini@solace.com>
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Requires-Python: >=3.11
|
|
16
|
+
Requires-Dist: azure-identity~=1.17.1
|
|
17
|
+
Requires-Dist: beautifulsoup4~=4.12.3
|
|
18
|
+
Requires-Dist: boto3~=1.34.122
|
|
19
|
+
Requires-Dist: build~=1.2.2.post1
|
|
20
|
+
Requires-Dist: click~=8.1.7
|
|
21
|
+
Requires-Dist: duckduckgo-search~=6.3.7
|
|
22
|
+
Requires-Dist: flask-socketio~=5.4.1
|
|
23
|
+
Requires-Dist: flask~=3.0.3
|
|
24
|
+
Requires-Dist: html2text~=2024.2.26
|
|
25
|
+
Requires-Dist: jq~=1.8.0
|
|
26
|
+
Requires-Dist: kaleido~=0.2.1
|
|
27
|
+
Requires-Dist: langchain-core~=0.3.0
|
|
28
|
+
Requires-Dist: langchain~=0.3.0
|
|
29
|
+
Requires-Dist: litellm~=1.51.3
|
|
30
|
+
Requires-Dist: markitdown~=0.0.1a3
|
|
31
|
+
Requires-Dist: microsoft-kiota-abstractions==1.9.0
|
|
32
|
+
Requires-Dist: microsoft-kiota-authentication-azure==1.9.0
|
|
33
|
+
Requires-Dist: microsoft-kiota-http==1.9.0
|
|
34
|
+
Requires-Dist: microsoft-kiota-serialization-form==1.9.0
|
|
35
|
+
Requires-Dist: microsoft-kiota-serialization-json==1.9.0
|
|
36
|
+
Requires-Dist: microsoft-kiota-serialization-multipart==1.9.0
|
|
37
|
+
Requires-Dist: microsoft-kiota-serialization-text==1.9.0
|
|
38
|
+
Requires-Dist: msgraph-core~=1.1.2
|
|
39
|
+
Requires-Dist: msgraph-sdk~=1.5.4
|
|
40
|
+
Requires-Dist: mysql-connector-repackaged==0.3.1
|
|
41
|
+
Requires-Dist: plotly~=5.24.1
|
|
42
|
+
Requires-Dist: pyperclip~=1.9.0
|
|
43
|
+
Requires-Dist: pytest-cov~=5.0.0
|
|
44
|
+
Requires-Dist: pytest~=8.3.1
|
|
45
|
+
Requires-Dist: python-dateutil==2.9.0.post0
|
|
46
|
+
Requires-Dist: pyyaml~=6.0.1
|
|
47
|
+
Requires-Dist: requests~=2.32.3
|
|
48
|
+
Requires-Dist: ruamel-yaml~=0.18.6
|
|
49
|
+
Requires-Dist: solace-ai-connector-rest~=0.0.1
|
|
50
|
+
Requires-Dist: solace-ai-connector-slack~=0.0.1
|
|
51
|
+
Requires-Dist: solace-ai-connector-web~=0.1.0
|
|
52
|
+
Requires-Dist: solace-ai-connector~=1.0.1
|
|
53
|
+
Requires-Dist: solace-pubsubplus~=1.9.0
|
|
54
|
+
Description-Content-Type: text/markdown
|
|
55
|
+
|
|
56
|
+
# Solace Agent Mesh
|
|
57
|
+
|
|
58
|
+
[](https://github.com/SolaceLabs/solace-agent-mesh/blob/main/LICENSE)
|
|
59
|
+
[](https://github.com/SolaceLabs/solace-agent-mesh/issues)
|
|
60
|
+
[](https://github.com/SolaceLabs/solace-agent-mesh/pulls)
|
|
61
|
+
[](https://github.com/SolaceLabs/solace-agent-mesh/stargazers)
|
|
62
|
+
[](https://pypi.org/project/solace-agent-mesh)
|
|
63
|
+
[](https://pypi.org/project/solace-agent-mesh)
|
|
64
|
+
|
|
65
|
+
The Solace Agent Mesh (SAM) is an open-source platform that tackles a fundamental challenge in modern AI development: while powerful AI models are readily available, the real complexity lies in connecting them to the data and systems where they can provide value. Data is often siloed across databases, SaaS platforms, APIs, and legacy systems, making it difficult to build AI applications that operate seamlessly across these boundaries. SAM provides a flexible foundation for AI applications where multiple agents can collaborate, each bringing their own specialized capabilities and data access. Whether you're an AI enthusiast experimenting with new models, or an enterprise developer building production systems, SAM gives you the tools to:
|
|
66
|
+
|
|
67
|
+
- Connect AI agents to real-world data sources and systems.
|
|
68
|
+
- Add SAM Gateways to provide event-based integrations or interactive UI connections.
|
|
69
|
+
- Monitor and debug AI interactions in real-time.
|
|
70
|
+
- Deploy solutions that scale from prototype to production.
|
|
71
|
+
|
|
72
|
+
Rather than trying to be a monolithic AI platform, SAM focuses on being an excellent integration layer. It brings together specialized agents - whether they're using local databases, accessing cloud APIs, or interfacing with enterprise systems - and helps them collaborate to solve complex problems.
|
|
73
|
+
|
|
74
|
+
Built on event-driven architecture technology from Solace, SAM provides the robust foundation needed for both experimental and production deployments.
|
|
75
|
+
|
|
76
|
+

|
|
77
|
+
|
|
78
|
+
## Installation
|
|
79
|
+
|
|
80
|
+
1. The following command installs the Solace Agent Mesh CLI in your environment:
|
|
81
|
+
|
|
82
|
+
```sh
|
|
83
|
+
pip install solace-agent-mesh
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
1. Run the following SAM CLI command (`solace-agent-mesh` or `sam`) to verify your installation:
|
|
87
|
+
|
|
88
|
+
```sh
|
|
89
|
+
solace-agent-mesh --version
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
## Quick Start
|
|
93
|
+
|
|
94
|
+
To get started with Solace Agent Mesh, follow these steps:
|
|
95
|
+
|
|
96
|
+
1. **Install the CLI**: Ensure `solace-agent-mesh` is installed.
|
|
97
|
+
2. **Create a Project**:
|
|
98
|
+
Follow the prompts to create your project.
|
|
99
|
+
|
|
100
|
+
```sh
|
|
101
|
+
mkdir my-agent-mesh && cd my-agent-mesh
|
|
102
|
+
solace-agent-mesh init
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
_Enable the REST API interface when prompted._
|
|
106
|
+
|
|
107
|
+
3. **Build the Project**:
|
|
108
|
+
|
|
109
|
+
```sh
|
|
110
|
+
solace-agent-mesh build
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
4. **Run the Project**:
|
|
114
|
+
|
|
115
|
+
```sh
|
|
116
|
+
solace-agent-mesh run -e
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
_(Use `-eb` to combine build and run steps.)_
|
|
120
|
+
|
|
121
|
+
5. **Send a Request**:
|
|
122
|
+
|
|
123
|
+
Try the system by sending a request to the REST API gateway interface.
|
|
124
|
+
|
|
125
|
+
```sh
|
|
126
|
+
curl --location 'http://localhost:5050/api/v1/request' \
|
|
127
|
+
--header 'Authorization: Bearer None' \
|
|
128
|
+
--form 'prompt="What is the capital of France?"' \
|
|
129
|
+
--form 'stream="false"'
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
Learn about [Agents](http://ai-solace-agent-mesh-docs.s3-website-us-east-1.amazonaws.com/docs/documentation/concepts/agents) and [Gateways](http://ai-solace-agent-mesh-docs.s3-website-us-east-1.amazonaws.com/docs/documentation/concepts/gateways) to add more functionalities to your project.
|
|
133
|
+
|
|
134
|
+
For full details, see the [Quick Start Guide](http://ai-solace-agent-mesh-docs.s3-website-us-east-1.amazonaws.com/docs/documentation/getting-started/quick-start).
|
|
135
|
+
|
|
136
|
+
## Why Use Solace Agent Mesh?
|
|
137
|
+
|
|
138
|
+
Building production-ready AI applications presents unique challenges. While it's relatively easy to create AI prototypes, deploying them in enterprise environments requires solving complex problems around integration, scalability, and observability. The Solace Agent Mesh addresses these challenges through:
|
|
139
|
+
|
|
140
|
+
- **Composable Architecture**: Start with a small number of agents and gateways. You can add more over time.
|
|
141
|
+
|
|
142
|
+
- **Add Agents to Increase Capabilities**: Each new agent adds more capabilities to the system. Adding a new agent isn't additive - it is exponential. With each agent being able to enhance all other agents as they collaborate for more and more complex tasks.
|
|
143
|
+
|
|
144
|
+
- **Add Gateways to Increase Use Cases**: Each new gateway opens up new use cases for the system. A new gateway can provide a new interface to the system, with a different system purpose and response rules.
|
|
145
|
+
- **Event-Driven Design**: Built on proven event-driven architecture principles, providing complete decoupling of components. This makes the system highly flexible and resilient, while enabling real-time monitoring of every interaction.
|
|
146
|
+
|
|
147
|
+
- **Enterprise-Ready**: Designed from the ground up for production deployments that incorporates the experience from Solace in building mission-critical distributed systems.
|
|
148
|
+
|
|
149
|
+
## Next Steps
|
|
150
|
+
|
|
151
|
+
Check [Solace Agent Mesh Documentation](http://ai-solace-agent-mesh-docs.s3-website-us-east-1.amazonaws.com/docs/documentation/getting-started/introduction) to learn more about the Solace Agent Mesh.
|
|
152
|
+
|
|
153
|
+
| | |
|
|
154
|
+
| ------------------------------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------- |
|
|
155
|
+
| [Components Overview](http://ai-solace-agent-mesh-docs.s3-website-us-east-1.amazonaws.com/docs/documentation/getting-started/component-overview) | Learn about the components that make up the Solace Agent Mesh. |
|
|
156
|
+
| [Gateways](http://ai-solace-agent-mesh-docs.s3-website-us-east-1.amazonaws.com/docs/documentation/concepts/gateways) | Understand how gateways provide interfaces to the Solace Agent Mesh. |
|
|
157
|
+
| [Agents](http://ai-solace-agent-mesh-docs.s3-website-us-east-1.amazonaws.com/docs/documentation/concepts/agents) | Explore the agents that provide specialized capabilities in the Solace Agent Mesh. |
|
|
158
|
+
| [Services](http://ai-solace-agent-mesh-docs.s3-website-us-east-1.amazonaws.com/docs/documentation/concepts/services) | Learn about the services that facilitate interaction within the Solace Agent Mesh. |
|
|
159
|
+
| [Plugins](http://ai-solace-agent-mesh-docs.s3-website-us-east-1.amazonaws.com/docs/documentation/concepts/plugins) | Discover the plugins that extend the functionality of the Solace Agent Mesh. |
|
|
160
|
+
|
|
161
|
+
## Contributing
|
|
162
|
+
|
|
163
|
+
Contributions are encouraged! Please read [CONTRIBUTING.md](CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests to us.
|
|
164
|
+
|
|
165
|
+
You can report any issues by opening an issue on the GitHub repository.
|
|
166
|
+
|
|
167
|
+
## Authors
|
|
168
|
+
|
|
169
|
+
See the list of [contributors](https://github.com/SolaceLabs/solace-agent-mesh/graphs/contributors) who participated in this project.
|
|
170
|
+
|
|
171
|
+
## Release Notes
|
|
172
|
+
|
|
173
|
+
Check out the [CHANGELOG](CHANGELOG.md) for details on changes in each release.
|
|
174
|
+
|
|
175
|
+
## License
|
|
176
|
+
|
|
177
|
+
The Solace Agent Mesh is licensed under the Apache-2.0 license.
|
|
178
|
+
|
|
179
|
+
See the [LICENSE](LICENSE) file for details.
|
|
@@ -0,0 +1,170 @@
|
|
|
1
|
+
solace_agent_mesh/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
solace_agent_mesh/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
solace_agent_mesh/agents/base_agent_component.py,sha256=lal4HiXtf8pt9jwsZVwhf7uwe721fV0do1SU8rFSAJg,9359
|
|
4
|
+
solace_agent_mesh/agents/global/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
solace_agent_mesh/agents/global/global_agent_component.py,sha256=3oYsSXKNmsURAwMSgNrqC9-LImq4yZ59C12gtqOP8DA,1015
|
|
6
|
+
solace_agent_mesh/agents/global/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
solace_agent_mesh/agents/global/actions/agent_state_change.py,sha256=QXamVbl3HGMokL1tl0yvYvM5b6o7E3cJ0VWavxsK_MA,1802
|
|
8
|
+
solace_agent_mesh/agents/global/actions/clear_history.py,sha256=XOCpmkr-Jv0SDP1EH2AryABvmC9hpWfqZAXdGPXLzdw,1040
|
|
9
|
+
solace_agent_mesh/agents/global/actions/convert_file_to_markdown.py,sha256=qVLDIS8KZoFP777Kb_B5UmrLAEksxrRzKrcO76lwwm8,6407
|
|
10
|
+
solace_agent_mesh/agents/global/actions/create_file.py,sha256=mf_CFKZc8iWJSb8l8z5EWrv6OQtpFw_jDHLuvji-p6g,2602
|
|
11
|
+
solace_agent_mesh/agents/global/actions/error_action.py,sha256=d0sNyC8pvZu3AeLLOIimG3cmjFmovxTGczp8Y8fTySo,1643
|
|
12
|
+
solace_agent_mesh/agents/global/actions/plantuml_diagram.py,sha256=-fwmJK5-zYouKKE6pCzLK-5APZPZaQbo7JLNbY57v88,4004
|
|
13
|
+
solace_agent_mesh/agents/global/actions/plotly_graph.py,sha256=OYoU8LbWhAv4UIR28FFYjOGnYXC9bXzN6CbvuU6Xces,4359
|
|
14
|
+
solace_agent_mesh/agents/global/actions/retrieve_file.py,sha256=nBK8EGn6R6gCFV4zCc2Xo3Bzz112EtvPmaOBRBZr2do,2232
|
|
15
|
+
solace_agent_mesh/agents/image_processing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
+
solace_agent_mesh/agents/image_processing/image_processing_agent_component.py,sha256=IjZnNk7e8znm7NzXHgvFUpVaxDgUokwB3BzmLjcGolg,632
|
|
17
|
+
solace_agent_mesh/agents/image_processing/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
+
solace_agent_mesh/agents/image_processing/actions/create_image.py,sha256=U3ULpARoSGPnHrvtMyFw-BU7_F7C0VRpD9TunixDMdc,2802
|
|
19
|
+
solace_agent_mesh/agents/image_processing/actions/describe_image.py,sha256=mfAj-pr-yOFo9n8bH1XK7Ig_hHciFeC2MBWyt7uB-CA,4109
|
|
20
|
+
solace_agent_mesh/agents/slack/__init__.py,sha256=7jjAKKy5RdTvPXYCcOczoz6ekd5LQg08yNUBjQGO7Lk,27
|
|
21
|
+
solace_agent_mesh/agents/slack/slack_agent_component.py,sha256=GoDu8jyvcb3J4ypHw3jh2rw1QH8ImTm6uX0fraB_kDc,1855
|
|
22
|
+
solace_agent_mesh/agents/slack/actions/__init__.py,sha256=jHcLj6Bq36F1JY58GGj_505FOeO1VEpUKuiNaeU3PRo,27
|
|
23
|
+
solace_agent_mesh/agents/slack/actions/post_message.py,sha256=QSeYbMyf8Aho8YctQ0cFYYo4YEYxr1zRu-PRCUSOREc,6620
|
|
24
|
+
solace_agent_mesh/agents/web_request/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
|
+
solace_agent_mesh/agents/web_request/web_request_agent_component.py,sha256=UM28XZbX_sm440snB89U0beW1ykgks1KS7wo5RNzkPs,965
|
|
26
|
+
solace_agent_mesh/agents/web_request/actions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
+
solace_agent_mesh/agents/web_request/actions/do_image_search.py,sha256=oC6_1VQC3WedIn7rKs79kcOdBGOepZeT0f3UndURjRY,3098
|
|
28
|
+
solace_agent_mesh/agents/web_request/actions/do_news_search.py,sha256=MBKQ5nSQQ9S4E3x1KCJ2gnDFOxjEHYxoRQUW_WMbGek,1621
|
|
29
|
+
solace_agent_mesh/agents/web_request/actions/do_suggestion_search.py,sha256=iM9hh5CaUbYDHk1poj0CvrbB4R4kAEX7lzdaX_l17A8,1082
|
|
30
|
+
solace_agent_mesh/agents/web_request/actions/do_web_request.py,sha256=XsP_Dt43AK6YGvPN7AT-RtjRLXzImxBz3dDT_p5DT7c,5702
|
|
31
|
+
solace_agent_mesh/agents/web_request/actions/download_file.py,sha256=nFIuuimL6ub5EeasmfPXH0y1CUIE6iq44FRW1xK60rs,2692
|
|
32
|
+
solace_agent_mesh/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
|
+
solace_agent_mesh/common/action.py,sha256=vlgojeQs3PjRPCdgGjpHHs5McT5sx72tsahiJ6ZZaxI,3053
|
|
34
|
+
solace_agent_mesh/common/action_list.py,sha256=sy1cwkJ3ISdvK1CqvCblQmONnZtAtLt-nv5eBOaq-r8,1109
|
|
35
|
+
solace_agent_mesh/common/action_response.py,sha256=D3Ht_qDs4nCulpPEW0zD5MbH_N2xF3lQeN8dW9O9C6s,9817
|
|
36
|
+
solace_agent_mesh/common/constants.py,sha256=c-8SaQarapQ0NilVRuj7aMpmohjRqw6lHLb0RPXsVKk,117
|
|
37
|
+
solace_agent_mesh/common/mysql_database.py,sha256=I6heri35TqLU0spV_p7XBye5CmFe3dspZHs9eCjHYK4,1121
|
|
38
|
+
solace_agent_mesh/common/postgres_database.py,sha256=Bkt9PWPHuw9DfuVNelWB__DiKjF73TMStJri6NO8Rj0,2345
|
|
39
|
+
solace_agent_mesh/common/prompt_templates.py,sha256=QhcxTVRvLyJYdUO8w8P3LzVCejSVKG90P6UE0qHG3fc,687
|
|
40
|
+
solace_agent_mesh/common/prompt_templates_unused_delete.py,sha256=Quyee4Xuf4vZj_29Nq0RIR9-eztKZGzzUY7cFbmmJno,7229
|
|
41
|
+
solace_agent_mesh/common/stimulus_utils.py,sha256=OIGrOVFlg3V0YAjO5GU0qZ-NO95cN_yQ707JTuQqa9E,5445
|
|
42
|
+
solace_agent_mesh/common/time.py,sha256=SH0Zfh1Hn6k8TcwZ8MpA_2-CV9-uA8Zc57-Zxm5C6c4,298
|
|
43
|
+
solace_agent_mesh/common/utils.py,sha256=X7SzLj8Zr-uxZmkLgSIBiePpfJaLsX6zZjY0dgfPeZM,23206
|
|
44
|
+
solace_agent_mesh/gateway/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
|
+
solace_agent_mesh/gateway/components/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
46
|
+
solace_agent_mesh/gateway/components/gateway_base.py,sha256=6A1UNHxPnCk4ZLjllTsiE0nIHDUWODsJviIUdKfrQow,1574
|
|
47
|
+
solace_agent_mesh/gateway/components/gateway_input.py,sha256=BJolcoCji9A5sraQV2taEkOOaK3LpzDWOhbJJ9pYxd0,10140
|
|
48
|
+
solace_agent_mesh/gateway/components/gateway_output.py,sha256=pjoNWoSSy1Y4ticVXA70Jry0XmTDTxx9RfhF2LFCyuw,11044
|
|
49
|
+
solace_agent_mesh/gateway/identity/bamboohr_identity.py,sha256=875pguj7vDx5Tij7YCvfqJQIC0HD_pnU5AtqCUuv7Cs,621
|
|
50
|
+
solace_agent_mesh/gateway/identity/identity_base.py,sha256=2oaqSPYNwMj4kOyokPAvfHPYW2_uUH85nTh2RogzQD8,271
|
|
51
|
+
solace_agent_mesh/gateway/identity/identity_provider.py,sha256=gy2GUcd1ZI441wljPDLZLql2iEzffzWJZr7bpU1M0L8,2523
|
|
52
|
+
solace_agent_mesh/gateway/identity/no_identity.py,sha256=R-vhZ7w8M9npn103Y0rivRYuEtTcTYRQX_JFu3NsIa8,215
|
|
53
|
+
solace_agent_mesh/gateway/identity/passthru_identity.py,sha256=rNCYS5UFjjXg7eCiaCb8HLt_4lJy_wVI35HeR-OVMUk,241
|
|
54
|
+
solace_agent_mesh/monitors/base_monitor_component.py,sha256=3-IKG6MJ8otrPhzoye9YO_y2IFhUJeKuP2FDyKAQKCk,937
|
|
55
|
+
solace_agent_mesh/monitors/feedback/user_feedback_monitor.py,sha256=JGK9nJcKnK8JznVZk-zl1NL6uHLu-eg7jJ4N8LTJMEU,2736
|
|
56
|
+
solace_agent_mesh/monitors/stim_and_errors/stim_and_error_monitor.py,sha256=jMM1mhsntpoFWP1NVtLj5kLChb0CH4VZamAa77wFLn0,20177
|
|
57
|
+
solace_agent_mesh/orchestrator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
58
|
+
solace_agent_mesh/orchestrator/action_manager.py,sha256=2Fmy8AUY1YihI90ba1sJv_1TcOPFzX0w0x3EXi25EaI,8551
|
|
59
|
+
solace_agent_mesh/orchestrator/orchestrator_main.py,sha256=wHLCaIqwzDrnpWM97lnrUwrk_bS9nmjy4R_dDRn24iU,5983
|
|
60
|
+
solace_agent_mesh/orchestrator/orchestrator_prompt.py,sha256=GOz3SQdb4JJICggtPeoM3ChTBvCggw_c77gS7s6eKEs,23114
|
|
61
|
+
solace_agent_mesh/orchestrator/components/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
|
+
solace_agent_mesh/orchestrator/components/orchestrator_action_manager_timeout_component.py,sha256=w-rZBLMJPz8sLkxgOCH4Mc5Yk8jI0wKG-TZ27cQP-sU,1976
|
|
63
|
+
solace_agent_mesh/orchestrator/components/orchestrator_action_response_component.py,sha256=Wo2Qd6CU4bcllc_jy6XXdza1jewcV1SGXh1osdWI4Zc,7140
|
|
64
|
+
solace_agent_mesh/orchestrator/components/orchestrator_register_component.py,sha256=rLoTSwQvYedBnTaeU9pM-viBvY2So7Gv3eYuXMbuhTs,4797
|
|
65
|
+
solace_agent_mesh/orchestrator/components/orchestrator_stimulus_processor_component.py,sha256=ZopXC0fIn2u1R1ZjaSfa1xe8mQ12J2WP_N1INDT1gdA,19095
|
|
66
|
+
solace_agent_mesh/orchestrator/components/orchestrator_streaming_output_component.py,sha256=IhFUMA4GUEcfa7j94QEEt-R6JCF4C58tp1sejHu5nPk,9463
|
|
67
|
+
solace_agent_mesh/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
|
+
solace_agent_mesh/services/authorization/providers/base_authorization_provider.py,sha256=4c31MQRzGQdI7ACDgorIqAcxnUjbJwSs0fS06l6NoaI,2105
|
|
69
|
+
solace_agent_mesh/services/bamboo_hr_service/__init__.py,sha256=FoumR2m5O6lPcFgDhHbQ4CtsffM9CpvA7pVLT7RKuOQ,56
|
|
70
|
+
solace_agent_mesh/services/bamboo_hr_service/bamboo_hr.py,sha256=5JT3wagqNjcZYKYjlHjBN8vpC2iKdm_IDpqi17GAtcw,7283
|
|
71
|
+
solace_agent_mesh/services/common/__init__.py,sha256=JaiKR7QHNVYeryeyv_bvh_5RQeKpOHX1Cu4-HNoFxQs,167
|
|
72
|
+
solace_agent_mesh/services/common/auto_expiry.py,sha256=RxohpFZ34tUgOBOSoiFYgJ4aWH703575HN_A5rF0TX4,1598
|
|
73
|
+
solace_agent_mesh/services/common/singleton.py,sha256=AEjOSlWkvAb0oAZsfuoDCOZHM0ZhOu8sTlwN1kw8Mc0,639
|
|
74
|
+
solace_agent_mesh/services/file_service/__init__.py,sha256=Eadj-D024ioIf96cjrwehj-WBZbrUC5CSqa1bKSBf1g,388
|
|
75
|
+
solace_agent_mesh/services/file_service/file_service.py,sha256=9Ei74e2jvNnK9n_vdnurz2u-2mjmgcBU3HDVptva6Ms,16033
|
|
76
|
+
solace_agent_mesh/services/file_service/file_service_constants.py,sha256=U1-Nx1rl_jLljzqWbXk2kjS37ayu1NOgzrl4nxRm1Zk,1244
|
|
77
|
+
solace_agent_mesh/services/file_service/file_transformations.py,sha256=ABj6cqDTIP77_k6se4FwTOac5EmT9CT_0iQAPAw00lA,4284
|
|
78
|
+
solace_agent_mesh/services/file_service/file_utils.py,sha256=usbq4fiZ_PWAOo-C1uw2sqZ7yt-uBwBeAiskfKXufbE,9210
|
|
79
|
+
solace_agent_mesh/services/file_service/file_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
80
|
+
solace_agent_mesh/services/file_service/file_manager/bucket_file_manager.py,sha256=312ScT5xyfV4Ho7xBvHmM9Q0UqjQ7w4gW3BIWIuG4g4,5783
|
|
81
|
+
solace_agent_mesh/services/file_service/file_manager/file_manager_base.py,sha256=gYrlBlqGRkGESB0xHCFz1Vg29IF9dEvz8c1DNZqRaVo,4915
|
|
82
|
+
solace_agent_mesh/services/file_service/file_manager/memory_file_manager.py,sha256=F2lpwl4ndOl2RuWpUIrzuKukybGBqV076-tVmgQLP28,2505
|
|
83
|
+
solace_agent_mesh/services/file_service/file_manager/volume_file_manager.py,sha256=alOIyG0jWZvchEP9tHhOdnkmXMPDs4W0VQK1bZtCXUc,4041
|
|
84
|
+
solace_agent_mesh/services/file_service/transformers/__init__.py,sha256=srgqGcX0ROzSeiQqbfcQpIq1p1FGBxU_Gu03t8pZ7q8,52
|
|
85
|
+
solace_agent_mesh/services/history_service/__init__.py,sha256=AjMNxbn-i0Zz9e32x-nyKpUVO0PSBYQrguCqOcEPXq0,73
|
|
86
|
+
solace_agent_mesh/services/history_service/history_service.py,sha256=2BynLYSZY5LE_4Im-J7XOiZioTEJT-GclYlRlx1TX_k,5234
|
|
87
|
+
solace_agent_mesh/services/history_service/history_providers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
88
|
+
solace_agent_mesh/services/history_service/history_providers/base_history_provider.py,sha256=e7IwdTiqvUq8TKUuGs6nimRjGcUOyJHVp7evaWZNNoA,2582
|
|
89
|
+
solace_agent_mesh/services/history_service/history_providers/memory_history_provider.py,sha256=p6LD1O742KvFP_m4xwvUo1_Enj33Zf6cmwQBI4AZQSU,6237
|
|
90
|
+
solace_agent_mesh/services/history_service/history_providers/redis_history_provider.py,sha256=ccCTb_AAMJk1vD8keIo3TnceXf1hxYs0iUBGf24Urb8,6225
|
|
91
|
+
solace_agent_mesh/services/llm_service/components/llm_request_component.py,sha256=h4y2282vxgUU_Jz-FLHqH6Dlv5MhMbipYIiLpQ9ZD4Q,10225
|
|
92
|
+
solace_agent_mesh/services/llm_service/components/llm_service_component_base.py,sha256=vbtHMVRk4dCHDbo-gZfYfLPJYt4WFSq9A51UqVTLz18,5769
|
|
93
|
+
solace_agent_mesh/services/middleware_service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
94
|
+
solace_agent_mesh/services/middleware_service/middleware_service.py,sha256=IoCnWr9XujVmfac6Z5FoLMeogszSwgPGkXXpWdYqKkU,899
|
|
95
|
+
solace_agent_mesh/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
96
|
+
solace_agent_mesh/tools/components/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
97
|
+
solace_agent_mesh/tools/components/conversation_formatter.py,sha256=_C60LepjhxPzQYCwjIAp8nQD3XdVpvZdxNO4cLBXXrY,4202
|
|
98
|
+
solace_agent_mesh/tools/components/file_resolver_component.py,sha256=MOKFuIBpxsQuSQF7ogdhtm2E1w8LDMs_giaNKfkx2pY,1965
|
|
99
|
+
solace_agent_mesh/tools/config/runtime_config.py,sha256=9-sCi2W5RSyN8WUHdSv6YVzKWORzK1akM-C19tDSCUo,860
|
|
100
|
+
solace_agent_mesh/cli/__init__.py,sha256=kUR5RAFc7HCeiqdlX36dZOHkUI5wI6V_43RpEcD8b-0,22
|
|
101
|
+
solace_agent_mesh/cli/config.py,sha256=sGcJE9zNNGme3n6Q4wOM5Vn2TQSTWHRXPZUBnNEwV40,2841
|
|
102
|
+
solace_agent_mesh/cli/main.py,sha256=faei8XGbAaexbIfmZBnuo7eqyo5pBm7Rh1pn-Ybjv6M,7127
|
|
103
|
+
solace_agent_mesh/cli/utils.py,sha256=TYNDr8IweOtGT11X-ZNPVC6WPgMrcVyAeAa9NvVV5Oo,7632
|
|
104
|
+
solace_agent_mesh/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
105
|
+
solace_agent_mesh/cli/commands/build.py,sha256=F4j7WYogivcLuj5SXbrs8RRHakjur8UsW2mL9mxaIM4,24172
|
|
106
|
+
solace_agent_mesh/cli/commands/config.py,sha256=_9Sw3TbTUgAVsEUrbTn72e4lABIchjpKS_JhSIF2EZ0,772
|
|
107
|
+
solace_agent_mesh/cli/commands/run.py,sha256=sx82i75mQgHduJBcMvSCbdQsAZdTVD0NWGNqtCUQEnE,2066
|
|
108
|
+
solace_agent_mesh/cli/commands/visualizer.py,sha256=FhqEMQRQGrNnkkSihuEKE9rFBATQKjTXLwOUJZIsAH0,4646
|
|
109
|
+
solace_agent_mesh/cli/commands/add/__init__.py,sha256=pT-KD7dTvZdBdrZKBaqtlwwKwjX5Kg_WnotryI0cBXI,56
|
|
110
|
+
solace_agent_mesh/cli/commands/add/add.py,sha256=ojA9sjBBaLMLk4ccsFJwyr8hvZgfHTrf0en21TvzenA,3072
|
|
111
|
+
solace_agent_mesh/cli/commands/add/agent.py,sha256=Ekd7AJeub4TF8TYSwJtwBGhU36-rXLo1wGB8j2I3Cuo,3946
|
|
112
|
+
solace_agent_mesh/cli/commands/add/copy_from_plugin.py,sha256=tO9cSF86PT0qC1_2s9A6Z-U8y_3_QTkKW9quPJzu8hk,3444
|
|
113
|
+
solace_agent_mesh/cli/commands/add/gateway.py,sha256=zWEXjXbPsHTe7nUX7EzRcULw4aEnXZYMmkfaLHLXWxI,9592
|
|
114
|
+
solace_agent_mesh/cli/commands/chat/__init__.py,sha256=nW7pZhP4UlWBGVtn0EyA4-rrOBofQ1zAxNTh9Ymmh3w,59
|
|
115
|
+
solace_agent_mesh/cli/commands/chat/chat.py,sha256=1zeE972Ao2B7ln2WoEwCAjLK6e8fHmoTZtcK8xgFvHU,12394
|
|
116
|
+
solace_agent_mesh/cli/commands/init/__init__.py,sha256=Z7a4KC9a2Y98CRKbU8_YCWrOjSN3_tuxrAe0SV_bJWM,59
|
|
117
|
+
solace_agent_mesh/cli/commands/init/ai_provider_step.py,sha256=UX5sOTD5NKa49TCHxk5-FgOD2vlOQ2WKT32jpS7-peY,1936
|
|
118
|
+
solace_agent_mesh/cli/commands/init/broker_step.py,sha256=wsXO0H7i198amS2x_sZ-ZyzTNquzQ-G-CII4kpRV0rA,3587
|
|
119
|
+
solace_agent_mesh/cli/commands/init/builtin_agent_step.py,sha256=7K-3Vh066iDGuIlIhSpl6_ew4J0cWji_qeBTw3YYOt0,3225
|
|
120
|
+
solace_agent_mesh/cli/commands/init/check_if_already_done.py,sha256=M8dT7Bs2p2BU8LxBt2DiqRM7WehptWRyp5eyG7Ad4FQ,432
|
|
121
|
+
solace_agent_mesh/cli/commands/init/create_config_file_step.py,sha256=dATp12_zvlXQS-TOoj1dwRrNGa7nIV3sag8NtVN2xU0,1946
|
|
122
|
+
solace_agent_mesh/cli/commands/init/create_other_project_files_step.py,sha256=D-EsvKxwVTjhUOySEednNv1_PH5-frlHV2038PDPPX8,3926
|
|
123
|
+
solace_agent_mesh/cli/commands/init/file_service_step.py,sha256=FrmA4Yb082lEFFe4cxLXr_8xT6hC8Zee-5ygR6XO4-E,2256
|
|
124
|
+
solace_agent_mesh/cli/commands/init/init.py,sha256=bAF1hKpbIq_xO_Ac2r-wgnXyEYMCdkp5lVx1q2bNjA8,3637
|
|
125
|
+
solace_agent_mesh/cli/commands/init/project_structure_step.py,sha256=CIZiwxPAQk-YZf1AZQD2TmpwAoOEG2kh4MjFCPWLYWI,1245
|
|
126
|
+
solace_agent_mesh/cli/commands/init/rest_api_step.py,sha256=2tjdz90ohVi82vqnkDBTJ7YhcYajBqBIoujFYGwAHzQ,1477
|
|
127
|
+
solace_agent_mesh/cli/commands/init/web_ui_step.py,sha256=BG5UmaxEPS0HtZwf1zv9-wXVO_IYgZAbOq9zGPop858,1163
|
|
128
|
+
solace_agent_mesh/cli/commands/plugin/__init__.py,sha256=zFmLT32wXFLISlIqpfR1Ru5pur2boWwfD-Et5R8PWbs,65
|
|
129
|
+
solace_agent_mesh/cli/commands/plugin/add.py,sha256=M2M4yFwyQFQAVLBPeatteIkeWyH8ulgmDlVZTCW37fY,3667
|
|
130
|
+
solace_agent_mesh/cli/commands/plugin/build.py,sha256=KqJNOmp77KDk5y04qbkl6AJgEGKAXqXCwgIeD9Yx4tI,9439
|
|
131
|
+
solace_agent_mesh/cli/commands/plugin/create.py,sha256=6XwcvIVAmmkbjK_e-JT4D54xk_dxTOwjl9dTDwsjyF4,3748
|
|
132
|
+
solace_agent_mesh/cli/commands/plugin/plugin.py,sha256=hXfp1avxQmzp9Mh4J2WuZ42fOZlOebSpW8Eavqk8Zto,3458
|
|
133
|
+
solace_agent_mesh/cli/commands/plugin/remove.py,sha256=IxGCxalfnSF7pjN64ZqQfEjCoL2xFJf_MP9trZiStxg,2514
|
|
134
|
+
solace_agent_mesh/configs/agent_global.yaml,sha256=3bpVr6DeXAzA8U1F6rKhwL8oMbh3M3ZuhkguqaI9Nvs,2864
|
|
135
|
+
solace_agent_mesh/configs/agent_image_processing.yaml,sha256=zZW4jN0Rhjc9mYBuO_xq83Ibez8zecso4AHc6MIcZfM,3143
|
|
136
|
+
solace_agent_mesh/configs/agent_slack.yaml,sha256=a2AxmWMwkcE0YxETVS1MvbrYhWY-vi9oJypo7lNbIfo,2198
|
|
137
|
+
solace_agent_mesh/configs/agent_web_request.yaml,sha256=r4sWRXV8FfPxIhpicAJTo9xbfQWQlFRof46g2mWwhHk,2728
|
|
138
|
+
solace_agent_mesh/configs/conversation_to_file.yaml,sha256=rFp8bceg-q7SFWnvPYo13E8uUcJhopXmguR2r4eQVgA,1976
|
|
139
|
+
solace_agent_mesh/configs/error_catcher.yaml,sha256=NrZEVIq4B8S-2UXJd1AHHF_xLcIGN-fnJLTPoqzMLAY,1949
|
|
140
|
+
solace_agent_mesh/configs/monitor.yaml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
141
|
+
solace_agent_mesh/configs/monitor_stim_and_errors_to_slack.yaml,sha256=aoISX3-c3-wNje8cbFQoKv8BsJe9ApI8hX3rK2j6Suk,3983
|
|
142
|
+
solace_agent_mesh/configs/monitor_user_feedback.yaml,sha256=iBZWKIA4XIdqKBCVwo39m-9uOXaCe0m5V59GUiSxiqM,1742
|
|
143
|
+
solace_agent_mesh/configs/orchestrator.yaml,sha256=6XtSMVWj87eU9egzNHXynHa2n5Bja1LBn_LZfwwO2aU,9617
|
|
144
|
+
solace_agent_mesh/configs/service_embedding.yaml,sha256=JDIvNmywtGcy9G25L89zXa-KrEZN68E6kgomXikMHyw,3090
|
|
145
|
+
solace_agent_mesh/configs/service_llm.yaml,sha256=5Shr_VcetpMPGEqpxMwJgN5vy6t7A-3-D6tHS54fofQ,10255
|
|
146
|
+
solace_agent_mesh/configs/visualize_websocket.yaml,sha256=5RlUyqjI2-nOKYUbwoFqfOSDFXLx5LuxraC_hXazdMY,1906
|
|
147
|
+
solace_agent_mesh/templates/action.py,sha256=9U2lfncOa4CPRcgbXbz_BpCGak1ZZVR4UVNELNV-uiI,1401
|
|
148
|
+
solace_agent_mesh/templates/agent.py,sha256=eZb4ZhVkhDdLLUubbHd8obaIyGd610A4bNvoYzkjKqs,771
|
|
149
|
+
solace_agent_mesh/templates/agent.yaml,sha256=wBpBMY-8c_YdwF8RGGVzgizCHxPGhJrKCb4poMnOK1g,2865
|
|
150
|
+
solace_agent_mesh/templates/gateway-config-template.yaml,sha256=sWqRsPvtzx4T3wWgOYyBj4fmTAbLl2o7vNH2HkY48zo,271
|
|
151
|
+
solace_agent_mesh/templates/gateway-default-config.yaml,sha256=jnaKo6r_Rlz66t1nnmR3MGhg7QmiMvlvhZoEAYrxDYs,1082
|
|
152
|
+
solace_agent_mesh/templates/gateway-flows.yaml,sha256=EXyYprTGMGalCB9j6BUnBomgdVQZrHaZtZ9hkjwgSc0,3161
|
|
153
|
+
solace_agent_mesh/templates/gateway-header.yaml,sha256=PjwSOjYrYt8lLo8PYo1AQdZkN5M7HxMNJer2CTpP6mc,472
|
|
154
|
+
solace_agent_mesh/templates/gateway_base.py,sha256=vgiNrcIzJYTli2UMPJyFwDCx1IOGW_oOFpZtTcBdHaE,457
|
|
155
|
+
solace_agent_mesh/templates/gateway_input.py,sha256=gkjTYjgpOxMWU_k0EnB0BU_6q3vOAh9IN-fmxu_jW6k,3097
|
|
156
|
+
solace_agent_mesh/templates/gateway_output.py,sha256=fGM2HnYf9RXkOsLcuDD3HR4ozcxHX9UppxBPCUmtSKk,2191
|
|
157
|
+
solace_agent_mesh/templates/plugin-pyproject.toml,sha256=pD146TDV9DYbt6O8pE9O5KdX_CNqGGuy9BYf8TqmGJI,676
|
|
158
|
+
solace_agent_mesh/templates/rest-api-default-config.yaml,sha256=FiWWyhjspaLP6nEeUEwZ_wlzfNHDxn_gxUcrjPr74Fg,1019
|
|
159
|
+
solace_agent_mesh/templates/rest-api-flows.yaml,sha256=A5EErygJ2R7-F6oQu_zwCukkFITQr6-7AfEHkD--NVE,3092
|
|
160
|
+
solace_agent_mesh/templates/slack-default-config.yaml,sha256=s88O9br8SgPYX9LvO-cOKDuaumJi_EFvNs4UwMdtNFk,349
|
|
161
|
+
solace_agent_mesh/templates/slack-flows.yaml,sha256=BGF0aRmDDvmJsRsS3Qa_WkeNrdLdTBulLhVMUyC_FAM,3560
|
|
162
|
+
solace_agent_mesh/templates/solace-agent-mesh-default.yaml,sha256=R1xm_uPJqWSrjWRhLlVc2VY-YaFzM92L0sPoAfA45iI,3042
|
|
163
|
+
solace_agent_mesh/templates/solace-agent-mesh-plugin-default.yaml,sha256=T0GgQGHJc8uMNH8mlCqxAH3Zm4Yc-rCPiW1UVY6KcdA,331
|
|
164
|
+
solace_agent_mesh/templates/web-default-config.yaml,sha256=1-_XZuYDm23w7FGXVdkc3nmua_i1N4aL0rXy0dtUlbw,149
|
|
165
|
+
solace_agent_mesh/templates/web-flows.yaml,sha256=ctTfI2CYN5FpJsXRdBUGDOpuP1hZwHi2h3aKx2_2uLs,3426
|
|
166
|
+
solace_agent_mesh-0.1.0.dist-info/METADATA,sha256=FzQ6fAXf9SYtnmP-dcyESM_h6rrDEYl9FjcQ58lEu4Y,10185
|
|
167
|
+
solace_agent_mesh-0.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
168
|
+
solace_agent_mesh-0.1.0.dist-info/entry_points.txt,sha256=VDI4Kkhc1jy9ajf8Qd08v3lpV4n7zoWBAo6fopQrXL8,108
|
|
169
|
+
solace_agent_mesh-0.1.0.dist-info/licenses/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
170
|
+
solace_agent_mesh-0.1.0.dist-info/RECORD,,
|
|
@@ -198,5 +198,4 @@
|
|
|
198
198
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
199
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
200
|
See the License for the specific language governing permissions and
|
|
201
|
-
limitations under the License.
|
|
202
|
-
|
|
201
|
+
limitations under the License.
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: solace-agent-mesh
|
|
3
|
-
Version: 0.0.1
|
|
4
|
-
Project-URL: Documentation, https://github.com/SolaceDev/solace-agent-mesh#readme
|
|
5
|
-
Project-URL: Issues, https://github.com/SolaceDev/solace-agent-mesh/issues
|
|
6
|
-
Project-URL: Source, https://github.com/SolaceDev/solace-agent-mesh
|
|
7
|
-
Author-email: Art Morozov <art.morozov@solace.com>
|
|
8
|
-
License-Expression: Apache-2.0
|
|
9
|
-
License-File: LICENSE.txt
|
|
10
|
-
Classifier: Development Status :: 4 - Beta
|
|
11
|
-
Classifier: Programming Language :: Python
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
-
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
18
|
-
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
19
|
-
Requires-Python: >=3.10
|
|
20
|
-
Description-Content-Type: text/markdown
|
|
21
|
-
|
|
22
|
-
# Welcome to solace-agent-mesh
|
|
23
|
-
|
|
24
|
-
[](https://pypi.org/project/solace-agent-mesh)
|
|
25
|
-
[](https://pypi.org/project/solace-agent-mesh)
|
|
26
|
-
|
|
27
|
-
---
|
|
28
|
-
|
|
29
|
-
## Table of Contents
|
|
30
|
-
|
|
31
|
-
- [Installation](#installation)
|
|
32
|
-
- [License](#license)
|
|
33
|
-
|
|
34
|
-
## Installation
|
|
35
|
-
|
|
36
|
-
```console
|
|
37
|
-
pip install solace-agent-mesh
|
|
38
|
-
```
|
|
39
|
-
|
|
40
|
-
## Support
|
|
41
|
-
|
|
42
|
-
This is not an officially supported Solace product.
|
|
43
|
-
|
|
44
|
-
For more information try these resources:
|
|
45
|
-
|
|
46
|
-
- Ask the [Solace Community](https://solace.community)
|
|
47
|
-
- The Solace Developer Portal website at: https://solace.dev
|
|
48
|
-
|
|
49
|
-
## License
|
|
50
|
-
|
|
51
|
-
`solace-agent-mesh` is distributed under the terms of the [Apache-2.0](https://spdx.org/licenses/Apache-2.0.html) license.
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
solace_agent_mesh/__init__.py,sha256=xRe-NoVSWYivFDWHSRyJjcNrjVwQtNlZ-7Do0ycfzaY,152
|
|
2
|
-
solace_agent_mesh-0.0.1.dist-info/METADATA,sha256=TCkKNa5Hk4vnlHy5vVQXzaBgduhgoRMNZYK5WMulz6o,1727
|
|
3
|
-
solace_agent_mesh-0.0.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
4
|
-
solace_agent_mesh-0.0.1.dist-info/licenses/LICENSE.txt,sha256=z5DWWd5cHmQYJnq4BDt1bmVQjuXY1Qsp6y0v5ETCw-s,11360
|
|
5
|
-
solace_agent_mesh-0.0.1.dist-info/RECORD,,
|
|
File without changes
|