mada 0.1.0__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.
- mada-0.1.0/LICENSE +207 -0
- mada-0.1.0/PKG-INFO +354 -0
- mada-0.1.0/README.md +312 -0
- mada-0.1.0/pyproject.toml +72 -0
- mada-0.1.0/setup.cfg +4 -0
- mada-0.1.0/src/mada/__init__.py +11 -0
- mada-0.1.0/src/mada/common/__init__.py +14 -0
- mada-0.1.0/src/mada/common/exceptions.py +12 -0
- mada-0.1.0/src/mada/core/__init__.py +64 -0
- mada-0.1.0/src/mada/core/chat_clients/__init__.py +47 -0
- mada-0.1.0/src/mada/core/chat_clients/bedrock_adapter.py +120 -0
- mada-0.1.0/src/mada/core/chat_clients/chat_client_factory.py +123 -0
- mada-0.1.0/src/mada/core/chat_clients/livai_adapter.py +34 -0
- mada-0.1.0/src/mada/core/chat_clients/openai_adapter.py +58 -0
- mada-0.1.0/src/mada/core/chat_clients/provider_adapter.py +96 -0
- mada-0.1.0/src/mada/core/config/__init__.py +65 -0
- mada-0.1.0/src/mada/core/config/agents.py +126 -0
- mada-0.1.0/src/mada/core/config/app.py +121 -0
- mada-0.1.0/src/mada/core/config/database.py +172 -0
- mada-0.1.0/src/mada/core/config/interface.py +54 -0
- mada-0.1.0/src/mada/core/config/mcp_servers.py +38 -0
- mada-0.1.0/src/mada/core/config/models.py +347 -0
- mada-0.1.0/src/mada/core/config/utils.py +41 -0
- mada-0.1.0/src/mada/core/coordinator.py +87 -0
- mada-0.1.0/src/mada/core/database/__init__.py +21 -0
- mada-0.1.0/src/mada/core/database/base_db.py +133 -0
- mada-0.1.0/src/mada/core/database/db_factory.py +151 -0
- mada-0.1.0/src/mada/core/database/postgresql.py +197 -0
- mada-0.1.0/src/mada/core/database/session_manager.py +180 -0
- mada-0.1.0/src/mada/core/database/sqlite.py +186 -0
- mada-0.1.0/src/mada/core/orchestrator.py +839 -0
- mada-0.1.0/src/mada/interfaces/__init__.py +10 -0
- mada-0.1.0/src/mada/interfaces/cli/__init__.py +4 -0
- mada-0.1.0/src/mada/interfaces/cli/main.py +349 -0
- mada-0.1.0/src/mada/interfaces/gradio/__init__.py +4 -0
- mada-0.1.0/src/mada/interfaces/gradio/assets/__init__.py +9 -0
- mada-0.1.0/src/mada/interfaces/gradio/assets/gradio.css +29 -0
- mada-0.1.0/src/mada/interfaces/gradio/assets/gradio.js +77 -0
- mada-0.1.0/src/mada/interfaces/gradio/interface.py +344 -0
- mada-0.1.0/src/mada/interfaces/gradio/main.py +188 -0
- mada-0.1.0/src/mada/interfaces/gradio/mcp_client_wrapper.py +290 -0
- mada-0.1.0/src/mada/interfaces/gradio/utils.py +114 -0
- mada-0.1.0/src/mada/interfaces/openai_api/__init__.py +4 -0
- mada-0.1.0/src/mada/interfaces/openai_api/main.py +565 -0
- mada-0.1.0/src/mada/main.py +197 -0
- mada-0.1.0/src/mada.egg-info/PKG-INFO +354 -0
- mada-0.1.0/src/mada.egg-info/SOURCES.txt +53 -0
- mada-0.1.0/src/mada.egg-info/dependency_links.txt +1 -0
- mada-0.1.0/src/mada.egg-info/entry_points.txt +5 -0
- mada-0.1.0/src/mada.egg-info/requires.txt +29 -0
- mada-0.1.0/src/mada.egg-info/top_level.txt +1 -0
- mada-0.1.0/tests/test_config.py +63 -0
- mada-0.1.0/tests/test_entrypoints.py +707 -0
- mada-0.1.0/tests/test_mcp_error_handling.py +272 -0
- mada-0.1.0/tests/test_session_manager.py +104 -0
mada-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,207 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright 2018, Lawrence Livermore National Security, LLC
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
202
|
+
|
|
203
|
+
---- LLVM Exceptions to the Apache 2.0 License ----
|
|
204
|
+
|
|
205
|
+
As an exception, if, as a result of your compiling your source code, portions of this Software are embedded into an Object form of such source code, you may redistribute such embedded portions in such Object form without complying with the conditions of Sections 4(a), 4(b) and 4(d) of the License.
|
|
206
|
+
|
|
207
|
+
In addition, if you combine or link compiled forms of this Software with software that is licensed under the GPLv2 ("Combined Software") and if a court of competent jurisdiction determines that the patent provision (Section 3), the indemnity provision (Section 9) or other Section of the License conflicts with the conditions of the GPLv2, you may retroactively and prospectively choose to deem waived or otherwise exclude such Section(s) of the License, but only in their entirety and only with respect to the Combined Software.
|
mada-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,354 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mada
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Multi-agent orchestration system for MADA workflows
|
|
5
|
+
License-Expression: Apache-2.0 WITH LLVM-exception
|
|
6
|
+
Project-URL: Homepage, https://github.com/llnl/mada
|
|
7
|
+
Project-URL: Documentation, https://software.llnl.gov/mada
|
|
8
|
+
Project-URL: Issues, https://github.com/llnl/mada/issues
|
|
9
|
+
Project-URL: Release Notes, https://github.com/llnl/mada/releases
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
License-File: LICENSE
|
|
15
|
+
Requires-Dist: agent-framework>=1.0.1
|
|
16
|
+
Requires-Dist: autogen-ext[mcp]>=0.7.4
|
|
17
|
+
Requires-Dist: fastapi
|
|
18
|
+
Requires-Dist: gradio>=6.2.0
|
|
19
|
+
Requires-Dist: openai
|
|
20
|
+
Requires-Dist: python-dotenv
|
|
21
|
+
Requires-Dist: psycopg2
|
|
22
|
+
Requires-Dist: tiktoken
|
|
23
|
+
Requires-Dist: uvicorn
|
|
24
|
+
Requires-Dist: click
|
|
25
|
+
Provides-Extra: tests
|
|
26
|
+
Requires-Dist: pytest; extra == "tests"
|
|
27
|
+
Requires-Dist: pytest-asyncio; extra == "tests"
|
|
28
|
+
Requires-Dist: jeds-cli; extra == "tests"
|
|
29
|
+
Provides-Extra: docs
|
|
30
|
+
Requires-Dist: markdown-grid-tables; extra == "docs"
|
|
31
|
+
Requires-Dist: mkdocs<2.0.0; extra == "docs"
|
|
32
|
+
Requires-Dist: mkdocs-codeinclude-plugin; extra == "docs"
|
|
33
|
+
Requires-Dist: mkdocs-material; extra == "docs"
|
|
34
|
+
Requires-Dist: mkdocs-glightbox; extra == "docs"
|
|
35
|
+
Requires-Dist: mkdocs-literate-nav; extra == "docs"
|
|
36
|
+
Requires-Dist: mkdocs-gen-files; extra == "docs"
|
|
37
|
+
Requires-Dist: mkdocstrings; extra == "docs"
|
|
38
|
+
Requires-Dist: mkdocstrings-python; extra == "docs"
|
|
39
|
+
Provides-Extra: all
|
|
40
|
+
Requires-Dist: mada[docs,tests]; extra == "all"
|
|
41
|
+
Dynamic: license-file
|
|
42
|
+
|
|
43
|
+
# MADA
|
|
44
|
+
|
|
45
|
+
Multi-agent orchestration system for coordinating complex engineering workflows using MCP (Model Context Protocol) servers.
|
|
46
|
+
|
|
47
|
+
## Overview
|
|
48
|
+
|
|
49
|
+
MADA coordinates multiple specialized agents to execute complex engineering workflows. Each agent connects to MCP servers that provide domain-specific tools for simulation, geometry, job management, and inverse design.
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
### Project Structure
|
|
53
|
+
|
|
54
|
+
```
|
|
55
|
+
mada/
|
|
56
|
+
├── src/mada/
|
|
57
|
+
│ ├── core/ # Core orchestration logic
|
|
58
|
+
│ │ ├── config.py # Configuration classes
|
|
59
|
+
│ │ ├── coordinator.py # Agent coordination base class
|
|
60
|
+
│ │ ├── model_client.py # LLM client factory
|
|
61
|
+
│ │ ├── orchestrator.py # Main multi-agent orchestrator
|
|
62
|
+
│ │ └── utils.py # Utility functions
|
|
63
|
+
│ ├── interfaces/ # User interfaces
|
|
64
|
+
│ │ ├── cli/ # Command-line interface
|
|
65
|
+
│ │ │ └── main.py # CLI implementation
|
|
66
|
+
│ │ ├── openai_api/ # OpenAI-compatible HTTP API
|
|
67
|
+
│ │ │ └── main.py # FastAPI launcher
|
|
68
|
+
│ │ └── gradio/ # Web interface
|
|
69
|
+
│ │ ├── interface.py # Gradio interface components
|
|
70
|
+
│ │ ├── mcp_client_wrapper.py # MCP client session
|
|
71
|
+
│ │ └── main.py # Gradio launcher
|
|
72
|
+
│ └── main.py # Main entry point
|
|
73
|
+
├── configs/ # Configuration files
|
|
74
|
+
│ └── orchestrator_config.json # Main configuration
|
|
75
|
+
├── examples/ # Usage examples
|
|
76
|
+
│ └── basic_usage.py # Basic usage example
|
|
77
|
+
└── pyproject.toml # Package configuration
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
## Architecture
|
|
81
|
+
|
|
82
|
+
### Core Components
|
|
83
|
+
|
|
84
|
+
- **Orchestrator** (`src/mada/core/orchestrator.py`) - Main coordination engine
|
|
85
|
+
- **Agents** - Specialized agents for different domains
|
|
86
|
+
- **MCP Servers** - External tool providers
|
|
87
|
+
- **Interfaces** - CLI, Gradio web, and OpenAI-compatible API interfaces
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
## Installation
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
```bash
|
|
94
|
+
# Clone the repository
|
|
95
|
+
git clone https://github.com/llnl/mada.git
|
|
96
|
+
cd mada
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
```bash
|
|
101
|
+
# Create python virtual environment
|
|
102
|
+
python -m venv venv
|
|
103
|
+
source venv/bin/activate
|
|
104
|
+
|
|
105
|
+
# Install dependencies (--pre required for agent-framework pre-release)
|
|
106
|
+
pip install --pre -e .
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
## Prerequisites
|
|
111
|
+
|
|
112
|
+
1. **MCP Servers**: Install and configure MADA Tools:
|
|
113
|
+
```bash
|
|
114
|
+
# SSH access (preferred)
|
|
115
|
+
git clone git@github.com:llnl/mada-tools.git
|
|
116
|
+
|
|
117
|
+
# HTTPS access (alternative)
|
|
118
|
+
git clone https://github.com/llnl/mada-tools.git
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
2. **Install**: Install mada-tools following README
|
|
122
|
+
|
|
123
|
+
## Configuration
|
|
124
|
+
|
|
125
|
+
### Main Configuration
|
|
126
|
+
|
|
127
|
+
MADA uses a single JSON configuration file that defines all agents and their MCP server connections. The configuration file specifies:
|
|
128
|
+
|
|
129
|
+
- **Model settings**: LLM model, API credentials, and connection details
|
|
130
|
+
- **Agent definitions**: Specialized agents and their MCP server connections
|
|
131
|
+
- **MCP server endpoints**: Transport types, URLs, and descriptions
|
|
132
|
+
- **Orchestration settings**: Timeouts, concurrency limits, coordination options
|
|
133
|
+
- **Interface configuration**: UI titles, descriptions, and placeholders
|
|
134
|
+
|
|
135
|
+
See [`configs/mada_config.json`](configs/mada_config.json) for the complete configuration.
|
|
136
|
+
|
|
137
|
+
### Environment Variables
|
|
138
|
+
|
|
139
|
+
MADA uses environment variables for API credentials, which are referenced in the configuration file. Set these environment variables:
|
|
140
|
+
|
|
141
|
+
```bash
|
|
142
|
+
# Required: LLM API configuration
|
|
143
|
+
export API_KEY="your-api-key"
|
|
144
|
+
export API_BASE_URL="https://api.openai.com/v1/responses" # or your preferred endpoint
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
These are referenced in the config file using environment variable expansion:
|
|
148
|
+
```json
|
|
149
|
+
{
|
|
150
|
+
"model": {
|
|
151
|
+
"model": "gpt-4o",
|
|
152
|
+
"api_key": "${API_KEY}",
|
|
153
|
+
"base_url": "${API_BASE_URL:-https://livai-api.llnl.gov/v1}"
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
### MCP Server Setup
|
|
159
|
+
|
|
160
|
+
Ensure MCP servers are running on the expected ports. From the mada-tools directory:
|
|
161
|
+
|
|
162
|
+
```bash
|
|
163
|
+
# Start individual servers
|
|
164
|
+
mada-mcp-flux --port 8001 &
|
|
165
|
+
mada-mcp-professor --port 8005 &
|
|
166
|
+
|
|
167
|
+
# Or start with specific config
|
|
168
|
+
mada-mcp-flux --config configs/development.json --port 8001 &
|
|
169
|
+
```
|
|
170
|
+
|
|
171
|
+
**Important**: Update the MCP server URLs in your `mada_config.json` to point to the correct endpoints where your servers are running. The default configuration assumes servers are running locally on ports 8001-8005.
|
|
172
|
+
|
|
173
|
+
## Usage
|
|
174
|
+
|
|
175
|
+
### CLI Interface
|
|
176
|
+
|
|
177
|
+
Launch the interactive command-line interface:
|
|
178
|
+
|
|
179
|
+
```bash
|
|
180
|
+
# Using the CLI entry point
|
|
181
|
+
mada-cli configs/mada_config.json
|
|
182
|
+
|
|
183
|
+
# Or using the module directly
|
|
184
|
+
python -m mada.interfaces.cli.main configs/mada_config.json
|
|
185
|
+
```
|
|
186
|
+
|
|
187
|
+
The CLI provides an interactive prompt where you can chat directly with the multi-agent team.
|
|
188
|
+
|
|
189
|
+
### Gradio Web Interface
|
|
190
|
+
|
|
191
|
+
Launch the web-based interface:
|
|
192
|
+
|
|
193
|
+
```bash
|
|
194
|
+
# Using the Gradio entry point
|
|
195
|
+
mada-gradio configs/mada_config.json
|
|
196
|
+
|
|
197
|
+
# Or using the module directly
|
|
198
|
+
python -m mada.interfaces.gradio.main configs/mada_config.json
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
The web interface will be available at `http://localhost:7860`.
|
|
202
|
+
|
|
203
|
+
### OpenAI-Compatible API
|
|
204
|
+
|
|
205
|
+
Launch the OpenAI-compatible API server:
|
|
206
|
+
|
|
207
|
+
```bash
|
|
208
|
+
# Using the dedicated entry point
|
|
209
|
+
mada-openai-api configs/orchestrator_config.json
|
|
210
|
+
|
|
211
|
+
# Or using the main entry point
|
|
212
|
+
mada openai-api configs/orchestrator_config.json
|
|
213
|
+
```
|
|
214
|
+
|
|
215
|
+
The API will be available at `http://localhost:8000/v1` and can be connected directly from Open WebUI or any other OpenAI-compatible client.
|
|
216
|
+
|
|
217
|
+
## Examples
|
|
218
|
+
|
|
219
|
+
### Basic Usage
|
|
220
|
+
|
|
221
|
+
Get started quickly with the basic example:
|
|
222
|
+
|
|
223
|
+
```bash
|
|
224
|
+
# Basic CLI interface using main configuration
|
|
225
|
+
python examples/basic_usage.py
|
|
226
|
+
```
|
|
227
|
+
|
|
228
|
+
## Example User Commands
|
|
229
|
+
|
|
230
|
+
Once MADA is running, you can interact with the multi-agent team using natural language commands. Below are some general commands you can try out:
|
|
231
|
+
|
|
232
|
+
**Ask about available agents:**
|
|
233
|
+
```
|
|
234
|
+
what are the agents
|
|
235
|
+
```
|
|
236
|
+
|
|
237
|
+
**Check job status:**
|
|
238
|
+
```
|
|
239
|
+
What is the status of my running jobs?
|
|
240
|
+
```
|
|
241
|
+
|
|
242
|
+
### Adding New Agents
|
|
243
|
+
|
|
244
|
+
1. Add agent configuration to `mada_config.json`:
|
|
245
|
+
```json
|
|
246
|
+
{
|
|
247
|
+
"agent_name": "new_agent",
|
|
248
|
+
"description": "Description of what this agent does",
|
|
249
|
+
"mcp_servers": ["server1", "server2"],
|
|
250
|
+
"domain": "agent_domain",
|
|
251
|
+
"instructions": "Custom system prompt for this agent"
|
|
252
|
+
}
|
|
253
|
+
```
|
|
254
|
+
2. Ensure the MCP servers the agent needs are running
|
|
255
|
+
3. MADA will automatically create and manage the agent
|
|
256
|
+
|
|
257
|
+
### Adding New MCP Servers
|
|
258
|
+
|
|
259
|
+
1. Create the MCP server using the [`mada-tools` repository](https://github.com/llnl/mada-tools)
|
|
260
|
+
2. Add server definition to `mcp_servers` section in `mada_config.json`:
|
|
261
|
+
```json
|
|
262
|
+
{
|
|
263
|
+
"mcp_servers": {
|
|
264
|
+
"new_server": {
|
|
265
|
+
"transport": "streamable-http",
|
|
266
|
+
"url": "http://localhost:8006",
|
|
267
|
+
"description": "Description of the server"
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
```
|
|
272
|
+
3. Update agent's `mcp_servers` list to include the new server
|
|
273
|
+
4. Start the server on the specified port
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
## Troubleshooting
|
|
277
|
+
|
|
278
|
+
### Common Issues
|
|
279
|
+
|
|
280
|
+
#### MCP Server Connection Failed
|
|
281
|
+
|
|
282
|
+
- Verify servers are running on expected ports
|
|
283
|
+
- Ensure transport type matches server configuration
|
|
284
|
+
|
|
285
|
+
#### API Key Issues
|
|
286
|
+
|
|
287
|
+
- Verify `API_KEY` environment variable is set. If using LivAI's endpoint, request a LivAPI key.
|
|
288
|
+
- Confirm `API_BASE_URL` is correct
|
|
289
|
+
|
|
290
|
+
#### Agent Initialization Failed
|
|
291
|
+
|
|
292
|
+
- Check agent configuration in JSON file
|
|
293
|
+
- Verify required MCP servers are available
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
#### "Address already in use" Error
|
|
297
|
+
|
|
298
|
+
If you see an error like:
|
|
299
|
+
|
|
300
|
+
```
|
|
301
|
+
bind [127.0.0.1]:7860: Address already in use
|
|
302
|
+
```
|
|
303
|
+
|
|
304
|
+
it means port 7860 on your local machine is already occupied by another process. To free it:
|
|
305
|
+
|
|
306
|
+
Identify which process is listening on 7860
|
|
307
|
+
|
|
308
|
+
```
|
|
309
|
+
lsof -iTCP:7860 -sTCP:LISTEN
|
|
310
|
+
```
|
|
311
|
+
|
|
312
|
+
Suppose the output shows PID 12345, then kill it:
|
|
313
|
+
|
|
314
|
+
```
|
|
315
|
+
kill -9 12345
|
|
316
|
+
```
|
|
317
|
+
|
|
318
|
+
After freeing the port, try setting up the SSH tunnel again.
|
|
319
|
+
|
|
320
|
+
#### Gradio timeout
|
|
321
|
+
|
|
322
|
+
Use Safari.
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
#### SSL certificate errors
|
|
326
|
+
|
|
327
|
+
If you encounter SSL errors (which sometimes surface as an "Agent error") update your certificate bundle:
|
|
328
|
+
|
|
329
|
+
```
|
|
330
|
+
python_cert_path=$(python -c "import certifi; print(certifi.where())")
|
|
331
|
+
cat /etc/ssl/certs/ca-bundle.crt >> "$python_cert_path"
|
|
332
|
+
```
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
## Related Projects
|
|
336
|
+
|
|
337
|
+
- **MADA Tools**: AI tooling for MADA
|
|
338
|
+
- SSH: `git@github.com:llnl/mada-tools.git`
|
|
339
|
+
- HTTPS: `https://github.com/llnl/mada-tools.git`
|
|
340
|
+
- [Microsoft Agent Framework](https://github.com/microsoft/agent-framework): Multi-agent orchestration framework
|
|
341
|
+
- [MCP](https://modelcontextprotocol.io/): Model Context Protocol specification
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
## Release
|
|
345
|
+
|
|
346
|
+
MADA is distributed under the terms of the Apache License (Version 2.0) WITH LLVM Exception.
|
|
347
|
+
|
|
348
|
+
All new contributions must be made under the Apache 2.0 License WITH LLVM Exception.
|
|
349
|
+
|
|
350
|
+
See [LICENSE](./LICENSE), [COPYRIGHT](./COPYRIGHT), and [NOTICE](./NOTICE) for details.
|
|
351
|
+
|
|
352
|
+
SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
353
|
+
|
|
354
|
+
LLNL-CODE-2019927
|