veadk-python 0.2.27__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 (218) hide show
  1. veadk/__init__.py +37 -0
  2. veadk/a2a/__init__.py +13 -0
  3. veadk/a2a/agent_card.py +45 -0
  4. veadk/a2a/remote_ve_agent.py +390 -0
  5. veadk/a2a/utils/__init__.py +13 -0
  6. veadk/a2a/utils/agent_to_a2a.py +170 -0
  7. veadk/a2a/ve_a2a_server.py +93 -0
  8. veadk/a2a/ve_agent_executor.py +78 -0
  9. veadk/a2a/ve_middlewares.py +313 -0
  10. veadk/a2a/ve_task_store.py +37 -0
  11. veadk/agent.py +402 -0
  12. veadk/agent_builder.py +93 -0
  13. veadk/agents/loop_agent.py +68 -0
  14. veadk/agents/parallel_agent.py +72 -0
  15. veadk/agents/sequential_agent.py +64 -0
  16. veadk/auth/__init__.py +13 -0
  17. veadk/auth/base_auth.py +22 -0
  18. veadk/auth/ve_credential_service.py +203 -0
  19. veadk/auth/veauth/__init__.py +13 -0
  20. veadk/auth/veauth/apmplus_veauth.py +58 -0
  21. veadk/auth/veauth/ark_veauth.py +75 -0
  22. veadk/auth/veauth/base_veauth.py +50 -0
  23. veadk/auth/veauth/cozeloop_veauth.py +13 -0
  24. veadk/auth/veauth/opensearch_veauth.py +75 -0
  25. veadk/auth/veauth/postgresql_veauth.py +75 -0
  26. veadk/auth/veauth/prompt_pilot_veauth.py +60 -0
  27. veadk/auth/veauth/speech_veauth.py +54 -0
  28. veadk/auth/veauth/utils.py +69 -0
  29. veadk/auth/veauth/vesearch_veauth.py +62 -0
  30. veadk/auth/veauth/viking_mem0_veauth.py +91 -0
  31. veadk/cli/__init__.py +13 -0
  32. veadk/cli/cli.py +58 -0
  33. veadk/cli/cli_clean.py +87 -0
  34. veadk/cli/cli_create.py +163 -0
  35. veadk/cli/cli_deploy.py +233 -0
  36. veadk/cli/cli_eval.py +215 -0
  37. veadk/cli/cli_init.py +214 -0
  38. veadk/cli/cli_kb.py +110 -0
  39. veadk/cli/cli_pipeline.py +285 -0
  40. veadk/cli/cli_prompt.py +86 -0
  41. veadk/cli/cli_update.py +106 -0
  42. veadk/cli/cli_uploadevalset.py +139 -0
  43. veadk/cli/cli_web.py +143 -0
  44. veadk/cloud/__init__.py +13 -0
  45. veadk/cloud/cloud_agent_engine.py +485 -0
  46. veadk/cloud/cloud_app.py +475 -0
  47. veadk/config.py +115 -0
  48. veadk/configs/__init__.py +13 -0
  49. veadk/configs/auth_configs.py +133 -0
  50. veadk/configs/database_configs.py +132 -0
  51. veadk/configs/model_configs.py +78 -0
  52. veadk/configs/tool_configs.py +54 -0
  53. veadk/configs/tracing_configs.py +110 -0
  54. veadk/consts.py +74 -0
  55. veadk/evaluation/__init__.py +17 -0
  56. veadk/evaluation/adk_evaluator/__init__.py +17 -0
  57. veadk/evaluation/adk_evaluator/adk_evaluator.py +302 -0
  58. veadk/evaluation/base_evaluator.py +642 -0
  59. veadk/evaluation/deepeval_evaluator/__init__.py +17 -0
  60. veadk/evaluation/deepeval_evaluator/deepeval_evaluator.py +339 -0
  61. veadk/evaluation/eval_set_file_loader.py +48 -0
  62. veadk/evaluation/eval_set_recorder.py +146 -0
  63. veadk/evaluation/types.py +65 -0
  64. veadk/evaluation/utils/prometheus.py +196 -0
  65. veadk/integrations/__init__.py +13 -0
  66. veadk/integrations/ve_apig/__init__.py +13 -0
  67. veadk/integrations/ve_apig/ve_apig.py +349 -0
  68. veadk/integrations/ve_apig/ve_apig_utils.py +332 -0
  69. veadk/integrations/ve_code_pipeline/__init__.py +13 -0
  70. veadk/integrations/ve_code_pipeline/ve_code_pipeline.py +431 -0
  71. veadk/integrations/ve_cozeloop/__init__.py +13 -0
  72. veadk/integrations/ve_cozeloop/ve_cozeloop.py +96 -0
  73. veadk/integrations/ve_cr/__init__.py +13 -0
  74. veadk/integrations/ve_cr/ve_cr.py +220 -0
  75. veadk/integrations/ve_faas/__init__.py +13 -0
  76. veadk/integrations/ve_faas/template/cookiecutter.json +15 -0
  77. veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/__init__.py +13 -0
  78. veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/clean.py +23 -0
  79. veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/config.yaml.example +6 -0
  80. veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/deploy.py +106 -0
  81. veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/__init__.py +13 -0
  82. veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/agent.py +25 -0
  83. veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/app.py +202 -0
  84. veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/requirements.txt +3 -0
  85. veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/run.sh +49 -0
  86. veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/{{ cookiecutter.app_name }}/__init__.py +14 -0
  87. veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/{{ cookiecutter.app_name }}/agent.py +27 -0
  88. veadk/integrations/ve_faas/ve_faas.py +754 -0
  89. veadk/integrations/ve_faas/ve_faas_utils.py +408 -0
  90. veadk/integrations/ve_faas/web_template/cookiecutter.json +20 -0
  91. veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/__init__.py +13 -0
  92. veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/clean.py +23 -0
  93. veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/config.yaml.example +2 -0
  94. veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/deploy.py +44 -0
  95. veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/Dockerfile +23 -0
  96. veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/app.py +123 -0
  97. veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/init_db.py +46 -0
  98. veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/models.py +36 -0
  99. veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/requirements.txt +4 -0
  100. veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/run.sh +21 -0
  101. veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/static/css/style.css +368 -0
  102. veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/static/js/admin.js +0 -0
  103. veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/templates/admin/dashboard.html +21 -0
  104. veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/templates/admin/edit_post.html +24 -0
  105. veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/templates/admin/login.html +21 -0
  106. veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/templates/admin/posts.html +53 -0
  107. veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/templates/base.html +45 -0
  108. veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/templates/index.html +29 -0
  109. veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/templates/post.html +14 -0
  110. veadk/integrations/ve_identity/__init__.py +110 -0
  111. veadk/integrations/ve_identity/auth_config.py +261 -0
  112. veadk/integrations/ve_identity/auth_mixins.py +650 -0
  113. veadk/integrations/ve_identity/auth_processor.py +385 -0
  114. veadk/integrations/ve_identity/function_tool.py +158 -0
  115. veadk/integrations/ve_identity/identity_client.py +864 -0
  116. veadk/integrations/ve_identity/mcp_tool.py +181 -0
  117. veadk/integrations/ve_identity/mcp_toolset.py +431 -0
  118. veadk/integrations/ve_identity/models.py +228 -0
  119. veadk/integrations/ve_identity/token_manager.py +188 -0
  120. veadk/integrations/ve_identity/utils.py +151 -0
  121. veadk/integrations/ve_prompt_pilot/__init__.py +13 -0
  122. veadk/integrations/ve_prompt_pilot/ve_prompt_pilot.py +85 -0
  123. veadk/integrations/ve_tls/__init__.py +13 -0
  124. veadk/integrations/ve_tls/utils.py +116 -0
  125. veadk/integrations/ve_tls/ve_tls.py +212 -0
  126. veadk/integrations/ve_tos/ve_tos.py +710 -0
  127. veadk/integrations/ve_viking_db_memory/__init__.py +13 -0
  128. veadk/integrations/ve_viking_db_memory/ve_viking_db_memory.py +308 -0
  129. veadk/knowledgebase/__init__.py +17 -0
  130. veadk/knowledgebase/backends/__init__.py +13 -0
  131. veadk/knowledgebase/backends/base_backend.py +72 -0
  132. veadk/knowledgebase/backends/in_memory_backend.py +91 -0
  133. veadk/knowledgebase/backends/opensearch_backend.py +162 -0
  134. veadk/knowledgebase/backends/redis_backend.py +172 -0
  135. veadk/knowledgebase/backends/utils.py +92 -0
  136. veadk/knowledgebase/backends/vikingdb_knowledge_backend.py +608 -0
  137. veadk/knowledgebase/entry.py +25 -0
  138. veadk/knowledgebase/knowledgebase.py +307 -0
  139. veadk/memory/__init__.py +35 -0
  140. veadk/memory/long_term_memory.py +365 -0
  141. veadk/memory/long_term_memory_backends/__init__.py +13 -0
  142. veadk/memory/long_term_memory_backends/base_backend.py +35 -0
  143. veadk/memory/long_term_memory_backends/in_memory_backend.py +67 -0
  144. veadk/memory/long_term_memory_backends/mem0_backend.py +155 -0
  145. veadk/memory/long_term_memory_backends/opensearch_backend.py +124 -0
  146. veadk/memory/long_term_memory_backends/redis_backend.py +140 -0
  147. veadk/memory/long_term_memory_backends/vikingdb_memory_backend.py +189 -0
  148. veadk/memory/short_term_memory.py +252 -0
  149. veadk/memory/short_term_memory_backends/__init__.py +13 -0
  150. veadk/memory/short_term_memory_backends/base_backend.py +31 -0
  151. veadk/memory/short_term_memory_backends/mysql_backend.py +49 -0
  152. veadk/memory/short_term_memory_backends/postgresql_backend.py +49 -0
  153. veadk/memory/short_term_memory_backends/sqlite_backend.py +55 -0
  154. veadk/memory/short_term_memory_processor.py +100 -0
  155. veadk/processors/__init__.py +26 -0
  156. veadk/processors/base_run_processor.py +120 -0
  157. veadk/prompts/__init__.py +13 -0
  158. veadk/prompts/agent_default_prompt.py +30 -0
  159. veadk/prompts/prompt_evaluator.py +20 -0
  160. veadk/prompts/prompt_memory_processor.py +55 -0
  161. veadk/prompts/prompt_optimization.py +150 -0
  162. veadk/runner.py +732 -0
  163. veadk/tools/__init__.py +13 -0
  164. veadk/tools/builtin_tools/__init__.py +13 -0
  165. veadk/tools/builtin_tools/agent_authorization.py +94 -0
  166. veadk/tools/builtin_tools/generate_image.py +23 -0
  167. veadk/tools/builtin_tools/image_edit.py +300 -0
  168. veadk/tools/builtin_tools/image_generate.py +446 -0
  169. veadk/tools/builtin_tools/lark.py +67 -0
  170. veadk/tools/builtin_tools/las.py +24 -0
  171. veadk/tools/builtin_tools/link_reader.py +66 -0
  172. veadk/tools/builtin_tools/llm_shield.py +381 -0
  173. veadk/tools/builtin_tools/load_knowledgebase.py +97 -0
  174. veadk/tools/builtin_tools/mcp_router.py +29 -0
  175. veadk/tools/builtin_tools/run_code.py +113 -0
  176. veadk/tools/builtin_tools/tts.py +253 -0
  177. veadk/tools/builtin_tools/vesearch.py +49 -0
  178. veadk/tools/builtin_tools/video_generate.py +363 -0
  179. veadk/tools/builtin_tools/web_scraper.py +76 -0
  180. veadk/tools/builtin_tools/web_search.py +83 -0
  181. veadk/tools/demo_tools.py +58 -0
  182. veadk/tools/load_knowledgebase_tool.py +149 -0
  183. veadk/tools/sandbox/__init__.py +13 -0
  184. veadk/tools/sandbox/browser_sandbox.py +37 -0
  185. veadk/tools/sandbox/code_sandbox.py +40 -0
  186. veadk/tools/sandbox/computer_sandbox.py +34 -0
  187. veadk/tracing/__init__.py +13 -0
  188. veadk/tracing/base_tracer.py +58 -0
  189. veadk/tracing/telemetry/__init__.py +13 -0
  190. veadk/tracing/telemetry/attributes/attributes.py +29 -0
  191. veadk/tracing/telemetry/attributes/extractors/common_attributes_extractors.py +180 -0
  192. veadk/tracing/telemetry/attributes/extractors/llm_attributes_extractors.py +858 -0
  193. veadk/tracing/telemetry/attributes/extractors/tool_attributes_extractors.py +152 -0
  194. veadk/tracing/telemetry/attributes/extractors/types.py +164 -0
  195. veadk/tracing/telemetry/exporters/__init__.py +13 -0
  196. veadk/tracing/telemetry/exporters/apmplus_exporter.py +558 -0
  197. veadk/tracing/telemetry/exporters/base_exporter.py +39 -0
  198. veadk/tracing/telemetry/exporters/cozeloop_exporter.py +129 -0
  199. veadk/tracing/telemetry/exporters/inmemory_exporter.py +248 -0
  200. veadk/tracing/telemetry/exporters/tls_exporter.py +139 -0
  201. veadk/tracing/telemetry/opentelemetry_tracer.py +320 -0
  202. veadk/tracing/telemetry/telemetry.py +411 -0
  203. veadk/types.py +47 -0
  204. veadk/utils/__init__.py +13 -0
  205. veadk/utils/audio_manager.py +95 -0
  206. veadk/utils/auth.py +294 -0
  207. veadk/utils/logger.py +59 -0
  208. veadk/utils/mcp_utils.py +44 -0
  209. veadk/utils/misc.py +184 -0
  210. veadk/utils/patches.py +101 -0
  211. veadk/utils/volcengine_sign.py +205 -0
  212. veadk/version.py +15 -0
  213. veadk_python-0.2.27.dist-info/METADATA +373 -0
  214. veadk_python-0.2.27.dist-info/RECORD +218 -0
  215. veadk_python-0.2.27.dist-info/WHEEL +5 -0
  216. veadk_python-0.2.27.dist-info/entry_points.txt +2 -0
  217. veadk_python-0.2.27.dist-info/licenses/LICENSE +201 -0
  218. veadk_python-0.2.27.dist-info/top_level.txt +1 -0
@@ -0,0 +1,218 @@
1
+ veadk/__init__.py,sha256=9l1lyb9ifhHQeetmIBWZnIdwUCVyMyz1EnKsKz8BBG8,1135
2
+ veadk/agent.py,sha256=wWJteR10yTyMbDapBG0HZ8ipc4w5C-Yg3Ub34JN84UM,16555
3
+ veadk/agent_builder.py,sha256=HI7mRrUZ72_7i-jVzNDx1anTZHy7UxX7jr2Drxxx6j8,3031
4
+ veadk/config.py,sha256=goo4RTo53K47Q0OUF6OpFoQlDv8UfJPPxSUNNaWsplw,3932
5
+ veadk/consts.py,sha256=8FcwnvKxQM50r8HDQxnhI-Ml_mjyfYdkGDxbyPBrW5Q,2679
6
+ veadk/runner.py,sha256=OL0HPw7l6sOA6x5IKac6xPmzHNtDO80Jj7oHtK7Pifo,27964
7
+ veadk/types.py,sha256=zOOzG-QJy-MkzHeicWJzy2_L5U4ERrWziPubIUEbd8c,1656
8
+ veadk/version.py,sha256=M3xuJp2AtvkPk1Zn75B6sNuJRor_A0ZsctXF8YYlkQ0,654
9
+ veadk/a2a/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
10
+ veadk/a2a/agent_card.py,sha256=lhtgW1acMpxYUdULHEZwVFXOi6Xh4lNkf4S7QIhbFFI,1525
11
+ veadk/a2a/remote_ve_agent.py,sha256=I1ROaaWmy7R_CwCNB_2Duc0ebM0c2z1vBZh6Df-_ukM,16450
12
+ veadk/a2a/ve_a2a_server.py,sha256=Bq9344TdU-tlTzFR7OoIz3sYXck_tPalB0bejGtNc7g,2971
13
+ veadk/a2a/ve_agent_executor.py,sha256=PSF5akKxVosLOXQ_Kb75PO8u1Lrm2Zj6OnRT5-U6VE8,2646
14
+ veadk/a2a/ve_middlewares.py,sha256=Vx5M8pzgR2GK3W-ATl6o8DPAr-zLXz6uJJGxVEXwMZI,11851
15
+ veadk/a2a/ve_task_store.py,sha256=rxwQ-j7Ffe4LnLwpKbweQk4ofwMQx9UL6k3zaDrFIXg,1234
16
+ veadk/a2a/utils/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
17
+ veadk/a2a/utils/agent_to_a2a.py,sha256=ZamWTCdBXdEb2SfE_mOO1liH0yo7IhHj_JOmxDgrX8A,6972
18
+ veadk/agents/loop_agent.py,sha256=GNnbcXPqpf1znmArlkNAoNshLYuv0xYzl15ctpsSenI,2851
19
+ veadk/agents/parallel_agent.py,sha256=Db020GXwLfllyQAlxYzvOmDzRNeT6WduQSEJ5PkM3L4,3064
20
+ veadk/agents/sequential_agent.py,sha256=suotuWjDI6LGTxXSsFGSRVs5pl0NFD0-FoB86zatlUo,2839
21
+ veadk/auth/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
22
+ veadk/auth/base_auth.py,sha256=Iwp6QAuFrJNxqXSolXkIRlK8krS0FjQKpx_fVjF-2b8,789
23
+ veadk/auth/ve_credential_service.py,sha256=kzqN-DFsJVxeDRfNUKu8DxmKbikHBbdOjVwCqhSlnKI,6834
24
+ veadk/auth/veauth/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
25
+ veadk/auth/veauth/apmplus_veauth.py,sha256=pZb-6ILfyRdOtq6w9vGVzjA2oUyh1dUE5dTwG8jN5CU,1970
26
+ veadk/auth/veauth/ark_veauth.py,sha256=aumXksP6bc9WXS44HuHyU-ciPBwZvUckFCUtuztsoa4,2630
27
+ veadk/auth/veauth/base_veauth.py,sha256=y8H_1a_gldt6hDHGBjYDc4xI7IhguNxMGONt_kx5Snc,1519
28
+ veadk/auth/veauth/cozeloop_veauth.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
29
+ veadk/auth/veauth/opensearch_veauth.py,sha256=nJ8n3Ru4uyTM4yZx4OvmnzLmjbP66kU7hyFjD3_ZbAM,2580
30
+ veadk/auth/veauth/postgresql_veauth.py,sha256=oxi9KH78qc-36yQI90aqO24cCuGdFt3HBApxAf8czEA,2580
31
+ veadk/auth/veauth/prompt_pilot_veauth.py,sha256=cls1LK2Un4cOMfHdaAqRhDHIXuk7cTuAThojEF5tHKo,1913
32
+ veadk/auth/veauth/speech_veauth.py,sha256=bNiZRF6XxYjw5OHKWLMPy0GJ4c8bYZ-7BsYfKiRkAos,1936
33
+ veadk/auth/veauth/utils.py,sha256=XCDznHfxXHirJOW-9iFkqgzcejgZm0qOfunTJ0BGxmQ,2500
34
+ veadk/auth/veauth/vesearch_veauth.py,sha256=rgup3VBbRSLligrsDFOEwpneq1BEtFwf9xpgNFWHKqc,2008
35
+ veadk/auth/veauth/viking_mem0_veauth.py,sha256=V8Jhr6M3CB2V41oe5KoMozgHFAERC3TJ9U87K-FgBtk,2922
36
+ veadk/cli/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
37
+ veadk/cli/cli.py,sha256=y7w6c0a_1Yr4lHHX825SnfbY5OmJsm1VZYMukgdUoQk,1826
38
+ veadk/cli/cli_clean.py,sha256=OYLgEIWjybvG6yE-F93VKxqWkkCVIZMzhmt8yvOFOyU,3147
39
+ veadk/cli/cli_create.py,sha256=9L4pmDFMJ0f501EhCrTAL0mSZHVEdb_e0rlqUpfGXrM,6165
40
+ veadk/cli/cli_deploy.py,sha256=qR3ZfnrT2hCP8T3-HzVG_4u3Uch0FVuyhg2DRpCOADU,8617
41
+ veadk/cli/cli_eval.py,sha256=UqID2jOOQdlkrFu1PJSg9gyl2njLObNDxvql4frKrp4,8672
42
+ veadk/cli/cli_init.py,sha256=127rlJ1u6rDbIpQGjDslxOazgMGgInUrTXRFzOFDGTk,7546
43
+ veadk/cli/cli_kb.py,sha256=8o0faQrx_wT38-cDBz1jRT2Qh1jskqGQaNKaB69MU88,4207
44
+ veadk/cli/cli_pipeline.py,sha256=M4nFjeyMaQRglZY5V5-IJQM2WoKMXq0olPC8khhnpkc,11384
45
+ veadk/cli/cli_prompt.py,sha256=tJgWWWcIL8ieCS_W5EIjI20VSZ637ZpKSLAXuf9Va8I,3268
46
+ veadk/cli/cli_update.py,sha256=6SFy_UjLCx8k51qW1hnub3aRQxq9ATVVNH5ERJwrhlI,3937
47
+ veadk/cli/cli_uploadevalset.py,sha256=OgQfLEZ8uLyt4oRR6_30nvy1vELWkNagc_8sl5tEmsY,5243
48
+ veadk/cli/cli_web.py,sha256=d_0O97Ikh92deBki93Q6-XvmwQDP5ZKg_3ZBSUA8kNM,5236
49
+ veadk/cloud/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
50
+ veadk/cloud/cloud_agent_engine.py,sha256=L88IDzOgXTmQFOrQyLK9EDIqnOYKvNLHK9MYvmJL6Lo,18987
51
+ veadk/cloud/cloud_app.py,sha256=QW2_R5M46Zus1k6vk50r-ckkohMWok_ol1lUcPsoQZI,16758
52
+ veadk/configs/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
53
+ veadk/configs/auth_configs.py,sha256=7CYfKnHbZkWn8b_NHPECD7JKcCcSyP8A665YZV7uG2w,4757
54
+ veadk/configs/database_configs.py,sha256=MDQw85a0n4HHAW-kRhb7Tv6n9gIPelx-iDpI1eOwmnw,3001
55
+ veadk/configs/model_configs.py,sha256=1Fx_sDpbGsnUqhZtVOBqf6bAn4F6dGVBMQf3DPGsByU,2498
56
+ veadk/configs/tool_configs.py,sha256=Xc2SpoAa_u0TG-DiYZXkiu0BXvdzrUJ_ckfwbUBUc4E,1842
57
+ veadk/configs/tracing_configs.py,sha256=IhHtEKryqh6xh4ZIqhENeuK41J7Ko-ZmoU_xrgSCKIE,3491
58
+ veadk/evaluation/__init__.py,sha256=Pwnv6x-QaQQiv4J_QNnR-Asl7wN0laF92EX9n0Sll1U,713
59
+ veadk/evaluation/base_evaluator.py,sha256=mE7V1y64rFgJwZDSI4HzaM9l0SDumS6ii-vqULM8OIo,22937
60
+ veadk/evaluation/eval_set_file_loader.py,sha256=KDFj9D-1wU6_xwUPBjn1EpC-CbEuMuVkx0pP5EeS8hQ,1678
61
+ veadk/evaluation/eval_set_recorder.py,sha256=B8dGfB1ibCzFxZLluemA9XOlTZ4oj3yiIe0HSqKeu3E,5127
62
+ veadk/evaluation/types.py,sha256=Nh4DQx1f7a8Tbr1zHGWJzr1qI0dFimhtsE_u6jbwGa0,2023
63
+ veadk/evaluation/adk_evaluator/__init__.py,sha256=t_vAjCiA6PD7oIWJ9qx_vWnvbytN_Ha5Jfs3ZWjdzyY,703
64
+ veadk/evaluation/adk_evaluator/adk_evaluator.py,sha256=de3VJMedwVOt6LzzVUxrGjSJMAsqHf0V2pOmKOTf0JQ,12911
65
+ veadk/evaluation/deepeval_evaluator/__init__.py,sha256=lLGtRvWhwDy4u7hmtZxZbPmdMzM58pSjEwEF34NqW-4,718
66
+ veadk/evaluation/deepeval_evaluator/deepeval_evaluator.py,sha256=7Vxn3R5UmobWSfK5dSwkggzKIvKROssAflU96p3qi28,13201
67
+ veadk/evaluation/utils/prometheus.py,sha256=R_hsB_G3IM6n5sCfL0-QtGLJ-6z_ZR-eh0U92ROmHao,6415
68
+ veadk/integrations/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
69
+ veadk/integrations/ve_apig/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
70
+ veadk/integrations/ve_apig/ve_apig.py,sha256=bBDoIqO6D5MgkQgMLSLdoYJerPsb-vm0vr9OfxCIT7g,12939
71
+ veadk/integrations/ve_apig/ve_apig_utils.py,sha256=9eL7vu51PyPAZNoBMpoaDjWRatvqbY_Bb1BaBsjz-V8,10766
72
+ veadk/integrations/ve_code_pipeline/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
73
+ veadk/integrations/ve_code_pipeline/ve_code_pipeline.py,sha256=ZQkc-49tpLaZf9DaKuZfU8-fNjnoDr8WV7liJXZ815I,14492
74
+ veadk/integrations/ve_cozeloop/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
75
+ veadk/integrations/ve_cozeloop/ve_cozeloop.py,sha256=XhZrp7kjfJfx6ha5D_LaAgR5-KiOFY4Cd7KNu8mn-Ug,3319
76
+ veadk/integrations/ve_cr/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
77
+ veadk/integrations/ve_cr/ve_cr.py,sha256=EaB64Sk4IL8clnbF4JGxHj3zxoGXoiqiLDU5jLp1ATU,7447
78
+ veadk/integrations/ve_faas/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
79
+ veadk/integrations/ve_faas/ve_faas.py,sha256=1uWryKUeqVl56WaXyj8p9Lrbd7HhIL_-y1LfdQ2ilWs,28903
80
+ veadk/integrations/ve_faas/ve_faas_utils.py,sha256=57INjzLs-k2pReHhyMaFwptUUuP5Wk7SWqFUzaE3bBw,13200
81
+ veadk/integrations/ve_faas/template/cookiecutter.json,sha256=IIirfHZXxlXwiXGLGhi1_Hw1cJzHLpPbFZNryZTOpoQ,432
82
+ veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
83
+ veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/clean.py,sha256=31mvoL_3--3lpwwir6orLZNwhOPdd5uJangMkkUz8C0,859
84
+ veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/config.yaml.example,sha256=DdrObZmrhhOETxUgympG4UiN2D-2HVITwHMejcDscrQ,144
85
+ veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/deploy.py,sha256=b1eD1hSWRkMuw-xnS7ZnC7jzY4pSQAQqqq4mGQooQ1Q,3740
86
+ veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
87
+ veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/agent.py,sha256=FS8xpXAVVnFsye5Si75mxecmpbScD1lB7NS2jrQ5BDo,1078
88
+ veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/app.py,sha256=JOiUAqhFouyVpWI6Yp5Gkx42HsYTQWUopQXnrzxGAS8,6577
89
+ veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/requirements.txt,sha256=KFYmsHfQtWIQCnVD9xfF6gl7PVkufVDWB-nytORZ4y0,73
90
+ veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/run.sh,sha256=4piKcfCVpXmPGTHpDC4df87hnSxHAmibi4YQ5toHHmE,1098
91
+ veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/{{ cookiecutter.app_name }}/__init__.py,sha256=HEVMuauOZSfmC3AqbXnqSmHNJ1FlMuAwNktxnlTj8uY,575
92
+ veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/{{ cookiecutter.app_name }}/agent.py,sha256=ESNxN1nZlif0hU-ol48fOXZz-HV2__uVMZe6U9G6Y6s,1061
93
+ veadk/integrations/ve_faas/web_template/cookiecutter.json,sha256=bKcKBvO0PxjxyEycR4_Ha-x6hh4k0-ldDMy0GICBVKc,460
94
+ veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
95
+ veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/clean.py,sha256=31mvoL_3--3lpwwir6orLZNwhOPdd5uJangMkkUz8C0,859
96
+ veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/config.yaml.example,sha256=sM2vwHhj1VKUjkHGjqiZmuRJaC0PA8U1xIgZ69cGDCI,45
97
+ veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/deploy.py,sha256=KgU5h-e2-82y4SUB9Xlt5e4_CMTVrpmAuOzLcWTg87c,1783
98
+ veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/Dockerfile,sha256=gI1S114aoXgY9aT75JZhYUHqWEyX3GcUK4m8bi5wnoA,402
99
+ veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/app.py,sha256=DstbQKKkLpMydDbEutEOWtwpBfwI2Uxaax7ioABlcT0,4137
100
+ veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/init_db.py,sha256=SZz-rLr5o7vH8QZyqn9Sy13Z4K5zxrCGGnVVTw5v_d4,1755
101
+ veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/models.py,sha256=oqwNhSVQMtAsZb-oTegvWb1BxKkuG_iGUj81DNBM49I,1389
102
+ veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/requirements.txt,sha256=ua2Wr1GIsWvGczCZbtL49iqsYGGdPc8YvKXar0jV4l4,69
103
+ veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/run.sh,sha256=jRCoBtZ6JexR-4Yyl5tcRNZpyyClG0tsAnSl8oFLNJk,458
104
+ veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/static/css/style.css,sha256=2SfLhiOEqBCKUDT0YzkmjJ01zaUWIRYJhelBag8jHUA,5708
105
+ veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/static/js/admin.js,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
106
+ veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/templates/base.html,sha256=QSu2ZgAcPuiy1ylbT5escFfW7gmZG5lkZ3QDJBOY-8Y,1483
107
+ veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/templates/index.html,sha256=BuIwm3aK15yAvCSPYjcmU2_FXTzA1PgKvXWGIITHGyk,1017
108
+ veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/templates/post.html,sha256=znZNnXe5yP-tIqjKUACX0lmA37jRO7wK4TG_dz5s2dc,460
109
+ veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/templates/admin/dashboard.html,sha256=nFJqkWZsJMxlsXh4_cUv8q4tlEtCy5Q2KYp0cJpcj_w,548
110
+ veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/templates/admin/edit_post.html,sha256=Y4D8iBQi-bzTzcG8I0I_BMvX4b5H96HfU3UFabT6mAA,877
111
+ veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/templates/admin/login.html,sha256=pM4OXH3byt4ZQMiBH32bFeYhaLdop5HtP5Q40E5YK5o,661
112
+ veadk/integrations/ve_faas/web_template/{{cookiecutter.local_dir_name}}/src/templates/admin/posts.html,sha256=RW7zPXzkwEbxs1imSTa2THNVsfE6YHN0qEqKbRbE0dI,1810
113
+ veadk/integrations/ve_identity/__init__.py,sha256=9xSjaeGlF2khRwHCFAGvun1UVzG4PlpuqHvKBhz1xrw,3236
114
+ veadk/integrations/ve_identity/auth_config.py,sha256=GPjZ61N0ouktjYKQsszJkHcyNS7H0qyImaecPTYE844,8850
115
+ veadk/integrations/ve_identity/auth_mixins.py,sha256=xc6tijkSJ0b58ZpK4mzWLMbnW6ahAfTT5lonFOvkk5E,24072
116
+ veadk/integrations/ve_identity/auth_processor.py,sha256=yRbHpkI93bQxgMAQpq18vUNpA4Il4umJbtWjpgFEqHk,14353
117
+ veadk/integrations/ve_identity/function_tool.py,sha256=NB9Q7_3du__ETDQM93CED-MKdYzh8ukCAwL7tp9svp0,5542
118
+ veadk/integrations/ve_identity/identity_client.py,sha256=horQNLdcdwxXioYRNbGCzKyr1knwvk5F1kRouh7O6tk,32368
119
+ veadk/integrations/ve_identity/mcp_tool.py,sha256=4gof6HagFmCTGdKKZx-_qIhzbuELA0cse-vV6Jb1H5I,6370
120
+ veadk/integrations/ve_identity/mcp_toolset.py,sha256=QNogFGgSnVA269FOqdlX_pkSJHMUIm4TXlnXBYLiD2Q,16601
121
+ veadk/integrations/ve_identity/models.py,sha256=U5I0ylquUjywm7NHgO3y4VaQIWD2Ue_5z06xzBSQuiA,8337
122
+ veadk/integrations/ve_identity/token_manager.py,sha256=S_6YLcyaoxAj4LvhFdVVgZzan73O2byKy8DJQPj-O14,7434
123
+ veadk/integrations/ve_identity/utils.py,sha256=xpmm8oV0L9xqwc9tvQ7bbTevp3vf6Wnlvn7qlqOZGFc,5518
124
+ veadk/integrations/ve_prompt_pilot/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
125
+ veadk/integrations/ve_prompt_pilot/ve_prompt_pilot.py,sha256=Wp16pejFObnfudzNv1AZhBJuDkbZu3B2uHEFUR8WNLc,3115
126
+ veadk/integrations/ve_tls/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
127
+ veadk/integrations/ve_tls/utils.py,sha256=DmWS37gSuKsUgiqlLyk1obfAAZZnEpkemQuoTDxAEG4,3769
128
+ veadk/integrations/ve_tls/ve_tls.py,sha256=zO8rSX0CqxcjKjosXI90ykNFO6dhpsIsPa9uZGrf50s,7253
129
+ veadk/integrations/ve_tos/ve_tos.py,sha256=8tWb-eO7IK140VwjI-Bl4LNCeQNI9CgvKsr9gLXe5aA,25365
130
+ veadk/integrations/ve_viking_db_memory/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
131
+ veadk/integrations/ve_viking_db_memory/ve_viking_db_memory.py,sha256=6jXNnZKCAXkap7lU4qgySDByNp63PBCycgMr_injgAU,10776
132
+ veadk/knowledgebase/__init__.py,sha256=k-5WM0DAqNq94Dg64Rl12ozoS1BnE9i-MY_ZOR2s2CQ,705
133
+ veadk/knowledgebase/entry.py,sha256=j6VsXRAyjZryIFntnoNfjbH8fsD9_fDSjoHIL5h0Y1U,917
134
+ veadk/knowledgebase/knowledgebase.py,sha256=o56AuQYFm6_YKUqlsw5l1uPtV5o7VNtsbL6wsYQ9-GQ,10829
135
+ veadk/knowledgebase/backends/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
136
+ veadk/knowledgebase/backends/base_backend.py,sha256=VTI2xN5S963UfX8QrgJkd52LmCNT3tsBaDP7MefBL7U,2369
137
+ veadk/knowledgebase/backends/in_memory_backend.py,sha256=juBlqKhlsHl0W9FHnV0j3hJo-Ix5ossPvkG0xEtbX4Q,3662
138
+ veadk/knowledgebase/backends/opensearch_backend.py,sha256=ZSOb3UrEMnSiMl79kGbyCO-uX3aIoFh1sak8hBn2aT8,5723
139
+ veadk/knowledgebase/backends/redis_backend.py,sha256=PPcjrfUyk-1MK14Jv7voJxINiOazleUBrKuq4BvdLl0,6001
140
+ veadk/knowledgebase/backends/utils.py,sha256=383La0fsmPcbJEpGWk54EP8p8QO1SP_ThqJPmRWa5Rs,2705
141
+ veadk/knowledgebase/backends/vikingdb_knowledge_backend.py,sha256=a2GUgBa_AaVnzdzmodUDYyNB4wUuVoMnt4tNEusfG8A,21247
142
+ veadk/memory/__init__.py,sha256=GRIoRqapS2gUtRMB9JZvodU29PwMxFe2KDjPnVpqib0,1252
143
+ veadk/memory/long_term_memory.py,sha256=VFuRhUBz9-XiSh2miZsGy2jOFy_mO7-0UKOCt99OvxU,13214
144
+ veadk/memory/short_term_memory.py,sha256=xChv_AcZJ9qV-vfdQSjlrUyMByIlySHXkYNrO3Enr90,9446
145
+ veadk/memory/short_term_memory_processor.py,sha256=vqmYSUNFGXEogJ8ZxIAhSSrv66LGT8eEHCzxF9h07LA,3276
146
+ veadk/memory/long_term_memory_backends/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
147
+ veadk/memory/long_term_memory_backends/base_backend.py,sha256=FDBBUCLEfe8bxkpra1FFGieZZFT_YC8B3kdHx9pKgwo,1223
148
+ veadk/memory/long_term_memory_backends/in_memory_backend.py,sha256=0IKRqstS3Rtm8ePf55XpfLhIjomIGep3SwwlUZ4PFvY,2714
149
+ veadk/memory/long_term_memory_backends/mem0_backend.py,sha256=5F2DVhQk4q8MexpYXQdamYreD2exiNaXzeu8BMYFpzc,5409
150
+ veadk/memory/long_term_memory_backends/opensearch_backend.py,sha256=u5odPUv0fchH3IsZNTH0-nNpdW4KwkWojRQi3cn52Wo,4567
151
+ veadk/memory/long_term_memory_backends/redis_backend.py,sha256=0XX21AJA4UwEqrteXdgOr5WAfuo31wK1fMLUtXMssfg,5262
152
+ veadk/memory/long_term_memory_backends/vikingdb_memory_backend.py,sha256=3hjFmtOT4jWee_8WVZTsyDCHBvloMSku5zfP86TvzEI,6737
153
+ veadk/memory/short_term_memory_backends/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
154
+ veadk/memory/short_term_memory_backends/base_backend.py,sha256=5AtnWuFE_TYpTAlAKnm2xglf4AT3iXmU9QSF7LkO1BA,1053
155
+ veadk/memory/short_term_memory_backends/mysql_backend.py,sha256=5rEZQloWiZwKgTLg2UAN2aU2V3k9Pdma1Nd7XmzBECs,1994
156
+ veadk/memory/short_term_memory_backends/postgresql_backend.py,sha256=rNniSXBaw_U8vpwIdiZr7aIBwXgaUVKmfQ_Qvu_Tx38,2110
157
+ veadk/memory/short_term_memory_backends/sqlite_backend.py,sha256=ZagIKfoEx32OYSH0DugSRl3JRUh4IvZVLVJ_B7nFWSs,1916
158
+ veadk/processors/__init__.py,sha256=3J_qV4-rCVdJsQ0TCmFnNLOHN4iWkQhjyPhRcA9Ya5Q,951
159
+ veadk/processors/base_run_processor.py,sha256=vMCI6UHKQRutKm0KHTAE2UDKXJNBuTXUnjKoDi5fv4k,4325
160
+ veadk/prompts/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
161
+ veadk/prompts/agent_default_prompt.py,sha256=hijfMeZt0TYDVB9WEVwcazuuhm8z0Xdlzht1CfyYPLE,1380
162
+ veadk/prompts/prompt_evaluator.py,sha256=oE6x7WJrT-q7weh9t-jNAZv3_90eoiWLC9RiuCYoWQc,1103
163
+ veadk/prompts/prompt_memory_processor.py,sha256=7RF12ixz13FQ-1H7xDM3EHcMtMRDh7UIdT2aTnTdoNs,1729
164
+ veadk/prompts/prompt_optimization.py,sha256=RIHX0bcpBRfG6--0tGH67CQ063KiAoVJO145PVztujI,4164
165
+ veadk/tools/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
166
+ veadk/tools/demo_tools.py,sha256=Gu3sxygcYVS2cv3WqUOl-Gq4JhMlDAktoCHOFT0gbFQ,2216
167
+ veadk/tools/load_knowledgebase_tool.py,sha256=UUTv0Za9GkEXAkl1SXmyq0HGCKGvSlH_f8Ok6O6e52M,4704
168
+ veadk/tools/builtin_tools/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
169
+ veadk/tools/builtin_tools/agent_authorization.py,sha256=bs_WUkjLlbiW5FRKF6Pi6CkldJlpvwJHtWF5rkNszY0,3331
170
+ veadk/tools/builtin_tools/generate_image.py,sha256=b80yMziV0PR9_1oAd5HyDbZGAi3OMpUgL1xMyxW35m8,979
171
+ veadk/tools/builtin_tools/image_edit.py,sha256=KslsuabBchAYR3ZrWSO5viEe5ORUAe0GI1qQ6mxoIU0,11588
172
+ veadk/tools/builtin_tools/image_generate.py,sha256=frBUYEmizq6B4cRIUTfWKpLF2RywposJf-hZ8kkZvV8,18075
173
+ veadk/tools/builtin_tools/lark.py,sha256=b2IWsN8fZFh9aweSGznaOqA30TCOLpVjNCDNa1LHZl4,2046
174
+ veadk/tools/builtin_tools/las.py,sha256=rgKfnK5GsHVbmkp-rc7rtCvWg-yYNxMjeV0ayCyRpjM,913
175
+ veadk/tools/builtin_tools/link_reader.py,sha256=5sgjytOd1OaWSadyTqTYI1IkuN169hPk1NET0SgJy84,2380
176
+ veadk/tools/builtin_tools/llm_shield.py,sha256=ErT7FcweH855D36zpx98ppbwLRA-uUx_u06HdxZ-Tgc,14396
177
+ veadk/tools/builtin_tools/load_knowledgebase.py,sha256=Xqtq25DL720goRegCVmmkpH2Ye2VWLcrF5ncC37gK_Y,3427
178
+ veadk/tools/builtin_tools/mcp_router.py,sha256=Sn32NhtCxMWMKSVWaNStXL28oPz5fzDkR1xsf-vfTUk,1061
179
+ veadk/tools/builtin_tools/run_code.py,sha256=WRicAwZzz1G1q_5dpNl6TPz4vJdqALOyQfEjy_HRKgM,4103
180
+ veadk/tools/builtin_tools/tts.py,sha256=wT6x07X5-wlzNKzuvL4cwl1eRWq5ocBHy4ZSrVX--5k,8162
181
+ veadk/tools/builtin_tools/vesearch.py,sha256=zD2B9_TFn3hl_i7NccZq2uJZJtouBxEEl2TslDdCkPQ,1760
182
+ veadk/tools/builtin_tools/video_generate.py,sha256=N2aHIHzLaE__uEhwIwEm1mWXiBdLW2mDSWBtLfqcQjc,16208
183
+ veadk/tools/builtin_tools/web_scraper.py,sha256=iVnxWVf2mVgOnEOeQ6Bg5ATYN-g1ZPCTK6VJm710be0,2408
184
+ veadk/tools/builtin_tools/web_search.py,sha256=ba5UMZIAQl-BTvjty2zEwroNWAnIeWOiuR8W1DJd_oQ,2739
185
+ veadk/tools/sandbox/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
186
+ veadk/tools/sandbox/browser_sandbox.py,sha256=2YxGM8BIQ1uCY73FDfkWWq72cOCFbp6YLsXIqRWEoSM,1172
187
+ veadk/tools/sandbox/code_sandbox.py,sha256=iOB7XxJxbckmnXOOUwzQ5t_0Tq1IA3JITEywKB6t7oM,1244
188
+ veadk/tools/sandbox/computer_sandbox.py,sha256=e0d3pwaxBbLLihK-rFv2tUU7bmAwPTvSphr2fC9bJBo,1150
189
+ veadk/tracing/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
190
+ veadk/tracing/base_tracer.py,sha256=bH1CnNrIyIDF4ufzXI_2pA6zgBxQcMvpjK_fPsX3ZG0,2202
191
+ veadk/tracing/telemetry/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
192
+ veadk/tracing/telemetry/opentelemetry_tracer.py,sha256=IMXoqzxovK7t4zI9I9k7toFuCHE4tX0Tf-OvWlklHzw,12519
193
+ veadk/tracing/telemetry/telemetry.py,sha256=MeMQLHlYOdAW8F2OCatoVxWeCK5I_Vkg4KutLb6wrbk,15870
194
+ veadk/tracing/telemetry/attributes/attributes.py,sha256=t08vbKenendKdlUrs3Q94p5F8TZEjh-oewBE5ABWDsE,1074
195
+ veadk/tracing/telemetry/attributes/extractors/common_attributes_extractors.py,sha256=L2Xtj5A5SMW_wBjSSUpM5-vA81pOHXqie8-r8FBS35A,6062
196
+ veadk/tracing/telemetry/attributes/extractors/llm_attributes_extractors.py,sha256=p48ak28tQV2-Wi5xvgRocgGV1r_bhGPIF9nPqypKlS0,34681
197
+ veadk/tracing/telemetry/attributes/extractors/tool_attributes_extractors.py,sha256=7KtjmbqfcG6MvwIb0d7DFpP4f9Lg8v53_cyAnGCnZzU,5479
198
+ veadk/tracing/telemetry/attributes/extractors/types.py,sha256=ZIxX6u0Evp5a7Lxy1fkmmZY4CHYhF12EDjVdFabW-_k,6867
199
+ veadk/tracing/telemetry/exporters/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
200
+ veadk/tracing/telemetry/exporters/apmplus_exporter.py,sha256=RozUrhFxM123xKpCdxF5u7GM4nsTvRppIwJvA-FBBZA,21075
201
+ veadk/tracing/telemetry/exporters/base_exporter.py,sha256=RR5Q_6K_SB6RC11GF6xOaR1HFn0LjqeBlf9557PAhEw,1538
202
+ veadk/tracing/telemetry/exporters/cozeloop_exporter.py,sha256=oR6egen8SRm4PvyloGMsabni_-ejRVoA3lcdASNqoA4,4969
203
+ veadk/tracing/telemetry/exporters/inmemory_exporter.py,sha256=fpURcnfgZKak9fVbzXMghKrVFRm-K1ZY2eO9PMZm5Ao,9697
204
+ veadk/tracing/telemetry/exporters/tls_exporter.py,sha256=03OkGJg-i3DzZp4u7CyPuZ0h7rLt6oYbLqR4PUDxkeQ,5398
205
+ veadk/utils/__init__.py,sha256=pkSabKw7_ai4NOo56pXKL40EcaxIDh6HYxPXOY7qWbo,634
206
+ veadk/utils/audio_manager.py,sha256=QJ2EOrKCUTO7_vVn29TFu73kPoaBuqddrR5pj2F-_No,2852
207
+ veadk/utils/auth.py,sha256=4wBWgXnvYoUO54mEcIFgkvuLWdKxW3WGaTL7pTMJN3k,9808
208
+ veadk/utils/logger.py,sha256=e4swzeXa-qZ1U2-TDBtfKOurzy4_6t4qPJR9yngNfVg,1605
209
+ veadk/utils/mcp_utils.py,sha256=aET7pX3LXmRe2-Jh7_xRvxrVyl1dN7uPAUk16luwMlQ,1525
210
+ veadk/utils/misc.py,sha256=CiNxb20ufWyN_XC5ok6jREUbAotp1KN-RZGViGgAWk4,5665
211
+ veadk/utils/patches.py,sha256=qC0PjStYiJyBQufDnXpTy3UFZqgMjsAfiWw6hMc0WEQ,3595
212
+ veadk/utils/volcengine_sign.py,sha256=3xn6ca2OAg_AFyP2dqFTSioqkeDel_BoKURUtCcO-EQ,6736
213
+ veadk_python-0.2.27.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
214
+ veadk_python-0.2.27.dist-info/METADATA,sha256=5BsydSo2n7C6dQKpRbNbhVRnnKtMdklmFqzdUI0lR4w,18513
215
+ veadk_python-0.2.27.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
216
+ veadk_python-0.2.27.dist-info/entry_points.txt,sha256=-g28D6dNV-2UvAiRP9VF0oOVSDSJ5zlLUIZ34ArAqF8,46
217
+ veadk_python-0.2.27.dist-info/top_level.txt,sha256=Qqi3ycJ4anKiZWBXtUBIy8zK9ZuXJsFa05oFq8O8qqY,6
218
+ veadk_python-0.2.27.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,2 @@
1
+ [console_scripts]
2
+ veadk = veadk.cli.cli:veadk
@@ -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 @@
1
+ veadk