agentrun-inner-test 0.0.62__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 agentrun-inner-test might be problematic. Click here for more details.

Files changed (154) hide show
  1. agentrun/__init__.py +358 -0
  2. agentrun/agent_runtime/__client_async_template.py +466 -0
  3. agentrun/agent_runtime/__endpoint_async_template.py +345 -0
  4. agentrun/agent_runtime/__init__.py +53 -0
  5. agentrun/agent_runtime/__runtime_async_template.py +477 -0
  6. agentrun/agent_runtime/api/__data_async_template.py +58 -0
  7. agentrun/agent_runtime/api/__init__.py +6 -0
  8. agentrun/agent_runtime/api/control.py +1362 -0
  9. agentrun/agent_runtime/api/data.py +98 -0
  10. agentrun/agent_runtime/client.py +868 -0
  11. agentrun/agent_runtime/endpoint.py +649 -0
  12. agentrun/agent_runtime/model.py +362 -0
  13. agentrun/agent_runtime/runtime.py +904 -0
  14. agentrun/credential/__client_async_template.py +177 -0
  15. agentrun/credential/__credential_async_template.py +216 -0
  16. agentrun/credential/__init__.py +28 -0
  17. agentrun/credential/api/__init__.py +5 -0
  18. agentrun/credential/api/control.py +606 -0
  19. agentrun/credential/client.py +319 -0
  20. agentrun/credential/credential.py +381 -0
  21. agentrun/credential/model.py +248 -0
  22. agentrun/integration/__init__.py +21 -0
  23. agentrun/integration/agentscope/__init__.py +13 -0
  24. agentrun/integration/agentscope/adapter.py +17 -0
  25. agentrun/integration/agentscope/builtin.py +88 -0
  26. agentrun/integration/agentscope/message_adapter.py +185 -0
  27. agentrun/integration/agentscope/model_adapter.py +60 -0
  28. agentrun/integration/agentscope/tool_adapter.py +59 -0
  29. agentrun/integration/builtin/__init__.py +18 -0
  30. agentrun/integration/builtin/knowledgebase.py +137 -0
  31. agentrun/integration/builtin/model.py +93 -0
  32. agentrun/integration/builtin/sandbox.py +1234 -0
  33. agentrun/integration/builtin/toolset.py +47 -0
  34. agentrun/integration/crewai/__init__.py +13 -0
  35. agentrun/integration/crewai/adapter.py +9 -0
  36. agentrun/integration/crewai/builtin.py +88 -0
  37. agentrun/integration/crewai/model_adapter.py +31 -0
  38. agentrun/integration/crewai/tool_adapter.py +26 -0
  39. agentrun/integration/google_adk/__init__.py +13 -0
  40. agentrun/integration/google_adk/adapter.py +15 -0
  41. agentrun/integration/google_adk/builtin.py +88 -0
  42. agentrun/integration/google_adk/message_adapter.py +144 -0
  43. agentrun/integration/google_adk/model_adapter.py +46 -0
  44. agentrun/integration/google_adk/tool_adapter.py +235 -0
  45. agentrun/integration/langchain/__init__.py +31 -0
  46. agentrun/integration/langchain/adapter.py +15 -0
  47. agentrun/integration/langchain/builtin.py +94 -0
  48. agentrun/integration/langchain/message_adapter.py +141 -0
  49. agentrun/integration/langchain/model_adapter.py +37 -0
  50. agentrun/integration/langchain/tool_adapter.py +50 -0
  51. agentrun/integration/langgraph/__init__.py +36 -0
  52. agentrun/integration/langgraph/adapter.py +20 -0
  53. agentrun/integration/langgraph/agent_converter.py +1073 -0
  54. agentrun/integration/langgraph/builtin.py +88 -0
  55. agentrun/integration/pydantic_ai/__init__.py +13 -0
  56. agentrun/integration/pydantic_ai/adapter.py +13 -0
  57. agentrun/integration/pydantic_ai/builtin.py +88 -0
  58. agentrun/integration/pydantic_ai/model_adapter.py +44 -0
  59. agentrun/integration/pydantic_ai/tool_adapter.py +19 -0
  60. agentrun/integration/utils/__init__.py +112 -0
  61. agentrun/integration/utils/adapter.py +560 -0
  62. agentrun/integration/utils/canonical.py +164 -0
  63. agentrun/integration/utils/converter.py +134 -0
  64. agentrun/integration/utils/model.py +110 -0
  65. agentrun/integration/utils/tool.py +1759 -0
  66. agentrun/knowledgebase/__client_async_template.py +173 -0
  67. agentrun/knowledgebase/__init__.py +53 -0
  68. agentrun/knowledgebase/__knowledgebase_async_template.py +438 -0
  69. agentrun/knowledgebase/api/__data_async_template.py +414 -0
  70. agentrun/knowledgebase/api/__init__.py +19 -0
  71. agentrun/knowledgebase/api/control.py +606 -0
  72. agentrun/knowledgebase/api/data.py +624 -0
  73. agentrun/knowledgebase/client.py +311 -0
  74. agentrun/knowledgebase/knowledgebase.py +748 -0
  75. agentrun/knowledgebase/model.py +270 -0
  76. agentrun/memory_collection/__client_async_template.py +178 -0
  77. agentrun/memory_collection/__init__.py +37 -0
  78. agentrun/memory_collection/__memory_collection_async_template.py +457 -0
  79. agentrun/memory_collection/api/__init__.py +5 -0
  80. agentrun/memory_collection/api/control.py +610 -0
  81. agentrun/memory_collection/client.py +323 -0
  82. agentrun/memory_collection/memory_collection.py +844 -0
  83. agentrun/memory_collection/model.py +162 -0
  84. agentrun/model/__client_async_template.py +357 -0
  85. agentrun/model/__init__.py +57 -0
  86. agentrun/model/__model_proxy_async_template.py +270 -0
  87. agentrun/model/__model_service_async_template.py +267 -0
  88. agentrun/model/api/__init__.py +6 -0
  89. agentrun/model/api/control.py +1173 -0
  90. agentrun/model/api/data.py +196 -0
  91. agentrun/model/client.py +674 -0
  92. agentrun/model/model.py +235 -0
  93. agentrun/model/model_proxy.py +439 -0
  94. agentrun/model/model_service.py +438 -0
  95. agentrun/sandbox/__aio_sandbox_async_template.py +523 -0
  96. agentrun/sandbox/__browser_sandbox_async_template.py +110 -0
  97. agentrun/sandbox/__client_async_template.py +491 -0
  98. agentrun/sandbox/__code_interpreter_sandbox_async_template.py +463 -0
  99. agentrun/sandbox/__init__.py +69 -0
  100. agentrun/sandbox/__sandbox_async_template.py +463 -0
  101. agentrun/sandbox/__template_async_template.py +152 -0
  102. agentrun/sandbox/aio_sandbox.py +912 -0
  103. agentrun/sandbox/api/__aio_data_async_template.py +335 -0
  104. agentrun/sandbox/api/__browser_data_async_template.py +140 -0
  105. agentrun/sandbox/api/__code_interpreter_data_async_template.py +206 -0
  106. agentrun/sandbox/api/__init__.py +19 -0
  107. agentrun/sandbox/api/__sandbox_data_async_template.py +107 -0
  108. agentrun/sandbox/api/aio_data.py +551 -0
  109. agentrun/sandbox/api/browser_data.py +172 -0
  110. agentrun/sandbox/api/code_interpreter_data.py +396 -0
  111. agentrun/sandbox/api/control.py +1051 -0
  112. agentrun/sandbox/api/playwright_async.py +492 -0
  113. agentrun/sandbox/api/playwright_sync.py +492 -0
  114. agentrun/sandbox/api/sandbox_data.py +154 -0
  115. agentrun/sandbox/browser_sandbox.py +185 -0
  116. agentrun/sandbox/client.py +925 -0
  117. agentrun/sandbox/code_interpreter_sandbox.py +823 -0
  118. agentrun/sandbox/model.py +384 -0
  119. agentrun/sandbox/sandbox.py +848 -0
  120. agentrun/sandbox/template.py +217 -0
  121. agentrun/server/__init__.py +191 -0
  122. agentrun/server/agui_normalizer.py +180 -0
  123. agentrun/server/agui_protocol.py +797 -0
  124. agentrun/server/invoker.py +309 -0
  125. agentrun/server/model.py +427 -0
  126. agentrun/server/openai_protocol.py +535 -0
  127. agentrun/server/protocol.py +140 -0
  128. agentrun/server/server.py +208 -0
  129. agentrun/toolset/__client_async_template.py +62 -0
  130. agentrun/toolset/__init__.py +51 -0
  131. agentrun/toolset/__toolset_async_template.py +204 -0
  132. agentrun/toolset/api/__init__.py +17 -0
  133. agentrun/toolset/api/control.py +262 -0
  134. agentrun/toolset/api/mcp.py +100 -0
  135. agentrun/toolset/api/openapi.py +1251 -0
  136. agentrun/toolset/client.py +102 -0
  137. agentrun/toolset/model.py +321 -0
  138. agentrun/toolset/toolset.py +271 -0
  139. agentrun/utils/__data_api_async_template.py +721 -0
  140. agentrun/utils/__init__.py +5 -0
  141. agentrun/utils/__resource_async_template.py +158 -0
  142. agentrun/utils/config.py +270 -0
  143. agentrun/utils/control_api.py +105 -0
  144. agentrun/utils/data_api.py +1121 -0
  145. agentrun/utils/exception.py +151 -0
  146. agentrun/utils/helper.py +108 -0
  147. agentrun/utils/log.py +77 -0
  148. agentrun/utils/model.py +168 -0
  149. agentrun/utils/resource.py +291 -0
  150. agentrun_inner_test-0.0.62.dist-info/METADATA +265 -0
  151. agentrun_inner_test-0.0.62.dist-info/RECORD +154 -0
  152. agentrun_inner_test-0.0.62.dist-info/WHEEL +5 -0
  153. agentrun_inner_test-0.0.62.dist-info/licenses/LICENSE +201 -0
  154. agentrun_inner_test-0.0.62.dist-info/top_level.txt +1 -0
@@ -0,0 +1,154 @@
1
+ agentrun/__init__.py,sha256=hj0tXopgHt7_W0lobXfBmjkxsFcTC2mrVOnQcfBXZoY,9656
2
+ agentrun/agent_runtime/__client_async_template.py,sha256=cy30p4V_26qS5hNXhWCQ4yNlhYie6verudhzakCs6w0,16597
3
+ agentrun/agent_runtime/__endpoint_async_template.py,sha256=l2hLAuEoSIpMHvir4yT4rr-nnKdrw6-QbReHRz3Bi2s,12096
4
+ agentrun/agent_runtime/__init__.py,sha256=l_qHvw3gGw9CszV2LG-G4MkmXsmVPOSzpbgZ86JIr1Y,1457
5
+ agentrun/agent_runtime/__runtime_async_template.py,sha256=wn7vLotF48poAJD7NvLFZNEDmBfxnjNwpMBQz3cIjAY,15226
6
+ agentrun/agent_runtime/client.py,sha256=zIeQK4W6HwRFLadADH2ZxJjAxcD0zNIJ8EPr8pN8D28,31021
7
+ agentrun/agent_runtime/endpoint.py,sha256=vNKIEMZ3VVyWur8ytUFBjWllVpRQuhLUoaCz-AryYkI,22764
8
+ agentrun/agent_runtime/model.py,sha256=D_QP6KZZGNMzTV8t4qJKKUnuXW35MTOB0lTYd4PdvAM,11616
9
+ agentrun/agent_runtime/runtime.py,sha256=Hc-0g9AzeI_r8w1Vitau9N_t3o4ZeBl9SApcZUGhzRI,28472
10
+ agentrun/agent_runtime/api/__data_async_template.py,sha256=kY3puB6DV3Wvw7jH-M4Q6jb6gDDzKEHaevtlHdpuRuc,1720
11
+ agentrun/agent_runtime/api/__init__.py,sha256=njDKf-Wvin2yb27g3idRxj80YnmViWYBA7hmXiuIEYU,228
12
+ agentrun/agent_runtime/api/control.py,sha256=zxRHy5xu7_d27Nf7eZbwLSytGSRKp6DDe1t-Q64Us0Y,42341
13
+ agentrun/agent_runtime/api/data.py,sha256=ZmZG5O8xUTPOkY86znJLmvxrL2sFM87gbeTFhbonkbM,2873
14
+ agentrun/credential/__client_async_template.py,sha256=_10Du4szg1ICUyzSCjluJFTw8zU7rVWHnXDX4E7DdwM,5257
15
+ agentrun/credential/__credential_async_template.py,sha256=b168ufEJeKVkDunxJR9aQq5fCp4lE52BUYlgmJv1EDU,5925
16
+ agentrun/credential/__init__.py,sha256=MXxM50FpKqP7pCidMUYpMGu6ImntfIyOOZHPZDXRXcs,614
17
+ agentrun/credential/client.py,sha256=W0lMMOg0kDouyWifU0B8gtBuC3UKSVKP_WcoqtfDOXc,9592
18
+ agentrun/credential/credential.py,sha256=cLuZm56WF-i0RRd1sQQX2bfNbb9c7pC6UBnhjW-ENjs,10554
19
+ agentrun/credential/model.py,sha256=QO_zUBF2lCmmXUumLTW4YYoHUXoTvCALaUw5z-aapmY,7803
20
+ agentrun/credential/api/__init__.py,sha256=_rZkHQ0lqfC-v1wCWDL-udVe8oJAhSMVLGVSuN5GFlA,131
21
+ agentrun/credential/api/control.py,sha256=7IGcGeADcwAQBQ0BioyZ11awc4SILNYkIilbyy8DWlQ,18294
22
+ agentrun/integration/__init__.py,sha256=y8CI6_n_24gVqqiByyoG_KDif-hdRJrFEm9t5ArPxCw,944
23
+ agentrun/integration/agentscope/__init__.py,sha256=ZHiXSBPL68nGVj5q17taYup2yUtvvrwQeXhiwsYX0WQ,373
24
+ agentrun/integration/agentscope/adapter.py,sha256=27qTbjyyWVLIfMXl8mK-UsLUPCHyB5q9OenuRwQKFYQ,547
25
+ agentrun/integration/agentscope/builtin.py,sha256=Pg3apMod4-kLi2Pb6PLflzA7kgn34eO3GqXZt8fo5KA,3022
26
+ agentrun/integration/agentscope/message_adapter.py,sha256=vGyaWrmY57G8_iw2QmplCoq1W9yY6e2glHMhzxhVzt8,6071
27
+ agentrun/integration/agentscope/model_adapter.py,sha256=nZdK498h8bLO-KXlFqXTiobK5xHSrfcOeh0Vd__GlBE,1937
28
+ agentrun/integration/agentscope/tool_adapter.py,sha256=klFbOokB-FwUSYtmtrN3goWGzsBzZJmN1ZlLSpyiz9g,1847
29
+ agentrun/integration/builtin/__init__.py,sha256=30OGF6XPdTle_0KYlH1AlKZj-IW-13T3FhADx_v9Ld4,493
30
+ agentrun/integration/builtin/knowledgebase.py,sha256=SJHfqvufTj1jOM2Es8FdRizcAzQwpPSkfumratF2L3U,4824
31
+ agentrun/integration/builtin/model.py,sha256=Bi5NEjvKil4ScZ2yATg45j8HYZJ0YwNmY6rikug1Zfs,3206
32
+ agentrun/integration/builtin/sandbox.py,sha256=ELknA_MMXdd5QIY9iTFLUnZh-12fjQnSNEiZZ4V_Lm4,43712
33
+ agentrun/integration/builtin/toolset.py,sha256=FWJdpsECbWX8jXr033sDUzIHd2sA4slqb3hClEy6LUk,1604
34
+ agentrun/integration/crewai/__init__.py,sha256=rt4Xu47q3bu8g0uW9NB2MX21EHPJztlYFOIt25JK4Po,492
35
+ agentrun/integration/crewai/adapter.py,sha256=dhB4JHVucCjrw443sptktDcaiamWBEDg6nQ0eW9ND-U,198
36
+ agentrun/integration/crewai/builtin.py,sha256=DKop9DXBroVFoaYucu9Rca-7iT_1QicnTaN8HdBuGwA,2990
37
+ agentrun/integration/crewai/model_adapter.py,sha256=dLsNES95fU8ZbrWWOuSOPT0V7TEkqQrsuNezO-xkhQ8,1103
38
+ agentrun/integration/crewai/tool_adapter.py,sha256=25Sd2L29FQYle5Rxn5k58uvOU2JIhrK76hmptkxSGXU,894
39
+ agentrun/integration/google_adk/__init__.py,sha256=wwyVYg_vA3D4RiBf1Pm5jUZD5rFFCMUi8vyD7tMCA8Y,384
40
+ agentrun/integration/google_adk/adapter.py,sha256=Fk83R5iUPrGas8LB_0rgpD_8BFEc51wxtGsunPWNUFI,469
41
+ agentrun/integration/google_adk/builtin.py,sha256=kHiWdtysEVIm9JExG1m0aVGbaDpaY_iTCejn2823-b8,3042
42
+ agentrun/integration/google_adk/message_adapter.py,sha256=z4r41smNrKMsDL1ecLVdYMIoXnOIw-vyMuju78h9sWY,5697
43
+ agentrun/integration/google_adk/model_adapter.py,sha256=pZ_1yoczuPc5fIFg5TIwTNjTc2_b6UV24yEuvYU4T_8,1686
44
+ agentrun/integration/google_adk/tool_adapter.py,sha256=b01rrcF90JGeMsGB-L8NpEDaOEWF3jpY3CAtH_4_Gtc,7355
45
+ agentrun/integration/langchain/__init__.py,sha256=pWHk7rTwH6y3t1n1c3FoJTLj9z49HHqCYHIXYqQYE0U,979
46
+ agentrun/integration/langchain/adapter.py,sha256=Bl3yp3eRxsGv9XLsI08-ptn3oYN1eIoSTSNmKqGfR5o,463
47
+ agentrun/integration/langchain/builtin.py,sha256=fAUheskfHXJNunVIheTRLxYi7gBznGoZSRKsG6FpijU,3264
48
+ agentrun/integration/langchain/message_adapter.py,sha256=xjQ61ZzytTXvuRWZm73LazzjKjkQuvz9s_gBR7amtFw,5355
49
+ agentrun/integration/langchain/model_adapter.py,sha256=mKWgTDZWhBgqGRZ2hKU029Pux-7RTQ7OFdaNi1u9zBM,1243
50
+ agentrun/integration/langchain/tool_adapter.py,sha256=BsL-e1-d4nsCq0wCdcvd32ftoRwNNW4GwNyXDjaC0A0,1679
51
+ agentrun/integration/langgraph/__init__.py,sha256=W7S72t-95xdPuU9G0c5ZyuzEl6_7rSMewlkphaTl_gY,1209
52
+ agentrun/integration/langgraph/adapter.py,sha256=TdYdjOw5s6zctL3Tc4-oY7dWtI0HekraOerIWsezFVc,565
53
+ agentrun/integration/langgraph/agent_converter.py,sha256=YK2gq0u3Khd48_VlDj7X-C3KxGS_XRUQu21UD_o8Pg4,43144
54
+ agentrun/integration/langgraph/builtin.py,sha256=Bi74S6mts5eTVkDY2Oi9HqsFUMvcGpsPnOOx4K6IuH0,3042
55
+ agentrun/integration/pydantic_ai/__init__.py,sha256=Wze8mSmgipSeQOOhwG5uOyJDhc0eeAHe6qTOR7ffIJs,373
56
+ agentrun/integration/pydantic_ai/adapter.py,sha256=KqnovjursNAbmzty5vA5HnFFVjcYagc20zny75Tmv1M,351
57
+ agentrun/integration/pydantic_ai/builtin.py,sha256=CHsMfQmUGq4p-JUqeBumdtiCchDYPAdl6wMAIUfcPHU,3046
58
+ agentrun/integration/pydantic_ai/model_adapter.py,sha256=pn4rdPYczh3AgiNTo5nQuMM6Howc-BIvqmoJTzBS3IE,1589
59
+ agentrun/integration/pydantic_ai/tool_adapter.py,sha256=CgKiHdJq2jdoU_Etsx_N9mD52XIF_St4v43hhErYzSQ,634
60
+ agentrun/integration/utils/__init__.py,sha256=yWsCS-0WDj1u4HI6EQ-pKxAWf_duBBAj2E-ogtlAmGQ,3400
61
+ agentrun/integration/utils/adapter.py,sha256=ot83tOi7sPAN8YUU2o4bsqUItsc_6Z7b4uBAowbxFMc,17809
62
+ agentrun/integration/utils/canonical.py,sha256=xhdFY-1k_OuwRdh8LUplapLYnwwVwGFdrphOE1sUF7M,4965
63
+ agentrun/integration/utils/converter.py,sha256=myobzrcn9QQ7adriKaAydT0rLMmiGjow6dQE0hBuOPk,4448
64
+ agentrun/integration/utils/model.py,sha256=b4tA7ZSA32GocNHttb57kPooUgJtEAaYisCOqCH4hdo,3650
65
+ agentrun/integration/utils/tool.py,sha256=HZHcJ7RoNijLfQYc_jIo46s_TDzAWRXcj3r2q9Qxvgo,58074
66
+ agentrun/knowledgebase/__client_async_template.py,sha256=1ka_uaq9hGJ1B88QGTnMjamnnvwQw54kywJAvJhzxI0,5775
67
+ agentrun/knowledgebase/__init__.py,sha256=8PzMqNUbldsSjrMpFT05zo5ousOWeSyBzTNV9WC_dAg,1247
68
+ agentrun/knowledgebase/__knowledgebase_async_template.py,sha256=MZxday73MpR9g4W9NyfqLus9XQWfhTLOV06i_rVmxMM,15477
69
+ agentrun/knowledgebase/client.py,sha256=nueRhTSdPwLfmj0MJo8F813Wpqir7V3t4S15clUTKe8,10569
70
+ agentrun/knowledgebase/knowledgebase.py,sha256=oeKNBbZB4HF5DGcsGCL4YvYHV2xb56GyPe1ZNovf5R0,26052
71
+ agentrun/knowledgebase/model.py,sha256=od7NgYGh1M95nz3BToQl6tDrWGclFXwy2uG0WdFfWWo,9674
72
+ agentrun/knowledgebase/api/__data_async_template.py,sha256=Tj33wIiUo8wYbtIwbmiK-x-JB_8VfhGaOBsCyakDp6o,15073
73
+ agentrun/knowledgebase/api/__init__.py,sha256=Sm-EOuU9O3PJMZcKYPURKv_0dWRL21-HKWRclhSRPQU,381
74
+ agentrun/knowledgebase/api/control.py,sha256=hNhYhb2X4fo11RwbL3XuYmtbdw69I_wD3a4PWF6dUC8,18758
75
+ agentrun/knowledgebase/api/data.py,sha256=s6-XA2zGZX_MNnsWtqq5lRMHldTlDVER7C3tvbdM2Ys,22660
76
+ agentrun/memory_collection/__client_async_template.py,sha256=gKM8Qe1RFV9KlEreYJ8apasLDcYNxi9MkXOSU3nJFmw,5563
77
+ agentrun/memory_collection/__init__.py,sha256=3lWU9YAQSuN_QSYKP_PfuBWUhr5Z3vR0fhHFcDsRfRs,929
78
+ agentrun/memory_collection/__memory_collection_async_template.py,sha256=G3eg44XNs_P_wR3YwK7haBjZj7xWecuFRX5qEcx-49A,15009
79
+ agentrun/memory_collection/client.py,sha256=jBbpzttypCYHBPyfE4IYRr8678qc1lZdx4ZepxNUmSY,10101
80
+ agentrun/memory_collection/memory_collection.py,sha256=imcmA9NjOVSvD3lbMOhXQvzO1keDc8ww0Gg4mNudoiQ,27712
81
+ agentrun/memory_collection/model.py,sha256=UBIa01IqQoif4znavS6or1igZne2KkLpYg_hqf69W3I,4508
82
+ agentrun/memory_collection/api/__init__.py,sha256=bGrtKoU2iTDMwP5vwlXSrT1nWRJiOpIJbbKaKQEjDaU,155
83
+ agentrun/memory_collection/api/control.py,sha256=OLnoo4cklgyg-W4MWNiU2YkNq2dcLSq75ssxryeft20,19376
84
+ agentrun/model/__client_async_template.py,sha256=iwd_ayUHM6OMo_e_7v_UDA5hh2kFv0vFlEwIBoYHLz0,10655
85
+ agentrun/model/__init__.py,sha256=3xU_DaEwV_Y87mze02OxiSK59iTLNiR1Q1tBRQsADtQ,1300
86
+ agentrun/model/__model_proxy_async_template.py,sha256=xPSdAWY-oJl7XSCFZWU3nEJh6P7u0d98DLVIU35j6PI,7271
87
+ agentrun/model/__model_service_async_template.py,sha256=bmF-4I4ymKU1pS61aKvbZJ3TcoDTRABYTkGL5f3rQys,7612
88
+ agentrun/model/client.py,sha256=QOm8L5FMOta71EoDu7jxhG4R53adMiU3qsL6oMJQXxA,19875
89
+ agentrun/model/model.py,sha256=u5OrjMnOk1pzXdyH1q72kDXw4XI6BmGFwl0y9B7m6ew,5855
90
+ agentrun/model/model_proxy.py,sha256=Wdui6g3Jb2GJbMbGdpH2sIltENrP3DAvX4ExIMW1A08,11895
91
+ agentrun/model/model_service.py,sha256=6lanpj4R_zIjptUUgPCWWS0sdYIDFw6qt961wSW-fZU,12339
92
+ agentrun/model/api/__init__.py,sha256=mQC4-38Bors4QcL-UfYm8dlLlGsSyQski_OPefIcpLQ,216
93
+ agentrun/model/api/control.py,sha256=SHZwNGPnY8EFRk9dxkS1_h7fFDb-RBiaeddl3ijwff4,36075
94
+ agentrun/model/api/data.py,sha256=f4JZQSIji1ge4_EpFyP6ORmls9jwl1McE5KeSsx6oFo,5638
95
+ agentrun/sandbox/__aio_sandbox_async_template.py,sha256=prGp3kxmXvUfrSJWabrISfWeIP5JY7pJNs-6pFhCS88,16706
96
+ agentrun/sandbox/__browser_sandbox_async_template.py,sha256=Clu-ux3O89aF3nzqTAsJD35mJI2ZewJRcVPHUq2MDi8,3634
97
+ agentrun/sandbox/__client_async_template.py,sha256=ZnvEP8mEF1TNDMmJYBPG8Hq02W7ZDELyfRjthWzPijY,15463
98
+ agentrun/sandbox/__code_interpreter_sandbox_async_template.py,sha256=1yDa-8Hym4EDRqkH4eXkVbF3LnWzd3xvVmvhOy9vZ3U,14542
99
+ agentrun/sandbox/__init__.py,sha256=IurxQ30CaO-jDI9t97C8IN4RfQl_1yT14zQf2ekfnvM,1723
100
+ agentrun/sandbox/__sandbox_async_template.py,sha256=ja-IEK8yQbcqFCRW2TePAcfF6FlN8wopBuF5nZMTDIo,14804
101
+ agentrun/sandbox/__template_async_template.py,sha256=_DkS8_HgD7iLE7ADSFc3Da3KiluMJHi5ypfXp8TOYfE,5430
102
+ agentrun/sandbox/aio_sandbox.py,sha256=3dnixYMKAeSfOwqP0rY_qNIR6_g8RDyBZBaWBZGZSLQ,28784
103
+ agentrun/sandbox/browser_sandbox.py,sha256=wVsm3he9_bdzpyw3SwPHtGzqkQFa2VmMFMULYK1foLw,6063
104
+ agentrun/sandbox/client.py,sha256=r9cfdYT7sh5zPDVO42G9C5SymeuKgALPTXJwAvEFj98,29398
105
+ agentrun/sandbox/code_interpreter_sandbox.py,sha256=irxGNWVrhSw_7IZd0Hf8NqRuJuZ4fJwFkjisp-oBfiU,25677
106
+ agentrun/sandbox/model.py,sha256=Pg41sXxmmnmjZu1n9T4t4RTWfwsEFfCHQIJTBPZYyR0,12646
107
+ agentrun/sandbox/sandbox.py,sha256=8Hg4LytIDWRzxodO0OJPabrt239WfUCQ8cyFqRKLBqo,27051
108
+ agentrun/sandbox/template.py,sha256=aYiENolNp8pKRUBA6Ugi2nrRf5zAY2NZxH_6hlwv9O8,7436
109
+ agentrun/sandbox/api/__aio_data_async_template.py,sha256=tTbgp7ATgpHrFVTrzlxAWH4Vl3JGYmL4oPwdj29L6D0,10401
110
+ agentrun/sandbox/api/__browser_data_async_template.py,sha256=AbEHJDHHYkGZNZBb4omD8YYBfyKzOmiIxBD1-KiZHOo,4969
111
+ agentrun/sandbox/api/__code_interpreter_data_async_template.py,sha256=xvL8vpZJ29kUM7FibA8n3wBULbS1fsNe9TyTr6_m4kg,5499
112
+ agentrun/sandbox/api/__init__.py,sha256=h1Ej-x0Qy3XF6sqsXec16QneOHZWnoHM3Y6axL00Xhc,500
113
+ agentrun/sandbox/api/__sandbox_data_async_template.py,sha256=mlIbWl8AQopKkeACvFSRJHfW2ZSxUxCYvLMWjaoPzIc,3513
114
+ agentrun/sandbox/api/aio_data.py,sha256=wt_chMZUUrzhglRas_WvYno4oOF8242B5tMp8TBbwC4,16035
115
+ agentrun/sandbox/api/browser_data.py,sha256=telf9VG9mQsbgeTqkpBcGXWjAxiqISGwmaEPttuNdts,6060
116
+ agentrun/sandbox/api/code_interpreter_data.py,sha256=iyynds_La3yX2CJY8zQ8oNWLSmIvTDznct22t0rQ2zs,10264
117
+ agentrun/sandbox/api/control.py,sha256=0bsxWC7mBK8kFMN-PhYubJ1gtphtKAb9rDCYRHsG1M8,31416
118
+ agentrun/sandbox/api/playwright_async.py,sha256=_QY567FObKC4rQ8I2aXXHta5JYP8HnjYUIiFaE1aN8w,14959
119
+ agentrun/sandbox/api/playwright_sync.py,sha256=lvI8C1atM0EVns2yEjZFb4Jci1pvLRt8t3R-Stk6YuQ,14544
120
+ agentrun/sandbox/api/sandbox_data.py,sha256=eupMFMhLF1zu0UXsrW8FUnSAIj_ECPnAdizDQa2qJh8,5358
121
+ agentrun/server/__init__.py,sha256=wxJiqRhjL1yzIdfgK3iCsQ9BEPe6zWtHJ9LWLimrtm8,5411
122
+ agentrun/server/agui_normalizer.py,sha256=dIydrY30ARm6c-ejo-IEwByRf0jC83Rg_EMHZ5lbUbo,5542
123
+ agentrun/server/agui_protocol.py,sha256=JLuC50CygHb25c3sagdlPyO3rbMYb9_nCK0HZUUOxs4,25317
124
+ agentrun/server/invoker.py,sha256=Ff--iyTPcpMRp5LfzofdJ9Dxlmu0LebzKa3HRieL1VY,9456
125
+ agentrun/server/model.py,sha256=00I5WNokFnBUxyAQd4sAJx7vDEudDC6qgjRfsdSn4j4,14934
126
+ agentrun/server/openai_protocol.py,sha256=ZCjUrwZlmORnvObyw-XmC6Oj7hr2R24n1SYK7QiXQKM,17197
127
+ agentrun/server/protocol.py,sha256=O4-UZawA5BGvv5yMzSEb5WetqFnfJCkokfTm_Ep5L9g,4179
128
+ agentrun/server/server.py,sha256=oTJoQMf0lSBs_D-EKg1JJOkNqF1QqP9QU11rqyHvxVg,6531
129
+ agentrun/toolset/__client_async_template.py,sha256=XVk8wT2BDgRRDaPOgDzLJUGS45rQQRbuj7RO26hJEsA,1738
130
+ agentrun/toolset/__init__.py,sha256=gSmsZchdVw_vRIWpAVC_fqItPaaItQ_zfbRkPEcOTLU,1079
131
+ agentrun/toolset/__toolset_async_template.py,sha256=_4EOK7lZiSA5CBLTIOndWvPDxQkpcsnzDblPCgKHZtI,6937
132
+ agentrun/toolset/client.py,sha256=tvpgRs4MJuglJPWWvuu-YBUsgIPbptgtrT4ZjX9HyVE,2868
133
+ agentrun/toolset/model.py,sha256=gLuGUcxpooHBFRMLvOlevwqMiJoS0cw1joYGemda9Do,9965
134
+ agentrun/toolset/toolset.py,sha256=kyChqdpQbLanTqeaicHjJkskEoTp7RcuCjJ825uDhTE,9597
135
+ agentrun/toolset/api/__init__.py,sha256=R64fJOc43EYnsnAuVMyvCykRQRcW6ZkiEIX000tYRek,356
136
+ agentrun/toolset/api/control.py,sha256=zeBEn3pS6Fe3iWQyFrTnOujogZ0d4e6PeqQAjTUZUKo,7882
137
+ agentrun/toolset/api/mcp.py,sha256=cLiUJyfm42Ct0VUPa5tG5X4annfFpeZ6ZaZvLiHp0Ac,2937
138
+ agentrun/toolset/api/openapi.py,sha256=2vZo6OG-oUV_twTpqOodYXoWszStHRMr1oa_93mJXh0,48570
139
+ agentrun/utils/__data_api_async_template.py,sha256=U-FiaDlezp9NbUtIxIkPRhXQ9fkai1zDL9wKt-ouNMs,23730
140
+ agentrun/utils/__init__.py,sha256=50WXVis7QcVWQ3oxl218kw1C2glmj0i_yn0V8hSDaP8,154
141
+ agentrun/utils/__resource_async_template.py,sha256=NeTFre1-pM472rZcn-9z_OOC0syHLEnwLcaNHPnZDeA,4524
142
+ agentrun/utils/config.py,sha256=_eTo7ZB7Ya6Ad4Wt4pJSRqxgSwG7GxBwTokCVSgwGEo,9740
143
+ agentrun/utils/control_api.py,sha256=BQf0zc8jEFMYhEIDhRDquRCLaPsFgjfcEEJJ4xCfGtc,4032
144
+ agentrun/utils/data_api.py,sha256=2guhNBipewXWk3mUupmXe4Ew0Qr1sJYM2viIt7bt7wA,36678
145
+ agentrun/utils/exception.py,sha256=4kgAL36nKMWTB92o-2I0HNOVtAhPib79fxEx7rPI8dM,3705
146
+ agentrun/utils/helper.py,sha256=KCNZ6zuewMW05DufJwNk2rWnQJhL4aN2t3X2L4IQiR8,3362
147
+ agentrun/utils/log.py,sha256=rhkdWIMTcDgTFyliCi2YUBAZfdRyE2hERfGAmXEIP3A,2189
148
+ agentrun/utils/model.py,sha256=aps3tXSNNcnfR6CEABRVtRJP4ACUihLtZeyTwKHXTSg,4886
149
+ agentrun/utils/resource.py,sha256=LFf-sd61iv0yPWF0bRuTqpeR8WLg75MMGQ5CvJ8Ju30,8298
150
+ agentrun_inner_test-0.0.62.dist-info/licenses/LICENSE,sha256=JrYkU96zhHt0nj9fbah_g3UYZYaTy-BOU32JWii6XiY,11345
151
+ agentrun_inner_test-0.0.62.dist-info/METADATA,sha256=cyog087WqMRbWmQ3cfbowbvh64ozJfgc6WsWI3RGFgQ,10849
152
+ agentrun_inner_test-0.0.62.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
153
+ agentrun_inner_test-0.0.62.dist-info/top_level.txt,sha256=07SB6FkBHkzvOSW9k5VIVfarMmtW0WEd-YHP3-iL5Qc,9
154
+ agentrun_inner_test-0.0.62.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,201 @@
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 2025 Serverless Devs
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.
@@ -0,0 +1 @@
1
+ agentrun