kweaver-dolphin 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.
Files changed (199) hide show
  1. DolphinLanguageSDK/__init__.py +58 -0
  2. dolphin/__init__.py +62 -0
  3. dolphin/cli/__init__.py +20 -0
  4. dolphin/cli/args/__init__.py +9 -0
  5. dolphin/cli/args/parser.py +567 -0
  6. dolphin/cli/builtin_agents/__init__.py +22 -0
  7. dolphin/cli/commands/__init__.py +4 -0
  8. dolphin/cli/interrupt/__init__.py +8 -0
  9. dolphin/cli/interrupt/handler.py +205 -0
  10. dolphin/cli/interrupt/keyboard.py +82 -0
  11. dolphin/cli/main.py +49 -0
  12. dolphin/cli/multimodal/__init__.py +34 -0
  13. dolphin/cli/multimodal/clipboard.py +327 -0
  14. dolphin/cli/multimodal/handler.py +249 -0
  15. dolphin/cli/multimodal/image_processor.py +214 -0
  16. dolphin/cli/multimodal/input_parser.py +149 -0
  17. dolphin/cli/runner/__init__.py +8 -0
  18. dolphin/cli/runner/runner.py +989 -0
  19. dolphin/cli/ui/__init__.py +10 -0
  20. dolphin/cli/ui/console.py +2795 -0
  21. dolphin/cli/ui/input.py +340 -0
  22. dolphin/cli/ui/layout.py +425 -0
  23. dolphin/cli/ui/stream_renderer.py +302 -0
  24. dolphin/cli/utils/__init__.py +8 -0
  25. dolphin/cli/utils/helpers.py +135 -0
  26. dolphin/cli/utils/version.py +49 -0
  27. dolphin/core/__init__.py +107 -0
  28. dolphin/core/agent/__init__.py +10 -0
  29. dolphin/core/agent/agent_state.py +69 -0
  30. dolphin/core/agent/base_agent.py +970 -0
  31. dolphin/core/code_block/__init__.py +0 -0
  32. dolphin/core/code_block/agent_init_block.py +0 -0
  33. dolphin/core/code_block/assign_block.py +98 -0
  34. dolphin/core/code_block/basic_code_block.py +1865 -0
  35. dolphin/core/code_block/explore_block.py +1327 -0
  36. dolphin/core/code_block/explore_block_v2.py +712 -0
  37. dolphin/core/code_block/explore_strategy.py +672 -0
  38. dolphin/core/code_block/judge_block.py +220 -0
  39. dolphin/core/code_block/prompt_block.py +32 -0
  40. dolphin/core/code_block/skill_call_deduplicator.py +291 -0
  41. dolphin/core/code_block/tool_block.py +129 -0
  42. dolphin/core/common/__init__.py +17 -0
  43. dolphin/core/common/constants.py +176 -0
  44. dolphin/core/common/enums.py +1173 -0
  45. dolphin/core/common/exceptions.py +133 -0
  46. dolphin/core/common/multimodal.py +539 -0
  47. dolphin/core/common/object_type.py +165 -0
  48. dolphin/core/common/output_format.py +432 -0
  49. dolphin/core/common/types.py +36 -0
  50. dolphin/core/config/__init__.py +16 -0
  51. dolphin/core/config/global_config.py +1289 -0
  52. dolphin/core/config/ontology_config.py +133 -0
  53. dolphin/core/context/__init__.py +12 -0
  54. dolphin/core/context/context.py +1580 -0
  55. dolphin/core/context/context_manager.py +161 -0
  56. dolphin/core/context/var_output.py +82 -0
  57. dolphin/core/context/variable_pool.py +356 -0
  58. dolphin/core/context_engineer/__init__.py +41 -0
  59. dolphin/core/context_engineer/config/__init__.py +5 -0
  60. dolphin/core/context_engineer/config/settings.py +402 -0
  61. dolphin/core/context_engineer/core/__init__.py +7 -0
  62. dolphin/core/context_engineer/core/budget_manager.py +327 -0
  63. dolphin/core/context_engineer/core/context_assembler.py +583 -0
  64. dolphin/core/context_engineer/core/context_manager.py +637 -0
  65. dolphin/core/context_engineer/core/tokenizer_service.py +260 -0
  66. dolphin/core/context_engineer/example/incremental_example.py +267 -0
  67. dolphin/core/context_engineer/example/traditional_example.py +334 -0
  68. dolphin/core/context_engineer/services/__init__.py +5 -0
  69. dolphin/core/context_engineer/services/compressor.py +399 -0
  70. dolphin/core/context_engineer/utils/__init__.py +6 -0
  71. dolphin/core/context_engineer/utils/context_utils.py +441 -0
  72. dolphin/core/context_engineer/utils/message_formatter.py +270 -0
  73. dolphin/core/context_engineer/utils/token_utils.py +139 -0
  74. dolphin/core/coroutine/__init__.py +15 -0
  75. dolphin/core/coroutine/context_snapshot.py +154 -0
  76. dolphin/core/coroutine/context_snapshot_profile.py +922 -0
  77. dolphin/core/coroutine/context_snapshot_store.py +268 -0
  78. dolphin/core/coroutine/execution_frame.py +145 -0
  79. dolphin/core/coroutine/execution_state_registry.py +161 -0
  80. dolphin/core/coroutine/resume_handle.py +101 -0
  81. dolphin/core/coroutine/step_result.py +101 -0
  82. dolphin/core/executor/__init__.py +18 -0
  83. dolphin/core/executor/debug_controller.py +630 -0
  84. dolphin/core/executor/dolphin_executor.py +1063 -0
  85. dolphin/core/executor/executor.py +624 -0
  86. dolphin/core/flags/__init__.py +27 -0
  87. dolphin/core/flags/definitions.py +49 -0
  88. dolphin/core/flags/manager.py +113 -0
  89. dolphin/core/hook/__init__.py +95 -0
  90. dolphin/core/hook/expression_evaluator.py +499 -0
  91. dolphin/core/hook/hook_dispatcher.py +380 -0
  92. dolphin/core/hook/hook_types.py +248 -0
  93. dolphin/core/hook/isolated_variable_pool.py +284 -0
  94. dolphin/core/interfaces.py +53 -0
  95. dolphin/core/llm/__init__.py +0 -0
  96. dolphin/core/llm/llm.py +495 -0
  97. dolphin/core/llm/llm_call.py +100 -0
  98. dolphin/core/llm/llm_client.py +1285 -0
  99. dolphin/core/llm/message_sanitizer.py +120 -0
  100. dolphin/core/logging/__init__.py +20 -0
  101. dolphin/core/logging/logger.py +526 -0
  102. dolphin/core/message/__init__.py +8 -0
  103. dolphin/core/message/compressor.py +749 -0
  104. dolphin/core/parser/__init__.py +8 -0
  105. dolphin/core/parser/parser.py +405 -0
  106. dolphin/core/runtime/__init__.py +10 -0
  107. dolphin/core/runtime/runtime_graph.py +926 -0
  108. dolphin/core/runtime/runtime_instance.py +446 -0
  109. dolphin/core/skill/__init__.py +14 -0
  110. dolphin/core/skill/context_retention.py +157 -0
  111. dolphin/core/skill/skill_function.py +686 -0
  112. dolphin/core/skill/skill_matcher.py +282 -0
  113. dolphin/core/skill/skillkit.py +700 -0
  114. dolphin/core/skill/skillset.py +72 -0
  115. dolphin/core/trajectory/__init__.py +10 -0
  116. dolphin/core/trajectory/recorder.py +189 -0
  117. dolphin/core/trajectory/trajectory.py +522 -0
  118. dolphin/core/utils/__init__.py +9 -0
  119. dolphin/core/utils/cache_kv.py +212 -0
  120. dolphin/core/utils/tools.py +340 -0
  121. dolphin/lib/__init__.py +93 -0
  122. dolphin/lib/debug/__init__.py +8 -0
  123. dolphin/lib/debug/visualizer.py +409 -0
  124. dolphin/lib/memory/__init__.py +28 -0
  125. dolphin/lib/memory/async_processor.py +220 -0
  126. dolphin/lib/memory/llm_calls.py +195 -0
  127. dolphin/lib/memory/manager.py +78 -0
  128. dolphin/lib/memory/sandbox.py +46 -0
  129. dolphin/lib/memory/storage.py +245 -0
  130. dolphin/lib/memory/utils.py +51 -0
  131. dolphin/lib/ontology/__init__.py +12 -0
  132. dolphin/lib/ontology/basic/__init__.py +0 -0
  133. dolphin/lib/ontology/basic/base.py +102 -0
  134. dolphin/lib/ontology/basic/concept.py +130 -0
  135. dolphin/lib/ontology/basic/object.py +11 -0
  136. dolphin/lib/ontology/basic/relation.py +63 -0
  137. dolphin/lib/ontology/datasource/__init__.py +27 -0
  138. dolphin/lib/ontology/datasource/datasource.py +66 -0
  139. dolphin/lib/ontology/datasource/oracle_datasource.py +338 -0
  140. dolphin/lib/ontology/datasource/sql.py +845 -0
  141. dolphin/lib/ontology/mapping.py +177 -0
  142. dolphin/lib/ontology/ontology.py +733 -0
  143. dolphin/lib/ontology/ontology_context.py +16 -0
  144. dolphin/lib/ontology/ontology_manager.py +107 -0
  145. dolphin/lib/skill_results/__init__.py +31 -0
  146. dolphin/lib/skill_results/cache_backend.py +559 -0
  147. dolphin/lib/skill_results/result_processor.py +181 -0
  148. dolphin/lib/skill_results/result_reference.py +179 -0
  149. dolphin/lib/skill_results/skillkit_hook.py +324 -0
  150. dolphin/lib/skill_results/strategies.py +328 -0
  151. dolphin/lib/skill_results/strategy_registry.py +150 -0
  152. dolphin/lib/skillkits/__init__.py +44 -0
  153. dolphin/lib/skillkits/agent_skillkit.py +155 -0
  154. dolphin/lib/skillkits/cognitive_skillkit.py +82 -0
  155. dolphin/lib/skillkits/env_skillkit.py +250 -0
  156. dolphin/lib/skillkits/mcp_adapter.py +616 -0
  157. dolphin/lib/skillkits/mcp_skillkit.py +771 -0
  158. dolphin/lib/skillkits/memory_skillkit.py +650 -0
  159. dolphin/lib/skillkits/noop_skillkit.py +31 -0
  160. dolphin/lib/skillkits/ontology_skillkit.py +89 -0
  161. dolphin/lib/skillkits/plan_act_skillkit.py +452 -0
  162. dolphin/lib/skillkits/resource/__init__.py +52 -0
  163. dolphin/lib/skillkits/resource/models/__init__.py +6 -0
  164. dolphin/lib/skillkits/resource/models/skill_config.py +109 -0
  165. dolphin/lib/skillkits/resource/models/skill_meta.py +127 -0
  166. dolphin/lib/skillkits/resource/resource_skillkit.py +393 -0
  167. dolphin/lib/skillkits/resource/skill_cache.py +215 -0
  168. dolphin/lib/skillkits/resource/skill_loader.py +395 -0
  169. dolphin/lib/skillkits/resource/skill_validator.py +406 -0
  170. dolphin/lib/skillkits/resource_skillkit.py +11 -0
  171. dolphin/lib/skillkits/search_skillkit.py +163 -0
  172. dolphin/lib/skillkits/sql_skillkit.py +274 -0
  173. dolphin/lib/skillkits/system_skillkit.py +509 -0
  174. dolphin/lib/skillkits/vm_skillkit.py +65 -0
  175. dolphin/lib/utils/__init__.py +9 -0
  176. dolphin/lib/utils/data_process.py +207 -0
  177. dolphin/lib/utils/handle_progress.py +178 -0
  178. dolphin/lib/utils/security.py +139 -0
  179. dolphin/lib/utils/text_retrieval.py +462 -0
  180. dolphin/lib/vm/__init__.py +11 -0
  181. dolphin/lib/vm/env_executor.py +895 -0
  182. dolphin/lib/vm/python_session_manager.py +453 -0
  183. dolphin/lib/vm/vm.py +610 -0
  184. dolphin/sdk/__init__.py +60 -0
  185. dolphin/sdk/agent/__init__.py +12 -0
  186. dolphin/sdk/agent/agent_factory.py +236 -0
  187. dolphin/sdk/agent/dolphin_agent.py +1106 -0
  188. dolphin/sdk/api/__init__.py +4 -0
  189. dolphin/sdk/runtime/__init__.py +8 -0
  190. dolphin/sdk/runtime/env.py +363 -0
  191. dolphin/sdk/skill/__init__.py +10 -0
  192. dolphin/sdk/skill/global_skills.py +706 -0
  193. dolphin/sdk/skill/traditional_toolkit.py +260 -0
  194. kweaver_dolphin-0.1.0.dist-info/METADATA +521 -0
  195. kweaver_dolphin-0.1.0.dist-info/RECORD +199 -0
  196. kweaver_dolphin-0.1.0.dist-info/WHEEL +5 -0
  197. kweaver_dolphin-0.1.0.dist-info/entry_points.txt +27 -0
  198. kweaver_dolphin-0.1.0.dist-info/licenses/LICENSE.txt +201 -0
  199. kweaver_dolphin-0.1.0.dist-info/top_level.txt +2 -0
@@ -0,0 +1,199 @@
1
+ DolphinLanguageSDK/__init__.py,sha256=KJKRUkfWZAbdW9gqwpfejC7Ke67RThNkXb0Gjdvsq-I,1438
2
+ dolphin/__init__.py,sha256=7FYtL_5zdaaseNUWh9mz8Eb7bSdUUqvtdHrTQ0LxVog,1449
3
+ dolphin/cli/__init__.py,sha256=538KQ9jhoBbpIDn-ezElQDMtsy5WS_3BMDWotsTHdOs,367
4
+ dolphin/cli/main.py,sha256=kfrmcmMdNPTc6DLGBpW3CrFpd5tpHbWkoydPyJuQzR0,1108
5
+ dolphin/cli/args/__init__.py,sha256=pVpIsMGOGiijcduYH7YnNArjaEsHlNZHAkkKSM6AhPM,154
6
+ dolphin/cli/args/parser.py,sha256=Rv9ZjfNCCtT4y99UQX8uY-f10Z84d3fK-ZThOoZKIZ8,20350
7
+ dolphin/cli/builtin_agents/__init__.py,sha256=8tuk3tkyhSrhNGorUs_HUkqrT_gOPoahEWtUdNHJuSc,487
8
+ dolphin/cli/commands/__init__.py,sha256=dq8NKeILMbf5IEqw4s0X_QT3P9Xs5ijsGcuckS1ZtuI,79
9
+ dolphin/cli/interrupt/__init__.py,sha256=q-XDJTmcC5ATuTOy1zvb1Izo3614SL9vgMnc7ALuZIU,157
10
+ dolphin/cli/interrupt/handler.py,sha256=UobsgLyK3341a3JcO_2-6ZTmnDi1RAvcjVpvzoL8c6k,6648
11
+ dolphin/cli/interrupt/keyboard.py,sha256=kqlw6HwlrfNr1A0jatUiRXAhmvxUFL-O3OyQM__KJRs,3209
12
+ dolphin/cli/multimodal/__init__.py,sha256=Bibmn20eeCkKfeuZ1mw67OtReBcrghl5iewIw_FjTkw,889
13
+ dolphin/cli/multimodal/clipboard.py,sha256=iWpVectLgMcXCsE6_ZujHmTGWbubJs8UD80ppqDSHKs,11363
14
+ dolphin/cli/multimodal/handler.py,sha256=GLH4CVpQ7tp7qzU6Azq6_5NEbb8SazDoUJwjLJ88EVg,7986
15
+ dolphin/cli/multimodal/image_processor.py,sha256=GyQogputtFb4HtRyC6rMgTB57mEHCVNkSUCi83D5Ob4,7305
16
+ dolphin/cli/multimodal/input_parser.py,sha256=gKbSnO2i_sNYamcYtVB638sLZnDCrp0ZJxHKxXqvQwc,5024
17
+ dolphin/cli/runner/__init__.py,sha256=wUBuFqq_wm5wi8KpJvF3QDEnCWBiqrgi0ihI1EDe6Nw,153
18
+ dolphin/cli/runner/runner.py,sha256=C-3qtWWkK_qHg_I5Qyq9n4bo1Ufp4RIotGuf5-d6aD8,36529
19
+ dolphin/cli/ui/__init__.py,sha256=w1xrgYJ66ehCcdgeHMZWiCBRP_C64j5Alt0HYB0dTxM,228
20
+ dolphin/cli/ui/console.py,sha256=KxUCg8WftmAEmgwLajHgd8GjRPDQ3J9mnIiexXuesf8,112346
21
+ dolphin/cli/ui/input.py,sha256=qEtyOdNdipWHLWe7aZI1eOtcX7S34vQ_bytXumrZ1S0,11199
22
+ dolphin/cli/ui/layout.py,sha256=Qhjp0a7ZvecYdifZDlO64PTHkSXb_amuWzCtYZYdods,14501
23
+ dolphin/cli/ui/stream_renderer.py,sha256=qo5mIDE_dUxf9otwr34kjCDx9Y9If2sLXZ4twojSKKw,11950
24
+ dolphin/cli/utils/__init__.py,sha256=aJBTjxRd-xC_Vp0a384A1lyNe2Woi4LWpV465d9UI1M,139
25
+ dolphin/cli/utils/helpers.py,sha256=xK8nkys0qIJ6RtVmehX3yMP5kHRM3D-7eaJHHDlVPG4,3630
26
+ dolphin/cli/utils/version.py,sha256=UvGyYcsHklujXTvZaeVuJTRHFH9d4giWwqq7UmgDpIk,1282
27
+ dolphin/core/__init__.py,sha256=h41bEI_o9djjE4v00cUT8oTdtynsvtmus-mX1XT6TZg,2785
28
+ dolphin/core/interfaces.py,sha256=XvyVO9LB9YbBxRlJXSdcqt7-6lH0GVTYEDYxY_zqQmE,1161
29
+ dolphin/core/agent/__init__.py,sha256=mOligICB_byI5rZFqMvSJN0msodBvravbhSghpboDdU,221
30
+ dolphin/core/agent/agent_state.py,sha256=3YsFJdG21FqoIoHTDMBx01KEJJDRXFToW0vDrzUWMOU,1949
31
+ dolphin/core/agent/base_agent.py,sha256=PMXCq1dQIhipJhHAWI7nQtNT5l_qndxEQDhkK9idxBo,42496
32
+ dolphin/core/code_block/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
+ dolphin/core/code_block/agent_init_block.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
+ dolphin/core/code_block/assign_block.py,sha256=xbPiQOkFAbrcRDnwkcNN2tfxy7OG8IXPPbjlCM1KJ9I,4124
35
+ dolphin/core/code_block/basic_code_block.py,sha256=Ktqfmz4x5PudaE1gyynAJ4YZ_Vy4EPWODJYVU_e7TZk,74076
36
+ dolphin/core/code_block/explore_block.py,sha256=DG5xRh9hP82ry6bPkb0aCL8G9rKDgTuyb40MaHHVsQI,54246
37
+ dolphin/core/code_block/explore_block_v2.py,sha256=sHhPoG1hVpQ-3QopSn_iX20a5egqFYJllPFDZzEWkCo,27898
38
+ dolphin/core/code_block/explore_strategy.py,sha256=PcgKvNOXh6B2udr2yhHfzCRcUNBSstC6-zTBigcm-g0,22794
39
+ dolphin/core/code_block/judge_block.py,sha256=oOjgHEVLBfMnZP-l16DR13pcZITm2uKQaZM-T4W1t28,9318
40
+ dolphin/core/code_block/prompt_block.py,sha256=lFun43lOQP9rbZzoNw2sYhwQCHRenRBZzL6vuXKunvo,1131
41
+ dolphin/core/code_block/skill_call_deduplicator.py,sha256=6btnQU6AIUPnxl2JthYRdsmJkueDyxW9Iw-OIomjiaM,9879
42
+ dolphin/core/code_block/tool_block.py,sha256=8h5XqLSPycUpQWz9BlFl7UBwXOexvgZ1JaQnNCeYU6Y,5360
43
+ dolphin/core/common/__init__.py,sha256=WUsyhGJljLFzpW_YEnkMsNn_Iw3WdqkFyuHa-mMKhNc,455
44
+ dolphin/core/common/constants.py,sha256=tOJ31IupXIYfT8I8rmSh2YhWKitAJTf6iRn99MbxBwo,7348
45
+ dolphin/core/common/enums.py,sha256=9QEzvCb7vbkQns1mtVlswsRZHKVwwvdRqrefSr-S68g,42282
46
+ dolphin/core/common/exceptions.py,sha256=tIwakGPqkTB0H23dPp_OdMvruIvOJNuevTXnrfOKoXo,3883
47
+ dolphin/core/common/multimodal.py,sha256=ocoOOXeYAHhh4pVQTazFE-ocOysfY-k1GdCva0eOz_Q,18548
48
+ dolphin/core/common/object_type.py,sha256=1cnFjVx0etDaby-0wfJgis0ZUNjAXRsIQWx-jIVjIWU,5910
49
+ dolphin/core/common/output_format.py,sha256=_xZoh39Oirh9DnRoRjK5_e9r0haek2WFcNuwIbzJDIo,14689
50
+ dolphin/core/common/types.py,sha256=rbFbW2Ox0_cDLlDmmbPhtnnX4Yu9H24zcDpNW0gzlbA,794
51
+ dolphin/core/config/__init__.py,sha256=7PJH0qB8mTc8Tjuvlum8Y-RdomyaKWZQoA4XVzEd0J0,336
52
+ dolphin/core/config/global_config.py,sha256=AiyVw3tOeA5xlsJvQ2O9zU2AEmjeIqYm-LXl_2JLdWY,46392
53
+ dolphin/core/config/ontology_config.py,sha256=sGMkbcfFp5EdNIFazrY7Z2MsahCt0vC7GH_5-VleGcA,3899
54
+ dolphin/core/context/__init__.py,sha256=2CKAzbIol_oZ611KSYLEk-Apyfez9tLXOYT9S6WMhW8,324
55
+ dolphin/core/context/context.py,sha256=NGwYSim5LvqPJZlvjp_fX8fukhjy4fGk-d-lT9zK9Uk,63156
56
+ dolphin/core/context/context_manager.py,sha256=3yo8sdWkfqq52cwhNIM0OlXPLZSLftTbFHuWBlqjOsE,6288
57
+ dolphin/core/context/var_output.py,sha256=1Xb_JYv5L0f3JhUy8ZxmwF4EQEtn_Czh44s5nXjo2PA,2830
58
+ dolphin/core/context/variable_pool.py,sha256=SgztIgALcIoNAMYf1VM7EzHeNNa2g61oLt5Ta32u81o,13212
59
+ dolphin/core/context_engineer/__init__.py,sha256=-YYco8XWHNafpx-TlA12-Adsm7a6q7SSYJt-iOVu-hU,1450
60
+ dolphin/core/context_engineer/config/__init__.py,sha256=80-F2kl8JoSUMXUk4tiSbdtom1GlE5vQQlQxtGttmHs,122
61
+ dolphin/core/context_engineer/config/settings.py,sha256=vg_5Y_HMIZhf7REkMDLol7t73gGVEuJZTZV5tJaQtCk,14952
62
+ dolphin/core/context_engineer/core/__init__.py,sha256=oiW3Ek9tZ7Uoq9LtbEngDqNYntluNqL-8joiCNQiwlo,255
63
+ dolphin/core/context_engineer/core/budget_manager.py,sha256=l_uET3MxWwPH7sWVI7MqB85FhccUGSDaVKfZ0Tgy_zc,12599
64
+ dolphin/core/context_engineer/core/context_assembler.py,sha256=cRU0g47icRpg6cbBkRw6Xb6wXVh30NpIoRhEXHnx1vY,23416
65
+ dolphin/core/context_engineer/core/context_manager.py,sha256=4PJPRMXSTRmVtVAP-ZIgmKBxAoRUsMseEyrZ1dVt62U,23543
66
+ dolphin/core/context_engineer/core/tokenizer_service.py,sha256=BuvQAw2MvWA8bmacWAkXwqkF4NGTuPXwccXcywYYqgU,8293
67
+ dolphin/core/context_engineer/example/incremental_example.py,sha256=Fka9JjC1SqaIKQnTDCeqtfS8zoeNoX8isxC99XDfRC0,8570
68
+ dolphin/core/context_engineer/example/traditional_example.py,sha256=XvfyVae3bOAgfT5wIRRG_yLXflhxPiSi9lh9xQ-y40w,12036
69
+ dolphin/core/context_engineer/services/__init__.py,sha256=NCOc4p-4BgQ54WEmhONTm3ruGpN9kyBkzL1g_bJNfDo,112
70
+ dolphin/core/context_engineer/services/compressor.py,sha256=kHc64GFGabGf9TRwmya2rWfjl7RhqVL68r9vwWaCgm4,14390
71
+ dolphin/core/context_engineer/utils/__init__.py,sha256=bws6OwiD1e96MKW4mSsm6CGLZOEtDTzYHPE6fOJwlgo,256
72
+ dolphin/core/context_engineer/utils/context_utils.py,sha256=NeCeK5KT4SHn-sCdw9g2aSPF_7mO5xhwOo8nPB4MlNI,10822
73
+ dolphin/core/context_engineer/utils/message_formatter.py,sha256=RkesXu9UZZ3D16sflB3sahbL9PtxikJWWm0vk420S9Y,10525
74
+ dolphin/core/context_engineer/utils/token_utils.py,sha256=cSCwXHErMIiPlwBuuEWFP00BGUBmEmM2z86kHcErBWI,3792
75
+ dolphin/core/coroutine/__init__.py,sha256=KkP0ogo8kuIzQs4yHua-A-07tubCvCuXb33AEWQWV5o,447
76
+ dolphin/core/coroutine/context_snapshot.py,sha256=Gb5dHnxQfU1qw9OM1CpMReEl_4fYG9SA1dLr1q4tWS0,4784
77
+ dolphin/core/coroutine/context_snapshot_profile.py,sha256=4_Rg-uda38sLyvf5PTKACyuMsjOfYE1Ab8bL866kGTI,34045
78
+ dolphin/core/coroutine/context_snapshot_store.py,sha256=ZR9fI-p_lqk5vuC2KogTPucNVSIIZ27dL5v0PSRPCts,9364
79
+ dolphin/core/coroutine/execution_frame.py,sha256=BVPFMEqc7fqDL16N5GubXmsDdlQy6NF-yiAe-hjM-x4,4817
80
+ dolphin/core/coroutine/execution_state_registry.py,sha256=RdI4sIBuEbix_1ADvpefR0VyVN8aT-1FC9sNPyVEQVI,5598
81
+ dolphin/core/coroutine/resume_handle.py,sha256=6TyLNlKr99rXKOFBihUcUOr6zOSxjk66b-n_tTSEfZ8,3579
82
+ dolphin/core/coroutine/step_result.py,sha256=uag0YhE-TbX6YoqtM2kQfWfBuoConH4ti4u_K_zdwxs,4017
83
+ dolphin/core/executor/__init__.py,sha256=nogeHlssz4IPr5HD8nqjcf6ipSJCmQtelfayvg3a_oM,550
84
+ dolphin/core/executor/debug_controller.py,sha256=15N4sFPBiZYK_DiTsrA3f0FdRYrbLdXV0IZ0qvnj9U8,26652
85
+ dolphin/core/executor/dolphin_executor.py,sha256=C0v1j7mN3L_7Ic1dA2IE_HXekR8aLAj4Wni-OhQA6x0,42677
86
+ dolphin/core/executor/executor.py,sha256=xoTf8tBVaWiuv-EmTXY94HW-Llgz2nWJDHtZ0yh5Fxo,25632
87
+ dolphin/core/flags/__init__.py,sha256=9rek6speJJyfzJfy6MqlM4pTrSAB-kmAfrwgu2wCoB0,498
88
+ dolphin/core/flags/definitions.py,sha256=O-15MCZCyC7NVMF0E8cWlr0k8gAyr36Acutb4i8UDNo,1378
89
+ dolphin/core/flags/manager.py,sha256=FiUeUJTz9Cq8VzL4n7GHXQeuZ1edFqKGKV2UNt3zdZ4,3711
90
+ dolphin/core/hook/__init__.py,sha256=PiFTayq_0GpGagWNF9yTQ5Bv6GegPu-dH2cvjRpn71U,2101
91
+ dolphin/core/hook/expression_evaluator.py,sha256=dqeuyE4Ryc2EwB2A0egHSjE6EzBSBklJOpLJilkIi_I,14821
92
+ dolphin/core/hook/hook_dispatcher.py,sha256=_V8zZJlgeJUDCgTnYYju1B0wYY7ADj5XXIF4LGN-8jE,12047
93
+ dolphin/core/hook/hook_types.py,sha256=xGBhv8RgG21xEF2Z4IFACtKUGWn9-G5RzQTPgS9DPhU,8047
94
+ dolphin/core/hook/isolated_variable_pool.py,sha256=CpIikUIDcl6_0V239oNBYLhsCDQKFITNFtubpAI1JJ4,9046
95
+ dolphin/core/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
96
+ dolphin/core/llm/llm.py,sha256=yG5yYZ5hSW1LFB8KgbnvaalJ_vw-fhlk8aJCg0eox9Y,20399
97
+ dolphin/core/llm/llm_call.py,sha256=ccCRW5GxJ8_UiiWVtjuTx7Tattjlp7SbENSW50EbxAU,3408
98
+ dolphin/core/llm/llm_client.py,sha256=OvFOpUirp2fdMCwZDG85ephlqcGZzKOrQqY4AOsu4LE,59090
99
+ dolphin/core/llm/message_sanitizer.py,sha256=xGBattdBVYHDPHdZLxUmmerZYPNFe8HZwrGI5PycjFQ,4461
100
+ dolphin/core/logging/__init__.py,sha256=ix3t_AONJVUaO2WQ5BeVUx762OBlFFYu8tyZ-8Q0jpU,316
101
+ dolphin/core/logging/logger.py,sha256=FawfEAbgGHDlCsEBxH8zmeoknFNNRLgIlBXTz8dp-JM,18859
102
+ dolphin/core/message/__init__.py,sha256=LJCVwx5HZC8Q5Ho4UfuG8hVnuqNr5OJjJL1jV6FunQ4,163
103
+ dolphin/core/message/compressor.py,sha256=V0lP1uHcbUnVTqhdxM1gjxiqsggqVic2U1DU86A9pr0,29549
104
+ dolphin/core/parser/__init__.py,sha256=mTbDPOibOeGy9cbEfwkE1at2FaRtkRvXXcLsXGJFwBw,138
105
+ dolphin/core/parser/parser.py,sha256=li6Gg5UUW8y_1zdFJf3E85KV14Wvt5GuqCu9zpSvlx8,14225
106
+ dolphin/core/runtime/__init__.py,sha256=PLAb9w4ZvFcalUjRummzcEmPzlnqqfkcl-IQBJd2L48,248
107
+ dolphin/core/runtime/runtime_graph.py,sha256=eCHFirL_kFLDddx-wQ1iwoNckJeL6JIRPnbUe5bSWZY,40168
108
+ dolphin/core/runtime/runtime_instance.py,sha256=5SbJOSHaqrpk6eoQH7XZzxb_UwkSUnWUzyNIN6ZwtOU,14418
109
+ dolphin/core/skill/__init__.py,sha256=q25CjZRkxIUwKCITPFd7ERgqZY8UCZ6sMRB9PdBjFhc,363
110
+ dolphin/core/skill/context_retention.py,sha256=IAYeMZGGqQQw4xkZ6VHzpaxILPykqn-zTRhUgzjdw4I,5847
111
+ dolphin/core/skill/skill_function.py,sha256=lJ1nbc926CpxSew-NGFGjK33yizZvSgTCkWJqAdMadw,26509
112
+ dolphin/core/skill/skill_matcher.py,sha256=GAHygNKG_K1F_xNuXzvLxTYREe08u7C9pImGrcF9jqg,9999
113
+ dolphin/core/skill/skillkit.py,sha256=mhzprfbe-lrXdwdeoUjhY8V7JYVMYJ2XHkyxxgeGIQQ,26491
114
+ dolphin/core/skill/skillset.py,sha256=B1G8ZJfmFhYaTbXlVWoPNeeOo0Phph2hSllJCFLAb8k,2541
115
+ dolphin/core/trajectory/__init__.py,sha256=5FGGDE48K_OMKcca4usSyv1z_hvfaDzearur-WzZ3nM,225
116
+ dolphin/core/trajectory/recorder.py,sha256=xA5ZOyoRxgIgFZkF5EzyNzP0nJexDjDnnC_pDskzg4g,6441
117
+ dolphin/core/trajectory/trajectory.py,sha256=eEYmokzaskeWx0MfSBuMYWrfBouXpt4HwvCl73BGmNI,21577
118
+ dolphin/core/utils/__init__.py,sha256=8IhOF81ct7TYiVoc9SWbyO6YUWaSlcZH2dVcF0qy46Y,176
119
+ dolphin/core/utils/cache_kv.py,sha256=hWGz3j-vtGd317Eo9o2lDBhNdCEef4Eo5TZCUmadUXw,7412
120
+ dolphin/core/utils/tools.py,sha256=Cn0KpG_pqlXzpkud16JRGpY4VO5eG0GMxPtLC2gWowU,9779
121
+ dolphin/lib/__init__.py,sha256=tm_qFRc7NEuWUYYYFq9PKuJ-CXCG8WCjLwYut_3yPYc,2557
122
+ dolphin/lib/debug/__init__.py,sha256=LXMTcUqnSnvEd_aCtSjaxs7PVUSf0pVJ0BiMozGESP0,154
123
+ dolphin/lib/debug/visualizer.py,sha256=zoweYgmbZW2KOoJe3Y63C6-G1uDZi23srUDpxngtWbQ,18024
124
+ dolphin/lib/memory/__init__.py,sha256=Tb1AoF37ryaOw6fhJmkengTif1zMHzcxU3F0P6NRwy4,782
125
+ dolphin/lib/memory/async_processor.py,sha256=4Xi7jay-TaWFjH5WncISfbblA-ebRh9QIwielUqXVa0,7652
126
+ dolphin/lib/memory/llm_calls.py,sha256=cclZlM3VJ06dEGH6vgrdv0XvHijSGg9GWT3lS53F8oY,7790
127
+ dolphin/lib/memory/manager.py,sha256=cTTNhuBp3XrkcFzZPa-0q_QAMv9y3f_yMEBYqzzUHgE,2697
128
+ dolphin/lib/memory/sandbox.py,sha256=lNSzFzl9Q8AbwPQ0FhzUFa8S663JDF7tN9UGQlSSp1I,1654
129
+ dolphin/lib/memory/storage.py,sha256=Y8mTN4Ppu9QsprSJcFKUArMcF79GeodZI2oBcIvXQLs,8934
130
+ dolphin/lib/memory/utils.py,sha256=s2KLDq81klJoOzJ31MwUPkoVCIVDQYfZFFMxPLcomOA,1613
131
+ dolphin/lib/ontology/__init__.py,sha256=Tu67GbRDlcOUoxyp18jNfcKWkWvFRPQb6p1rlxhYeFY,328
132
+ dolphin/lib/ontology/mapping.py,sha256=sj_3BpMn690_G6xFbSu959tlIO_v2pRXLFh4XnFHSI4,6933
133
+ dolphin/lib/ontology/ontology.py,sha256=7Px4FDxHcj3wA1P-90I9fpWR7rVyWFC942QvLs2RuhQ,29838
134
+ dolphin/lib/ontology/ontology_context.py,sha256=pyxVbFXvSr3oEx8iLH1x0nqA0cVSzlK1ixBecZckVxw,569
135
+ dolphin/lib/ontology/ontology_manager.py,sha256=Hqt2Pga1rP8pmHAZ5Lhs8VQS0j2CJznhtKqyn3Sro60,4644
136
+ dolphin/lib/ontology/basic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
137
+ dolphin/lib/ontology/basic/base.py,sha256=O-RWxmGYyQ_cXwxFk3tyjsVRGXSi0gA84yC6jNpHYUQ,4382
138
+ dolphin/lib/ontology/basic/concept.py,sha256=Aye9PZcdKznWU1FuJEm-d8gvwFFwwg5xsXMhqsY4nC0,4511
139
+ dolphin/lib/ontology/basic/object.py,sha256=ESDTgkF5VQsulhJvUlQC1oljZl9IjDU-YCGraYfxo8Q,407
140
+ dolphin/lib/ontology/basic/relation.py,sha256=U8ndWLJHahCMlaBAkxbMZtbBoKkAUE9rUKeXRaPfozc,2578
141
+ dolphin/lib/ontology/datasource/__init__.py,sha256=ai-8pU3dhWAjMSJJ8-n2_46mK-SueNJnxJMiiseVddM,729
142
+ dolphin/lib/ontology/datasource/datasource.py,sha256=QpyJLxoknAkehlQ7nFJ6zkE2Q1veTjl-OzYtRbWHAIU,2037
143
+ dolphin/lib/ontology/datasource/oracle_datasource.py,sha256=Qv_5jaVDVCG4oewfhfcaDcNuC8582NR5e97YOXjGS4w,15286
144
+ dolphin/lib/ontology/datasource/sql.py,sha256=P4D09InCf6A49sqg8qDQd7si_57fzv-dHzwWlYKkRUA,38052
145
+ dolphin/lib/skill_results/__init__.py,sha256=LcGnkhUGxllzoGmOKFAqm1sCIg7B1a4MufeTCHYHi_w,904
146
+ dolphin/lib/skill_results/cache_backend.py,sha256=WWvnOFP4xbbcYbjLG3DD15aN9qh4QBGF3yeAlinJCSE,19208
147
+ dolphin/lib/skill_results/result_processor.py,sha256=3W3hgdQMd79nmhQe2c9-ZSlevHjxiZoKFHg-nwKqvTI,5569
148
+ dolphin/lib/skill_results/result_reference.py,sha256=I1MY7Bftt3QrrtswLfymNjnfXVQDUdZmh6BVZFurS7w,6743
149
+ dolphin/lib/skill_results/skillkit_hook.py,sha256=tAVOvsja7rHOg8p5I0TQV2sC4ha7JQwia4tH1y5S_qw,12664
150
+ dolphin/lib/skill_results/strategies.py,sha256=mscBN3mRz690GFle-EjWdNeZWvPMABLIzdA4xxckTcQ,11305
151
+ dolphin/lib/skill_results/strategy_registry.py,sha256=lipa0FmmeBTVrwh_U_BDLr8ZP7mrJo0cukMCWUKKglg,5351
152
+ dolphin/lib/skillkits/__init__.py,sha256=FtPnn-0IaLkhTArd16Nfn3QwEGKPZim2KcVd9oXkjK4,2139
153
+ dolphin/lib/skillkits/agent_skillkit.py,sha256=WKEulR6867LAegXFhjD5zg73nPPuugsGD1A4nP27Ijk,4708
154
+ dolphin/lib/skillkits/cognitive_skillkit.py,sha256=pWUysXd3dPRptaEyy0KsXDsOPq8_OUpUCBSLSQyuwhU,3534
155
+ dolphin/lib/skillkits/env_skillkit.py,sha256=PBHJxNbmbAaDyclFSaJth9BzLfPX6E-ZLI-pozJeG8g,9315
156
+ dolphin/lib/skillkits/mcp_adapter.py,sha256=qvudHPBN3nnZgGz6_NwCPJiyzO3r7wMU05NXXZ2EYmE,24724
157
+ dolphin/lib/skillkits/mcp_skillkit.py,sha256=aDraRkL934A84blNlDWQsGGNP5Nqjdw8EppSLUAPUuI,30604
158
+ dolphin/lib/skillkits/memory_skillkit.py,sha256=FlC-HflKdm5Z29wkyUF2I79022mXrBo5PHQFT68oaQc,24355
159
+ dolphin/lib/skillkits/noop_skillkit.py,sha256=BD5YFH_Dn50xR6cT-xpxiDGujnl75X0yx2frdBzJSlo,691
160
+ dolphin/lib/skillkits/ontology_skillkit.py,sha256=fpoZMQjoLFs_gr5ybSs5P_kJVe038xgFvqfJvQtmg3s,3098
161
+ dolphin/lib/skillkits/plan_act_skillkit.py,sha256=ZfVgdjLDXqi4UpqYNywXkgaS09p-6e-jDTxt_IaDlkc,18260
162
+ dolphin/lib/skillkits/resource_skillkit.py,sha256=KGSAzLYUIHsZDS7KmpX-zaDOHwjZgOUBx76sfYN5JcA,351
163
+ dolphin/lib/skillkits/search_skillkit.py,sha256=8uJhZLp-50FIiRqjd3JEyeXBr69Dl_Zt9ggTogrjxgU,6054
164
+ dolphin/lib/skillkits/sql_skillkit.py,sha256=s-WDtM8lVGjGdH6NptyI6GDpq9FJPxx7XMr3J76VqhA,10040
165
+ dolphin/lib/skillkits/system_skillkit.py,sha256=__DQdyj4IiMFUfYgQMOJ1H0uXA41LT78-S5UkWgb7Jc,19546
166
+ dolphin/lib/skillkits/vm_skillkit.py,sha256=WKobRpx8JfdVTNh5xdqgSOzOJwSTK2YuZ9wxEzglex4,2154
167
+ dolphin/lib/skillkits/resource/__init__.py,sha256=kyHZCoNrEFMM6xhDZ10Up4ynMtBJIgjTMSUjVZhNYcU,1411
168
+ dolphin/lib/skillkits/resource/resource_skillkit.py,sha256=QpTUe1NuOmk2Ec7l40NuGd7ZO94pg4x2U4EGFmq52Ig,13745
169
+ dolphin/lib/skillkits/resource/skill_cache.py,sha256=WnhTfCSDOe75gbGug1H7s_CLTWrWi0sD2WZne8vqRTU,6532
170
+ dolphin/lib/skillkits/resource/skill_loader.py,sha256=kgv3bZlaaoonseRymuJ4Cq7Ib4GFQ8JOEHCCLbFz21c,13401
171
+ dolphin/lib/skillkits/resource/skill_validator.py,sha256=rwt4hLLph_caMTyXGP1gYWcBFzzDVEZhAafckw-VsVc,13296
172
+ dolphin/lib/skillkits/resource/models/__init__.py,sha256=SPeXsTjwWz_1he0oiAKeNmPHLWT4yVs01Br3W4f0DW0,199
173
+ dolphin/lib/skillkits/resource/models/skill_config.py,sha256=i8TJ9sTcUoXcEV0u2ga0LLoiFHagcyNKocw8NYrPba8,4180
174
+ dolphin/lib/skillkits/resource/models/skill_meta.py,sha256=H44M71hubjXGYpw0ylq9mXCxYj9Zs-gA4N79vn6o6_I,3973
175
+ dolphin/lib/utils/__init__.py,sha256=33oNwYLWXp8CAZhREzosqxcq2VqHm_n34sztJTUys9Q,254
176
+ dolphin/lib/utils/data_process.py,sha256=lYQlFfe2ziIEdtNjpXV11DBGcIon334mmlb6GaX2kKw,8522
177
+ dolphin/lib/utils/handle_progress.py,sha256=1DuVgalP15ZRq-MUWgilQMM9NljIacRUpqWrcil-THg,6062
178
+ dolphin/lib/utils/security.py,sha256=fIyRz7KzlC0iuXTgeEGhqk3fQUjx9PcV_qD5uN8lTKc,4920
179
+ dolphin/lib/utils/text_retrieval.py,sha256=VrOu8vxh306QgBf7c0Nms2HCkqUKyfYt0-eVSlfcXbM,15513
180
+ dolphin/lib/vm/__init__.py,sha256=N-MUhH7izgvXnR5n7SblNg4nrD_wGldi6nZ74VHwtBs,230
181
+ dolphin/lib/vm/env_executor.py,sha256=6m1H0n2RIVlyf5M9uo8HerZP5Hwkc9x7o4U0SNbiTCA,32218
182
+ dolphin/lib/vm/python_session_manager.py,sha256=O-i1xnJRVz4eDSv6ieyLRpDMNa6dSKuZG1omE0hNFG8,17480
183
+ dolphin/lib/vm/vm.py,sha256=lLNzbNrb1Z0BIG9QR4VssropSXuM0wuSYJTPN4GLPnc,22528
184
+ dolphin/sdk/__init__.py,sha256=I4YBDhkWozXEMD-KVkfJBhz_y8r_Q7OgaiwgrawpI3I,1181
185
+ dolphin/sdk/agent/__init__.py,sha256=zoHZhRrEWwlnkvqEBvSDHLjtB4zeEL7ULRujT1n8_-Y,304
186
+ dolphin/sdk/agent/agent_factory.py,sha256=auoCYDd7yspGZhzKAmKmTBMUrSmJ2vHHLtKK24KM_a4,7387
187
+ dolphin/sdk/agent/dolphin_agent.py,sha256=xOF0Vfr2uvxq4QLRrbEJdwkYXZYQQDVSa-HvOZGADvk,47020
188
+ dolphin/sdk/api/__init__.py,sha256=Unr4EQIm0hHeMAJzYzA9TsuyJ0TbL8CEzRSEGNFrn-w,75
189
+ dolphin/sdk/runtime/__init__.py,sha256=W90bnFZ_l6ukuZ3l1iBRWN0oPetdNisjj6dxBMk1NEM,130
190
+ dolphin/sdk/runtime/env.py,sha256=OU0CEZuVXgdQPeNsYq6BhFETcc-Q2vcAp6jLvOrEsbU,12337
191
+ dolphin/sdk/skill/__init__.py,sha256=zzfHgrxIWxUEFH1HMiwb08U1M1ukHcdNtFqKi3Sg1ug,246
192
+ dolphin/sdk/skill/global_skills.py,sha256=2gebgdAKEgPWGhv1_pliI0uqbbkEMA9ZaphJj7A_eeE,27531
193
+ dolphin/sdk/skill/traditional_toolkit.py,sha256=fYVxX0e8nHr0d9UQwq4FKVsyPmP7VpTB9ufsNzquAcI,9143
194
+ kweaver_dolphin-0.1.0.dist-info/licenses/LICENSE.txt,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
195
+ kweaver_dolphin-0.1.0.dist-info/METADATA,sha256=XCZFEnIUXbvnafcjiC8k-N4IStUSw73fwmGQYjSawfk,15420
196
+ kweaver_dolphin-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
197
+ kweaver_dolphin-0.1.0.dist-info/entry_points.txt,sha256=0xA4Hy1bkr0V7CTaWvswGeHZ0tXdAtCNlGa3ZUDdBg0,1519
198
+ kweaver_dolphin-0.1.0.dist-info/top_level.txt,sha256=vwNhnr4e0NgKRTfM56xcCfo9t2ZebTbbPF38xpBYiq0,27
199
+ kweaver_dolphin-0.1.0.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,27 @@
1
+ [DolphinLanguageSDK.skillkits]
2
+ cognitive = DolphinLanguageSDK.skill.installed.cognitive_skillkit:CognitiveSkillkit
3
+ mcp = DolphinLanguageSDK.skill.installed.mcp_skillkit:MCPSkillkit
4
+ memory = DolphinLanguageSDK.skill.installed.memory_skillkit:MemorySkillkit
5
+ noop = DolphinLanguageSDK.skill.installed.noop_skillkit:NoopSkillkit
6
+ ontology = DolphinLanguageSDK.skill.installed.ontology_skillkit:OntologySkillkit
7
+ plan_act = DolphinLanguageSDK.skill.installed.plan_act_skillkit:PlanActSkillkit
8
+ resource_skillkit = DolphinLanguageSDK.skill.installed.resource_skillkit:ResourceSkillkit
9
+ search = DolphinLanguageSDK.skill.installed.search_skillkit:SearchSkillkit
10
+ sql = DolphinLanguageSDK.skill.installed.sql_skillkit:SQLSkillkit
11
+ vm = DolphinLanguageSDK.skill.installed.vm_skillkit:VMSkillkit
12
+
13
+ [console_scripts]
14
+ dolphin = dolphin.cli:main
15
+
16
+ [dolphin.skillkits]
17
+ cognitive = dolphin.lib.skillkits.cognitive_skillkit:CognitiveSkillkit
18
+ env_skillkit = dolphin.lib.skillkits.env_skillkit:EnvSkillkit
19
+ mcp = dolphin.lib.skillkits.mcp_skillkit:MCPSkillkit
20
+ memory = dolphin.lib.skillkits.memory_skillkit:MemorySkillkit
21
+ noop = dolphin.lib.skillkits.noop_skillkit:NoopSkillkit
22
+ ontology = dolphin.lib.skillkits.ontology_skillkit:OntologySkillkit
23
+ plan_act = dolphin.lib.skillkits.plan_act_skillkit:PlanActSkillkit
24
+ resource = dolphin.lib.skillkits.resource_skillkit:ResourceSkillkit
25
+ search = dolphin.lib.skillkits.search_skillkit:SearchSkillkit
26
+ sql = dolphin.lib.skillkits.sql_skillkit:SQLSkillkit
27
+ vm = dolphin.lib.skillkits.vm_skillkit:VMSkillkit
@@ -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 [yyyy] [name of copyright owner]
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,2 @@
1
+ DolphinLanguageSDK
2
+ dolphin