universal-mcp-agents 0.1.23__py3-none-any.whl → 0.1.24rc3__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.
Files changed (35) hide show
  1. universal_mcp/agents/__init__.py +11 -2
  2. universal_mcp/agents/base.py +3 -6
  3. universal_mcp/agents/codeact0/agent.py +14 -17
  4. universal_mcp/agents/codeact0/prompts.py +9 -3
  5. universal_mcp/agents/codeact0/sandbox.py +2 -2
  6. universal_mcp/agents/codeact0/tools.py +2 -2
  7. universal_mcp/agents/codeact0/utils.py +48 -0
  8. universal_mcp/agents/codeact00/__init__.py +3 -0
  9. universal_mcp/agents/codeact00/__main__.py +26 -0
  10. universal_mcp/agents/codeact00/agent.py +578 -0
  11. universal_mcp/agents/codeact00/config.py +77 -0
  12. universal_mcp/agents/codeact00/langgraph_agent.py +14 -0
  13. universal_mcp/agents/codeact00/llm_tool.py +25 -0
  14. universal_mcp/agents/codeact00/prompts.py +364 -0
  15. universal_mcp/agents/codeact00/sandbox.py +135 -0
  16. universal_mcp/agents/codeact00/state.py +66 -0
  17. universal_mcp/agents/codeact00/tools.py +525 -0
  18. universal_mcp/agents/codeact00/utils.py +678 -0
  19. universal_mcp/agents/codeact01/__init__.py +3 -0
  20. universal_mcp/agents/codeact01/__main__.py +26 -0
  21. universal_mcp/agents/codeact01/agent.py +413 -0
  22. universal_mcp/agents/codeact01/config.py +77 -0
  23. universal_mcp/agents/codeact01/langgraph_agent.py +14 -0
  24. universal_mcp/agents/codeact01/llm_tool.py +25 -0
  25. universal_mcp/agents/codeact01/prompts.py +246 -0
  26. universal_mcp/agents/codeact01/sandbox.py +162 -0
  27. universal_mcp/agents/codeact01/state.py +58 -0
  28. universal_mcp/agents/codeact01/tools.py +648 -0
  29. universal_mcp/agents/codeact01/utils.py +552 -0
  30. universal_mcp/agents/llm.py +7 -3
  31. universal_mcp/applications/llm/app.py +66 -15
  32. {universal_mcp_agents-0.1.23.dist-info → universal_mcp_agents-0.1.24rc3.dist-info}/METADATA +1 -1
  33. universal_mcp_agents-0.1.24rc3.dist-info/RECORD +66 -0
  34. universal_mcp_agents-0.1.23.dist-info/RECORD +0 -44
  35. {universal_mcp_agents-0.1.23.dist-info → universal_mcp_agents-0.1.24rc3.dist-info}/WHEEL +0 -0
@@ -1,8 +1,8 @@
1
1
  import json
2
- from typing import Any, Literal, cast
2
+ from typing import Any, Literal, cast, Optional, List
3
3
 
4
4
  from langchain.agents import create_agent
5
- from pydantic import BaseModel, Field
5
+ from pydantic import BaseModel, Field, create_model
6
6
  from universal_mcp.applications.application import BaseApplication
7
7
 
8
8
  from universal_mcp.agents.llm import load_chat_model
@@ -10,6 +10,59 @@ from universal_mcp.agents.llm import load_chat_model
10
10
  MAX_RETRIES = 3
11
11
 
12
12
 
13
+ def _pydantic_model_from_json_schema(schema: dict[str, Any]) -> type[BaseModel]:
14
+ """Create a Pydantic model from a JSON schema (subset support).
15
+
16
+ Supported keywords: type, properties, required, items, description, title.
17
+ """
18
+
19
+ def to_type(subschema: dict[str, Any]) -> Any:
20
+ stype = subschema.get("type")
21
+ if stype == "object" or (stype is None and "properties" in subschema):
22
+ title = subschema.get("title", "SubObject")
23
+ props: dict[str, dict[str, Any]] = subschema.get("properties", {})
24
+ required: list[str] = subschema.get("required", [])
25
+ fields: dict[str, tuple[Any, Any]] = {}
26
+ for name, prop_schema in props.items():
27
+ t = to_type(prop_schema)
28
+ if name in required:
29
+ fields[name] = (t, ...)
30
+ else:
31
+ fields[name] = (Optional[t], None) # type: ignore[index]
32
+ return create_model(title, **fields) # type: ignore[return-value]
33
+ if stype == "array":
34
+ item_schema = subschema.get("items", {"type": "string"})
35
+ return List[to_type(item_schema)] # type: ignore[index]
36
+ if stype == "string":
37
+ return str
38
+ if stype == "integer":
39
+ return int
40
+ if stype == "number":
41
+ return float
42
+ if stype == "boolean":
43
+ return bool
44
+ if stype == "null":
45
+ return Optional[Any]
46
+ # Fallback to Any for unsupported/omitted types
47
+ return Any
48
+
49
+ title = schema.get("title", "Output")
50
+ if schema.get("type") == "object" or "properties" in schema:
51
+ props = schema.get("properties", {})
52
+ required = schema.get("required", [])
53
+ fields: dict[str, tuple[Any, Any]] = {}
54
+ for name, prop_schema in props.items():
55
+ t = to_type(prop_schema)
56
+ if name in required:
57
+ fields[name] = (t, ...)
58
+ else:
59
+ fields[name] = (Optional[t], None) # type: ignore[index]
60
+ return create_model(title, **fields) # type: ignore[return-value]
61
+ # Non-object root types
62
+ root_type = to_type(schema)
63
+ return create_model(title, __root__=(root_type, ...)) # type: ignore[return-value]
64
+
65
+
13
66
  def _get_context_as_string(source: Any | list[Any] | dict[str, Any]) -> str:
14
67
  """Converts context to a string representation.
15
68
 
@@ -91,7 +144,7 @@ class LlmApp(BaseApplication):
91
144
 
92
145
  full_prompt = f"{prompt}\n\nContext:\n{context_str}\n\n"
93
146
 
94
- model = load_chat_model("azure/gpt-5-mini", disable_streaming = True, tags=("quiet",))
147
+ model = load_chat_model("azure/gpt-5-mini", disable_streaming=True, tags=("quiet",))
95
148
  response = model.with_retry(stop_after_attempt=MAX_RETRIES).invoke(full_prompt, stream=False)
96
149
  return str(response.content)
97
150
 
@@ -158,7 +211,7 @@ class LlmApp(BaseApplication):
158
211
  reason: str = Field(..., description="The reasoning behind the classification.")
159
212
  top_class: str = Field(..., description="The class with the highest probability.")
160
213
 
161
- model = load_chat_model("azure/gpt-5-mini", temperature=0, disable_streaming = True, tags=("quiet",))
214
+ model = load_chat_model("azure/gpt-5-mini", temperature=0, disable_streaming=True, tags=("quiet",))
162
215
  agent = create_agent(
163
216
  model=model,
164
217
  tools=[],
@@ -229,14 +282,15 @@ class LlmApp(BaseApplication):
229
282
  "Return ONLY a valid JSON object that conforms to the provided schema, with no extra text."
230
283
  )
231
284
 
232
- model = load_chat_model("azure/gpt-5-mini", temperature=0, disable_streaming = True, tags=("quiet",))
285
+ model = load_chat_model("azure/gpt-5-mini", temperature=0, disable_streaming=True, tags=("quiet",))
233
286
 
287
+ PModel = _pydantic_model_from_json_schema(output_schema)
234
288
  response = (
235
- model.with_structured_output(schema=output_schema, method="json_mode")
289
+ model.with_structured_output(PModel)
236
290
  .with_retry(stop_after_attempt=MAX_RETRIES)
237
291
  .invoke(prompt, stream=False)
238
292
  )
239
- return cast(dict[str, Any], response)
293
+ return cast(dict[str, Any], response.model_dump())
240
294
 
241
295
  def call_llm(
242
296
  self,
@@ -282,15 +336,12 @@ class LlmApp(BaseApplication):
282
336
 
283
337
  prompt = f"{task_instructions}\n\nContext:\n{context_str}\n\nReturn ONLY a valid JSON object, no extra text."
284
338
 
285
- model = load_chat_model("azure/gpt-5-mini", temperature=0, disable_streaming = True, tags=("quiet",))
339
+ model = load_chat_model("azure/gpt-5-mini", temperature=0, disable_streaming=True, tags=("quiet",))
286
340
 
287
- agent = create_agent(
288
- model=model,
289
- tools=[],
290
- response_format=output_schema,
291
- )
292
- result = agent.invoke({"messages": [{"role": "user", "content": prompt}]}, stream=False)
293
- return result["structured_response"]
341
+ PModel = _pydantic_model_from_json_schema(output_schema)
342
+ model_with_structure = model.with_structured_output(PModel)
343
+ response = model_with_structure.with_retry(stop_after_attempt=MAX_RETRIES).invoke(prompt, stream=False)
344
+ return cast(dict[str, Any], response.model_dump())
294
345
 
295
346
  def list_tools(self):
296
347
  return [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: universal-mcp-agents
3
- Version: 0.1.23
3
+ Version: 0.1.24rc3
4
4
  Summary: Add your description here
5
5
  Project-URL: Homepage, https://github.com/universal-mcp/applications
6
6
  Project-URL: Repository, https://github.com/universal-mcp/applications
@@ -0,0 +1,66 @@
1
+ universal_mcp/agents/__init__.py,sha256=j2kIa1oM1gg_8dDdLO18MhqV6UpsSugU5Q8VfLAkVG4,1344
2
+ universal_mcp/agents/base.py,sha256=eJjGHp1jAKKs_B-o5AoXqxN_MJzWQYgZV_5PMACyNEo,7749
3
+ universal_mcp/agents/cli.py,sha256=d3O5BxkT4axHcKnL7gM1SvneWoZMh1QQoElk03KeuU4,950
4
+ universal_mcp/agents/hil.py,sha256=_5PCK6q0goGm8qylJq44aSp2MadP-yCPvhOJYKqWLMo,3808
5
+ universal_mcp/agents/llm.py,sha256=Fgmru1eAIsykT6aBRJd2_TYYf6kO2OwD8onIdR1goU4,2058
6
+ universal_mcp/agents/react.py,sha256=ocYm94HOiJVI2zwTjO1K2PNfVY7EILLJ6cd__jnGHPs,3327
7
+ universal_mcp/agents/sandbox.py,sha256=YxTGp_zsajuN7FUn0Q4PFjuXczgLht7oKql_gyb2Gf4,5112
8
+ universal_mcp/agents/simple.py,sha256=NSATg5TWzsRNS7V3LFiDG28WSOCIwCdcC1g7NRwg2nM,2095
9
+ universal_mcp/agents/utils.py,sha256=P6W9k6XAOBp6tdjC2VTP4tE0B2M4-b1EDmr-ylJ47Pw,7765
10
+ universal_mcp/agents/bigtool/__init__.py,sha256=mZG8dsaCVyKlm82otxtiTA225GIFLUCUUYPEIPF24uw,2299
11
+ universal_mcp/agents/bigtool/__main__.py,sha256=0i-fbd2yQ90qa8n2nM3luqoJVN9Reh5HZXR5oK7SAck,445
12
+ universal_mcp/agents/bigtool/agent.py,sha256=mtCDNN8WjE2hjJjooDqusmbferKBHeJMHrhXUPUWaVc,252
13
+ universal_mcp/agents/bigtool/context.py,sha256=ny7gd-vvVpUOYAeQbAEUT0A6Vm6Nn2qGywxTzPBzYFg,929
14
+ universal_mcp/agents/bigtool/graph.py,sha256=2Sy0dtevTWeT3hJDq4BDerZFvk_zJqx15j8VH2XLq8Y,5848
15
+ universal_mcp/agents/bigtool/prompts.py,sha256=Joi5mCzZX63aM_6eBrMOKuNRHjTkceVIibSsGBGqhYE,2041
16
+ universal_mcp/agents/bigtool/state.py,sha256=Voh7HXGC0PVe_0qoRZ8ZYg9akg65_2jQIAV2eIwperE,737
17
+ universal_mcp/agents/bigtool/tools.py,sha256=-u80ta6xEaqzEMSzDVe3QZiTZm3YlgLkBD8WTghzClw,6315
18
+ universal_mcp/agents/builder/__main__.py,sha256=VJDJOr-dJJerT53ibh5LVqIsMJ0m0sG2UlzFB784pKw,11680
19
+ universal_mcp/agents/builder/builder.py,sha256=mh3MZpMVB1FE1DWzvMW9NnfiaF145VGn8cJzKSYUlzY,8587
20
+ universal_mcp/agents/builder/helper.py,sha256=8igR1b3Gy_N2u3WxHYKIWzvw7F5BMnfpO2IU74v6vsw,2680
21
+ universal_mcp/agents/builder/prompts.py,sha256=8Xs6uzTUHguDRngVMLak3lkXFkk2VV_uQXaDllzP5cI,4670
22
+ universal_mcp/agents/builder/state.py,sha256=7DeWllxfN-yD6cd9wJ3KIgjO8TctkJvVjAbZT8W_zqk,922
23
+ universal_mcp/agents/codeact0/__init__.py,sha256=8-fvUo1Sm6dURGI-lW-X3Kd78LqySYbb5NMkNJ4NDwg,76
24
+ universal_mcp/agents/codeact0/__main__.py,sha256=YyIoecUcKVUhTcCACzLlSmYrayMDsdwzDEqaV4VV4CE,766
25
+ universal_mcp/agents/codeact0/agent.py,sha256=3cFnQMxj-Bi-twM7sgGNfUp_ui7nb8iI-7_Hl_C_wHM,23745
26
+ universal_mcp/agents/codeact0/config.py,sha256=H-1woj_nhSDwf15F63WYn723y4qlRefXzGxuH81uYF0,2215
27
+ universal_mcp/agents/codeact0/langgraph_agent.py,sha256=8nz2wq-LexImx-l1y9_f81fK72IQetnCeljwgnduNGY,420
28
+ universal_mcp/agents/codeact0/llm_tool.py,sha256=-pAz04OrbZ_dJ2ueysT1qZd02DrbLY4EbU0tiuF_UNU,798
29
+ universal_mcp/agents/codeact0/prompts.py,sha256=6yL-u8LG5Xf5HWgG6zXTK-tLbHczh06tBi8m61ZYOW8,17830
30
+ universal_mcp/agents/codeact0/sandbox.py,sha256=WgJ90FHOA4LPTdIcazMN4nMUTYum_nsxwmam8kAsNSM,4688
31
+ universal_mcp/agents/codeact0/state.py,sha256=cf-94hfVub-HSQJk6b7_SzqBS-oxMABjFa8jqyjdDK0,1925
32
+ universal_mcp/agents/codeact0/tools.py,sha256=0rCNzTwGz6blwbY7vgUkvEpTnN2cYYYESfNh960cPbM,23277
33
+ universal_mcp/agents/codeact0/utils.py,sha256=6tfMHa09Kjd2Qf98VpDN-rW-UXqmAry96Rg0SAu7PWM,21809
34
+ universal_mcp/agents/codeact00/__init__.py,sha256=8-fvUo1Sm6dURGI-lW-X3Kd78LqySYbb5NMkNJ4NDwg,76
35
+ universal_mcp/agents/codeact00/__main__.py,sha256=VJyUxL6Jn7DioBLb9KILybPwX4Mh-v0REQfQb84W-EY,767
36
+ universal_mcp/agents/codeact00/agent.py,sha256=v_3RjPSZMTjij2ZsMj92P-lM80nRQrMmNaSCEoBbtfo,28737
37
+ universal_mcp/agents/codeact00/config.py,sha256=H-1woj_nhSDwf15F63WYn723y4qlRefXzGxuH81uYF0,2215
38
+ universal_mcp/agents/codeact00/langgraph_agent.py,sha256=mGRNjFB4YoRoVZKkAlV8ot1MeUDlf2A43eB-Cjlgj3M,421
39
+ universal_mcp/agents/codeact00/llm_tool.py,sha256=ndqRZoXxX2rXS6vMK_xKnG3nxLWXs-Ee_Eh2TLHWjdw,799
40
+ universal_mcp/agents/codeact00/prompts.py,sha256=EJ_M3MUq9nymuT93YZEqj_QopFC3O1pHkDw3jXOFPl4,22892
41
+ universal_mcp/agents/codeact00/sandbox.py,sha256=klJmbQWejMYZYOdx5g2UoX8BCq7oIgwSHk1jVaPeLug,4689
42
+ universal_mcp/agents/codeact00/state.py,sha256=GF6QEWC-8useTI3JxYCfXS3h9HZBIWoUVp8qKDsmyYY,2125
43
+ universal_mcp/agents/codeact00/tools.py,sha256=7CAEcrIcqKQ2rDTDR619bLdOcjJGaTdXe5TrsHWMOUI,23615
44
+ universal_mcp/agents/codeact00/utils.py,sha256=PyG0qi5ViPE9yqEFLs_hAkgwqdO8jwYVD03on3SVCfM,26222
45
+ universal_mcp/agents/codeact01/__init__.py,sha256=8-fvUo1Sm6dURGI-lW-X3Kd78LqySYbb5NMkNJ4NDwg,76
46
+ universal_mcp/agents/codeact01/__main__.py,sha256=XBKqo1iU2LYMleXh2yoQFlZNJeLnML801vVzVyxcnMU,767
47
+ universal_mcp/agents/codeact01/agent.py,sha256=Nw3t51jU-pOnj9v1kBMpDgoBghOHaTdiMRmc2mrPXJs,19743
48
+ universal_mcp/agents/codeact01/config.py,sha256=H-1woj_nhSDwf15F63WYn723y4qlRefXzGxuH81uYF0,2215
49
+ universal_mcp/agents/codeact01/langgraph_agent.py,sha256=jevPeluYRm3mpfD9XcwS9Fnn7cMa6YILH6ITP18uUrw,421
50
+ universal_mcp/agents/codeact01/llm_tool.py,sha256=Yw65868xGsbOii8JGp2mePdNVFZta0ZmLC1Fjub3SGw,799
51
+ universal_mcp/agents/codeact01/prompts.py,sha256=C3MJ1GBAo1qT5_ByDlyscbcRm32Z3L1Px5lvmFBLtvM,13980
52
+ universal_mcp/agents/codeact01/sandbox.py,sha256=XgbClsuSauGNYvnETYXBtRlkUUFr8yEHoTOJYwKtBPI,6907
53
+ universal_mcp/agents/codeact01/state.py,sha256=cf-94hfVub-HSQJk6b7_SzqBS-oxMABjFa8jqyjdDK0,1925
54
+ universal_mcp/agents/codeact01/tools.py,sha256=Nh7YBrnk7jxel5mPga75Kwgt1a-v5NIvHz_yH3CaFJc,32538
55
+ universal_mcp/agents/codeact01/utils.py,sha256=SlyzpfXDoaWC3MjRZi7x1yxDkL63ZVzHk18XICtdM54,21810
56
+ universal_mcp/agents/shared/__main__.py,sha256=XxH5qGDpgFWfq7fwQfgKULXGiUgeTp_YKfcxftuVZq8,1452
57
+ universal_mcp/agents/shared/prompts.py,sha256=yjP3zbbuKi87qCj21qwTTicz8TqtkKgnyGSeEjMu3ho,3761
58
+ universal_mcp/agents/shared/tool_node.py,sha256=DC9F-Ri28Pam0u3sXWNODVgmj9PtAEUb5qP1qOoGgfs,9169
59
+ universal_mcp/applications/filesystem/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
+ universal_mcp/applications/filesystem/app.py,sha256=0TRjjm8YnslVRSmfkXI7qQOAlqWlD1eEn8Jm0xBeigs,5561
61
+ universal_mcp/applications/llm/__init__.py,sha256=_XGRxN3O1--ZS5joAsPf8IlI9Qa6negsJrwJ5VJXno0,46
62
+ universal_mcp/applications/llm/app.py,sha256=eM1BUQefxl1qsNKWCnYQlMg-cTu8HpX49spLHUBpMTY,15283
63
+ universal_mcp/applications/ui/app.py,sha256=c7OkZsO2fRtndgAzAQbKu-1xXRuRp9Kjgml57YD2NR4,9459
64
+ universal_mcp_agents-0.1.24rc3.dist-info/METADATA,sha256=BAiJYrW-eiF3xlPpr-FiFjOxGN7k4mBTOMT-S9SJxDs,931
65
+ universal_mcp_agents-0.1.24rc3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
66
+ universal_mcp_agents-0.1.24rc3.dist-info/RECORD,,
@@ -1,44 +0,0 @@
1
- universal_mcp/agents/__init__.py,sha256=Ythw8tyq7p-w1SPnuO2JtS4TvYEP75PkQpdyvZv-ww4,914
2
- universal_mcp/agents/base.py,sha256=HkTQzh8EudkG4_5teiD0aDidWpfp2obOz0XR9XsZeUI,7949
3
- universal_mcp/agents/cli.py,sha256=d3O5BxkT4axHcKnL7gM1SvneWoZMh1QQoElk03KeuU4,950
4
- universal_mcp/agents/hil.py,sha256=_5PCK6q0goGm8qylJq44aSp2MadP-yCPvhOJYKqWLMo,3808
5
- universal_mcp/agents/llm.py,sha256=AOijT3hCt3VId97FnvARsPG9lx0sLmn-yiUo8Qx90lQ,2043
6
- universal_mcp/agents/react.py,sha256=ocYm94HOiJVI2zwTjO1K2PNfVY7EILLJ6cd__jnGHPs,3327
7
- universal_mcp/agents/sandbox.py,sha256=YxTGp_zsajuN7FUn0Q4PFjuXczgLht7oKql_gyb2Gf4,5112
8
- universal_mcp/agents/simple.py,sha256=NSATg5TWzsRNS7V3LFiDG28WSOCIwCdcC1g7NRwg2nM,2095
9
- universal_mcp/agents/utils.py,sha256=P6W9k6XAOBp6tdjC2VTP4tE0B2M4-b1EDmr-ylJ47Pw,7765
10
- universal_mcp/agents/bigtool/__init__.py,sha256=mZG8dsaCVyKlm82otxtiTA225GIFLUCUUYPEIPF24uw,2299
11
- universal_mcp/agents/bigtool/__main__.py,sha256=0i-fbd2yQ90qa8n2nM3luqoJVN9Reh5HZXR5oK7SAck,445
12
- universal_mcp/agents/bigtool/agent.py,sha256=mtCDNN8WjE2hjJjooDqusmbferKBHeJMHrhXUPUWaVc,252
13
- universal_mcp/agents/bigtool/context.py,sha256=ny7gd-vvVpUOYAeQbAEUT0A6Vm6Nn2qGywxTzPBzYFg,929
14
- universal_mcp/agents/bigtool/graph.py,sha256=2Sy0dtevTWeT3hJDq4BDerZFvk_zJqx15j8VH2XLq8Y,5848
15
- universal_mcp/agents/bigtool/prompts.py,sha256=Joi5mCzZX63aM_6eBrMOKuNRHjTkceVIibSsGBGqhYE,2041
16
- universal_mcp/agents/bigtool/state.py,sha256=Voh7HXGC0PVe_0qoRZ8ZYg9akg65_2jQIAV2eIwperE,737
17
- universal_mcp/agents/bigtool/tools.py,sha256=-u80ta6xEaqzEMSzDVe3QZiTZm3YlgLkBD8WTghzClw,6315
18
- universal_mcp/agents/builder/__main__.py,sha256=VJDJOr-dJJerT53ibh5LVqIsMJ0m0sG2UlzFB784pKw,11680
19
- universal_mcp/agents/builder/builder.py,sha256=mh3MZpMVB1FE1DWzvMW9NnfiaF145VGn8cJzKSYUlzY,8587
20
- universal_mcp/agents/builder/helper.py,sha256=8igR1b3Gy_N2u3WxHYKIWzvw7F5BMnfpO2IU74v6vsw,2680
21
- universal_mcp/agents/builder/prompts.py,sha256=8Xs6uzTUHguDRngVMLak3lkXFkk2VV_uQXaDllzP5cI,4670
22
- universal_mcp/agents/builder/state.py,sha256=7DeWllxfN-yD6cd9wJ3KIgjO8TctkJvVjAbZT8W_zqk,922
23
- universal_mcp/agents/codeact0/__init__.py,sha256=8-fvUo1Sm6dURGI-lW-X3Kd78LqySYbb5NMkNJ4NDwg,76
24
- universal_mcp/agents/codeact0/__main__.py,sha256=YyIoecUcKVUhTcCACzLlSmYrayMDsdwzDEqaV4VV4CE,766
25
- universal_mcp/agents/codeact0/agent.py,sha256=sJmTrFudHMJkkRVJgmd3KdB-kFU-yCwPvyRJE18pJ3g,23497
26
- universal_mcp/agents/codeact0/config.py,sha256=H-1woj_nhSDwf15F63WYn723y4qlRefXzGxuH81uYF0,2215
27
- universal_mcp/agents/codeact0/langgraph_agent.py,sha256=8nz2wq-LexImx-l1y9_f81fK72IQetnCeljwgnduNGY,420
28
- universal_mcp/agents/codeact0/llm_tool.py,sha256=-pAz04OrbZ_dJ2ueysT1qZd02DrbLY4EbU0tiuF_UNU,798
29
- universal_mcp/agents/codeact0/prompts.py,sha256=TaGxbEka0wxaHIynVe_El_8Qy7bhIpXFLW817lGq3os,17264
30
- universal_mcp/agents/codeact0/sandbox.py,sha256=Zcr7fvYtcGbwNWd7RPV7-Btl2HtycPIPofEGVmzxSmE,4696
31
- universal_mcp/agents/codeact0/state.py,sha256=cf-94hfVub-HSQJk6b7_SzqBS-oxMABjFa8jqyjdDK0,1925
32
- universal_mcp/agents/codeact0/tools.py,sha256=7w-04moo7gBkqjmGzz_rTbmJEG23W0vd71pZ0D9CA9M,23299
33
- universal_mcp/agents/codeact0/utils.py,sha256=eOdqemLx6RqI5g--vtM9WP2LHrYXro2bxScNAVUU0Do,19683
34
- universal_mcp/agents/shared/__main__.py,sha256=XxH5qGDpgFWfq7fwQfgKULXGiUgeTp_YKfcxftuVZq8,1452
35
- universal_mcp/agents/shared/prompts.py,sha256=yjP3zbbuKi87qCj21qwTTicz8TqtkKgnyGSeEjMu3ho,3761
36
- universal_mcp/agents/shared/tool_node.py,sha256=DC9F-Ri28Pam0u3sXWNODVgmj9PtAEUb5qP1qOoGgfs,9169
37
- universal_mcp/applications/filesystem/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
- universal_mcp/applications/filesystem/app.py,sha256=0TRjjm8YnslVRSmfkXI7qQOAlqWlD1eEn8Jm0xBeigs,5561
39
- universal_mcp/applications/llm/__init__.py,sha256=_XGRxN3O1--ZS5joAsPf8IlI9Qa6negsJrwJ5VJXno0,46
40
- universal_mcp/applications/llm/app.py,sha256=2BIH6JDqw6LPD9Iuo3_LoXa48813o6G4gmeRBR_v9oc,12933
41
- universal_mcp/applications/ui/app.py,sha256=c7OkZsO2fRtndgAzAQbKu-1xXRuRp9Kjgml57YD2NR4,9459
42
- universal_mcp_agents-0.1.23.dist-info/METADATA,sha256=sBzwtuZHot_QhhiMDcIWVVHxi1V373IFHpBTYl9zFyg,928
43
- universal_mcp_agents-0.1.23.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
44
- universal_mcp_agents-0.1.23.dist-info/RECORD,,