veadk-python 0.2.1__tar.gz → 0.2.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of veadk-python might be problematic. Click here for more details.

Files changed (580) hide show
  1. veadk_python-0.2.4/PKG-INFO +345 -0
  2. {veadk_python-0.2.1 → veadk_python-0.2.4}/README.md +10 -0
  3. {veadk_python-0.2.1 → veadk_python-0.2.4}/pyproject.toml +18 -13
  4. {veadk_python-0.2.1 → veadk_python-0.2.4}/tests/test_agent.py +0 -4
  5. {veadk_python-0.2.1 → veadk_python-0.2.4}/tests/test_cloud.py +3 -3
  6. {veadk_python-0.2.1 → veadk_python-0.2.4}/tests/test_evaluator.py +2 -2
  7. {veadk_python-0.2.1 → veadk_python-0.2.4}/tests/test_tracing.py +3 -3
  8. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/__init__.py +9 -3
  9. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/a2a/remote_ve_agent.py +1 -1
  10. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/a2a/ve_a2a_server.py +0 -2
  11. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/agent.py +13 -20
  12. veadk_python-0.2.4/veadk/agents/loop_agent.py +55 -0
  13. veadk_python-0.2.4/veadk/agents/parallel_agent.py +60 -0
  14. veadk_python-0.2.4/veadk/agents/sequential_agent.py +55 -0
  15. veadk_python-0.2.1/veadk/utils/misc.py → veadk_python-0.2.4/veadk/cli/cli.py +20 -13
  16. veadk_python-0.2.4/veadk/cli/cli_deploy.py +158 -0
  17. veadk_python-0.2.4/veadk/cli/cli_init.py +106 -0
  18. veadk_python-0.2.4/veadk/cli/cli_prompt.py +64 -0
  19. veadk_python-0.2.4/veadk/cli/cli_web.py +181 -0
  20. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/cloud/cloud_agent_engine.py +77 -42
  21. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/cloud/cloud_app.py +37 -6
  22. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/database/database_adapter.py +2 -2
  23. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/database/kv/redis_database.py +12 -9
  24. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/database/relational/mysql_database.py +10 -9
  25. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/database/vector/opensearch_vector_database.py +14 -7
  26. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/database/viking/viking_database.py +23 -17
  27. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/database/viking/viking_memory_db.py +9 -9
  28. {veadk_python-0.2.1/veadk/cli/services/agentpilot → veadk_python-0.2.4/veadk/evaluation/adk_evaluator}/__init__.py +2 -2
  29. veadk_python-0.2.4/veadk/evaluation/adk_evaluator/adk_evaluator.py +239 -0
  30. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/evaluation/base_evaluator.py +36 -29
  31. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/evaluation/deepeval_evaluator/deepeval_evaluator.py +8 -5
  32. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/evaluation/utils/prometheus.py +1 -4
  33. veadk_python-0.2.4/veadk/integrations/ve_faas/template/cookiecutter.json +11 -0
  34. veadk_python-0.2.4/veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/config.yaml.example +6 -0
  35. veadk_python-0.2.4/veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/deploy.py +103 -0
  36. veadk_python-0.2.4/veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/agent.py +25 -0
  37. veadk_python-0.2.4/veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/app.py +176 -0
  38. veadk_python-0.2.4/veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/requirements.txt +1 -0
  39. veadk_python-0.2.4/veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/run.sh +50 -0
  40. veadk_python-0.2.4/veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/{{ cookiecutter.app_name|replace('-', '_') }}/__init__.py +14 -0
  41. veadk_python-0.2.1/veadk/cli/services/vefaas/template/src/agent.py → veadk_python-0.2.4/veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/{{ cookiecutter.app_name|replace('-', '_') }}/agent.py +8 -6
  42. veadk_python-0.2.1/veadk/cli/services/vefaas/vefaas.py → veadk_python-0.2.4/veadk/integrations/ve_faas/ve_faas.py +19 -6
  43. veadk_python-0.2.1/veadk/cli/services/agentpilot/agentpilot.py → veadk_python-0.2.4/veadk/integrations/ve_prompt_pilot/ve_prompt_pilot.py +5 -6
  44. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/knowledgebase/knowledgebase.py +3 -5
  45. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/memory/long_term_memory.py +5 -2
  46. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/memory/short_term_memory.py +3 -7
  47. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/memory/short_term_memory_processor.py +7 -2
  48. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/prompts/prompt_optimization.py +11 -19
  49. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/runner.py +136 -69
  50. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/tools/load_knowledgebase_tool.py +3 -2
  51. veadk_python-0.2.4/veadk/tracing/base_tracer.py +50 -0
  52. veadk_python-0.2.1/veadk/cli/services/veapig/__init__.py → veadk_python-0.2.4/veadk/tracing/telemetry/attributes/attributes.py +14 -2
  53. veadk_python-0.2.4/veadk/tracing/telemetry/attributes/extractors/common_attributes_extractors.py +71 -0
  54. veadk_python-0.2.4/veadk/tracing/telemetry/attributes/extractors/llm_attributes_extractors.py +392 -0
  55. veadk_python-0.2.4/veadk/tracing/telemetry/attributes/extractors/tool_attributes_extractors.py +70 -0
  56. veadk_python-0.2.4/veadk/tracing/telemetry/attributes/extractors/types.py +75 -0
  57. veadk_python-0.2.4/veadk/tracing/telemetry/exporters/apmplus_exporter.py +157 -0
  58. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/tracing/telemetry/exporters/base_exporter.py +12 -9
  59. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/tracing/telemetry/exporters/cozeloop_exporter.py +20 -16
  60. veadk_python-0.2.4/veadk/tracing/telemetry/exporters/inmemory_exporter.py +108 -0
  61. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/tracing/telemetry/exporters/tls_exporter.py +20 -21
  62. veadk_python-0.2.4/veadk/tracing/telemetry/opentelemetry_tracer.py +195 -0
  63. veadk_python-0.2.4/veadk/tracing/telemetry/telemetry.py +149 -0
  64. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/types.py +25 -1
  65. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/utils/mcp_utils.py +1 -1
  66. veadk_python-0.2.4/veadk/utils/misc.py +62 -0
  67. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/utils/patches.py +24 -29
  68. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/version.py +1 -1
  69. veadk_python-0.2.4/veadk_python.egg-info/PKG-INFO +345 -0
  70. veadk_python-0.2.4/veadk_python.egg-info/SOURCES.txt +136 -0
  71. veadk_python-0.2.4/veadk_python.egg-info/entry_points.txt +2 -0
  72. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk_python.egg-info/requires.txt +8 -8
  73. veadk_python-0.2.1/PKG-INFO +0 -133
  74. veadk_python-0.2.1/veadk/__pycache__/__init__.cpython-310.pyc +0 -0
  75. veadk_python-0.2.1/veadk/__pycache__/agent.cpython-310.pyc +0 -0
  76. veadk_python-0.2.1/veadk/__pycache__/config.cpython-310.pyc +0 -0
  77. veadk_python-0.2.1/veadk/__pycache__/consts.cpython-310.pyc +0 -0
  78. veadk_python-0.2.1/veadk/__pycache__/runner.cpython-310.pyc +0 -0
  79. veadk_python-0.2.1/veadk/__pycache__/types.cpython-310.pyc +0 -0
  80. veadk_python-0.2.1/veadk/__pycache__/version.cpython-310.pyc +0 -0
  81. veadk_python-0.2.1/veadk/a2a/__pycache__/__init__.cpython-310.pyc +0 -0
  82. veadk_python-0.2.1/veadk/a2a/__pycache__/agent_card.cpython-310.pyc +0 -0
  83. veadk_python-0.2.1/veadk/a2a/__pycache__/remote_ve_agent.cpython-310.pyc +0 -0
  84. veadk_python-0.2.1/veadk/cli/__pycache__/__init__.cpython-310.pyc +0 -0
  85. veadk_python-0.2.1/veadk/cli/__pycache__/main.cpython-310.pyc +0 -0
  86. veadk_python-0.2.1/veadk/cli/main.py +0 -379
  87. veadk_python-0.2.1/veadk/cli/services/agentpilot/__pycache__/__init__.cpython-310.pyc +0 -0
  88. veadk_python-0.2.1/veadk/cli/services/agentpilot/__pycache__/agentpilot.cpython-310.pyc +0 -0
  89. veadk_python-0.2.1/veadk/cli/services/veapig/__pycache__/__init__.cpython-310.pyc +0 -0
  90. veadk_python-0.2.1/veadk/cli/services/veapig/__pycache__/apig.cpython-310.pyc +0 -0
  91. veadk_python-0.2.1/veadk/cli/services/vefaas/__init__.py +0 -17
  92. veadk_python-0.2.1/veadk/cli/services/vefaas/__pycache__/__init__.cpython-310.pyc +0 -0
  93. veadk_python-0.2.1/veadk/cli/services/vefaas/__pycache__/vefaas.cpython-310.pyc +0 -0
  94. veadk_python-0.2.1/veadk/cli/services/vefaas/__pycache__/vefaas_utils.cpython-310.pyc +0 -0
  95. veadk_python-0.2.1/veadk/cli/services/vefaas/template/README.md +0 -37
  96. veadk_python-0.2.1/veadk/cli/services/vefaas/template/config.yaml.example +0 -19
  97. veadk_python-0.2.1/veadk/cli/services/vefaas/template/deploy.py +0 -58
  98. veadk_python-0.2.1/veadk/cli/services/vefaas/template/src/__init__.py +0 -14
  99. veadk_python-0.2.1/veadk/cli/services/vefaas/template/src/__pycache__/agent.cpython-310.pyc +0 -0
  100. veadk_python-0.2.1/veadk/cli/services/vefaas/template/src/__pycache__/studio_app.cpython-310.pyc +0 -0
  101. veadk_python-0.2.1/veadk/cli/services/vefaas/template/src/app.py +0 -70
  102. veadk_python-0.2.1/veadk/cli/services/vefaas/template/src/requirements.txt +0 -6
  103. veadk_python-0.2.1/veadk/cli/services/vefaas/template/src/run.sh +0 -63
  104. veadk_python-0.2.1/veadk/cli/services/vefaas/template/src/studio_app.py +0 -47
  105. veadk_python-0.2.1/veadk/cli/services/vetls/__init__.py +0 -17
  106. veadk_python-0.2.1/veadk/cli/services/vetls/vetls.py +0 -87
  107. veadk_python-0.2.1/veadk/cli/studio/__pycache__/__init__.cpython-310.pyc +0 -0
  108. veadk_python-0.2.1/veadk/cli/studio/__pycache__/fast_api.cpython-310.pyc +0 -0
  109. veadk_python-0.2.1/veadk/cli/studio/__pycache__/models.cpython-310.pyc +0 -0
  110. veadk_python-0.2.1/veadk/cli/studio/__pycache__/studio_processor.cpython-310.pyc +0 -0
  111. veadk_python-0.2.1/veadk/cli/studio/fast_api.py +0 -392
  112. veadk_python-0.2.1/veadk/cli/studio/models.py +0 -76
  113. veadk_python-0.2.1/veadk/cli/studio/studio_processor.py +0 -127
  114. veadk_python-0.2.1/veadk/cli/studio/web/404.html +0 -1
  115. veadk_python-0.2.1/veadk/cli/studio/web/__pycache__/__init__.cpython-310.pyc +0 -0
  116. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1012.1c22f40693022876.js +0 -1
  117. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1017.577d2551c3a2b396.js +0 -1
  118. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1044.7c49605a0f9b5d5c.js +0 -1
  119. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1067.71aee8d185b3a9d7.js +0 -1
  120. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1088.8f7f3c71458d301b.js +0 -1
  121. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1092.7b553ab1ec1737bf.js +0 -1
  122. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1117.8c537e259adccbe2.js +0 -1
  123. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1142.1faf8d46ccf4030c.js +0 -1
  124. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1146.25bf08c82f4ad1c5.js +0 -1
  125. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1192.55e7712b3dc8b6a8.js +0 -1
  126. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1200.1038681512a9f69a.js +0 -1
  127. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1265.e055670c82b2d131.js +0 -1
  128. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1275.322d8bf8a580b859.js +0 -1
  129. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/140.d7e90f5e12cf288c.js +0 -1
  130. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1421.7fff0e9f0677f79b.js +0 -1
  131. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1469.16c1e07a7c0f9817.js +0 -1
  132. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1480.3c94a6d6d61c4f56.js +0 -1
  133. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1507.4c7617217de3bef8.js +0 -1
  134. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1523.1740f3d9d913fe76.js +0 -1
  135. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1526.5fb34657a70589b5.js +0 -1
  136. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1563.6c364e96b33f3328.js +0 -1
  137. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/157.2e3f508bc115c15c.js +0 -1
  138. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1577.b6cebda169ac9c75.js +0 -1
  139. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1622.a611b4dab478587d.js +0 -1
  140. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1685.db5d4efe2f0e3767.js +0 -1
  141. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1687.a10254d4e1dd84c0.js +0 -1
  142. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1826.da2ac0fcfb59cfae.js +0 -1
  143. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1832.f81112d6166a9563.js +0 -1
  144. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1851.1d0bdfdf5fa89313.js +0 -1
  145. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/189.c602a68aadf321e4.js +0 -1
  146. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1899.dd303f08095745bc.js +0 -1
  147. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/193.1e81c5b253db2ee7.js +0 -1
  148. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1936.8fad6d3898c86483.js +0 -1
  149. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1942.165056b632c269d4.js +0 -1
  150. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/1974.ee28ba5ac111af70.js +0 -1
  151. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2.c2afe2e24520b5de.js +0 -1
  152. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2006.298ac00a777dc313.js +0 -1
  153. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2063.69ba443b7901194c.js +0 -1
  154. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2067-e02b0bc96d886930.js +0 -91
  155. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2119.4595d21bc0340c5b.js +0 -1
  156. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/212.0a8d6163667d9369.js +0 -1
  157. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2190.5549f7a57901bd46.js +0 -1
  158. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2193.51ce38cc9e965abd.js +0 -1
  159. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2202.a6c08676680e55ad.js +0 -1
  160. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2247.af410bd18c38e538.js +0 -1
  161. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2313.6932520daf0fa88c.js +0 -1
  162. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2316.c9eafa57971eebc8.js +0 -1
  163. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2324.766859688506ac0d.js +0 -1
  164. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2328.131b0296bc19ba4e.js +0 -1
  165. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2332.b9b7ac0b386a4a28.js +0 -1
  166. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2344.cc417c70cb6dbc51.js +0 -1
  167. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2347.9f442b75b11de668.js +0 -1
  168. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2356.f6b4ac7eb50edb44.js +0 -1
  169. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2370.044b34646bc58363.js +0 -1
  170. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2378.2005af4d2bf100dd.js +0 -1
  171. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2437.68534e42d45c5c61.js +0 -1
  172. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2449.db460ea54b851bc1.js +0 -1
  173. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2455.153b04863d2ae9dc.js +0 -1
  174. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2484.139843b3f1cc8ea5.js +0 -1
  175. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2500.e2b8da0d1401bd5f.js +0 -1
  176. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2513.a7056ff98b04c4cd.js +0 -1
  177. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2533.5e35d247414428d0.js +0 -1
  178. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2541.3e5a23b461d7a9fd.js +0 -1
  179. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2545.0e4e3a784391205b.js +0 -1
  180. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2558.17eda1052d7c8c1f.js +0 -1
  181. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2559.7432df2540cfff07.js +0 -1
  182. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2578.1be0687e71bc7731.js +0 -1
  183. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2601.aa7e57bdf472372c.js +0 -1
  184. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/261-19b52c2c85aefb5d.js +0 -1
  185. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2642.9ea0966ca6bd8ace.js +0 -1
  186. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2669.e90ab188be48154e.js +0 -1
  187. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2737.4f5c7f7b9293ae65.js +0 -1
  188. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2804.b801cadc26133d92.js +0 -1
  189. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2817.8584109b4bc979e8.js +0 -1
  190. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/282.cfff86fab979470f.js +0 -1
  191. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2822.12cdf0520b2d321a.js +0 -1
  192. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/288.5c1053dbdc74212b.js +0 -1
  193. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2964.a531dbf5eb867f3d.js +0 -1
  194. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/2f7605f3.0531565b22967bb4.js +0 -1
  195. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/3080.9aada68cdc9ad5c2.js +0 -1
  196. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/3090.a9e7f71df818f607.js +0 -1
  197. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/3103.b7cdb76d87ac0fdd.js +0 -1
  198. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/311.2737abd09304ba1b.js +0 -1
  199. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/3110.84511591e516221b.js +0 -1
  200. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/3126.307ac469edcf6ec9.js +0 -1
  201. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/320.a3c0085ebf05b7da.js +0 -1
  202. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/322.668c1a20cc012c68.js +0 -1
  203. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/3341.a0f06b1edc2332fb.js +0 -1
  204. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/3357.ced93e6bf8e56762.js +0 -1
  205. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/3386.53f3aa4ff0dd0170.js +0 -1
  206. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/3391.402e02fd7c297ff8.js +0 -1
  207. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/3392.5172b1d190ff0e8c.js +0 -1
  208. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/33fb68d2.aacf24a5979288bd.js +0 -1
  209. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/3429.74dcaa985d188e43.js +0 -1
  210. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/3433.737c3d948bdda1da.js +0 -1
  211. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/3435.1798454b9a5b69ca.js +0 -1
  212. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/3481.a916f933c4e534b8.js +0 -1
  213. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/3602.bdf28129f1569554.js +0 -1
  214. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/3607.49cec7e9330d1f4d.js +0 -1
  215. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/3615.3280752d551adf2d.js +0 -1
  216. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/3721.f660b5b05621f5e4.js +0 -1
  217. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/3786.ae0824e683556d37.js +0 -1
  218. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/3805.ec0340f0f6e61bbc.js +0 -1
  219. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/4045.42a3c9fb7d932ebc.js +0 -1
  220. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/4052.86cc820c95ad25a8.js +0 -1
  221. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/4058.3cea468f5370b7c9.js +0 -1
  222. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/4068.ff830b92579f6b7f.js +0 -1
  223. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/411.5679da8e6a856022.js +0 -1
  224. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/4118.e2544434642f6640.js +0 -1
  225. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/4139.80b0aab26d9a4601.js +0 -1
  226. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/423.da4e0abf5fd408dc.js +0 -1
  227. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/4262.9d5532cb76a86371.js +0 -1
  228. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/431.ef6d705ac627958f.js +0 -1
  229. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/4337.3c94a6d6d61c4f56.js +0 -1
  230. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/4357-39eb6b5934ac97db.js +0 -1
  231. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/4382.64908590e0a18d66.js +0 -1
  232. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/4489.7a9b45fb6f6bf491.js +0 -1
  233. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/450.76880cb957b128fa.js +0 -1
  234. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/452.14fb00ee415ad32b.js +0 -1
  235. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/4577.d1cbd95a87e2adb2.js +0 -1
  236. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/4626.0866c7ee38885775.js +0 -1
  237. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/4627.3d7df52a668a6b57.js +0 -1
  238. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/4713.3891f7d347513ef5.js +0 -1
  239. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/4749.25fd94a8ed476b13.js +0 -1
  240. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/4836.afe027e38fb9a7e8.js +0 -1
  241. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/483e0093.2a09b17ad5d1b3ed.js +0 -1
  242. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/4852.cac6e9c5032df796.js +0 -1
  243. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/4860.94324451a00fadc0.js +0 -1
  244. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/4869.091903cb36ad77ad.js +0 -1
  245. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/4888.e248e212b002f5df.js +0 -1
  246. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/492.ac958937dd36300f.js +0 -1
  247. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/4958.85e0dbc8b2319776.js +0 -1
  248. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/4968.1477e29640b2deb8.js +0 -1
  249. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/4980.1300ab7d9c76e523.js +0 -1
  250. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/4aa6d3c9.dade76a8ff4112d3.js +0 -1
  251. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5006.8ee1d611f529da11.js +0 -1
  252. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5018.c34d2a9f82e24c51.js +0 -1
  253. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5050.c06b2d8e12720555.js +0 -1
  254. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5084.9b554002148843ea.js +0 -1
  255. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5097.2e9a097ccfb70707.js +0 -1
  256. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5113.fa5291624248676b.js +0 -1
  257. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5115.ff49cf5e2be16db4.js +0 -1
  258. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/521.98b7995e15b59075.js +0 -1
  259. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5213.1a7618fcae8c5282.js +0 -1
  260. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/522.56063fbcf9aa8699.js +0 -1
  261. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5247.b304f94eb3132618.js +0 -1
  262. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5248.f9faaff2f0d7631f.js +0 -1
  263. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/527-1c65afbb202752bd.js +0 -1
  264. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/529.7d231c2076b6d77a.js +0 -1
  265. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5305.9323b5f7efaa005e.js +0 -1
  266. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5317.fce75000492e9db4.js +0 -1
  267. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5326.3be5b04850f0a2f2.js +0 -1
  268. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5329.415b43aacdd9a471.js +0 -1
  269. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5331.77f0493c99857944.js +0 -1
  270. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5341.1fff90ab37947f62.js +0 -1
  271. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/541.04d938e895b7f678.js +0 -1
  272. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5428.fa789e4b0d61cd0d.js +0 -1
  273. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5460.cee07b9411c5c5ca.js +0 -1
  274. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5472.f645717ad2edd28f.js +0 -1
  275. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5503.75093ef3870b655f.js +0 -1
  276. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5567.44555d5da6ed19b7.js +0 -1
  277. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5572.3c35c26a4867ca56.js +0 -1
  278. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5579.b3be6028d1833118.js +0 -1
  279. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5631.b8a2c0dc65737269.js +0 -1
  280. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5656.b743b6ab9a61eec0.js +0 -1
  281. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5677.c063822912e55a25.js +0 -1
  282. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5779.0b1a3c7d1c018a1d.js +0 -1
  283. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5817.ae1fb69a154fbf4c.js +0 -1
  284. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5860.7154866a5d2dd82f.js +0 -1
  285. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5865.645e44e8e171ba9f.js +0 -1
  286. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5906.30cce16ed88f920a.js +0 -1
  287. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5942.cd6dfaad76581849.js +0 -1
  288. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/5958.e2f981fa3cba5d99.js +0 -1
  289. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/60f90b65.d526f39688baa769.js +0 -1
  290. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6128.3da302fb50769250.js +0 -1
  291. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/62.5408e55d383a8078.js +0 -1
  292. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/624.7c7198473a8877d8.js +0 -1
  293. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6264.e7bdd878d9e7a249.js +0 -1
  294. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6266.97409ca00a3c32d9.js +0 -1
  295. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6269.668be917daafccaa.js +0 -1
  296. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/630.87a6f22ac3e8956b.js +0 -1
  297. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6341.35afa02112051be8.js +0 -1
  298. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6353.93869a804ffe525b.js +0 -1
  299. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6375.46d2897cb2526abd.js +0 -1
  300. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6395.f113970ceec6ba91.js +0 -1
  301. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/63d31579-18fb2181524a9c6f.js +0 -1
  302. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6423.d4cf9eb5b2ae6336.js +0 -1
  303. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6437.5eeaa7320bce1872.js +0 -1
  304. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6438.1c8486cc62da4117.js +0 -1
  305. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6451.f56cce0a07138982.js +0 -1
  306. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6456.f263b33ea51e4f54.js +0 -1
  307. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6504.0e6ae8d5bb987be6.js +0 -1
  308. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6560.b08504c0d99d71d4.js +0 -1
  309. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6563.e6d3bdba9860590d.js +0 -1
  310. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6621.639e4057d9c15bea.js +0 -1
  311. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6625.c0233245d2c1ef25.js +0 -1
  312. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6641.5487a2d68b0c52f2.js +0 -1
  313. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6644.74de9f2de2dc75f5.js +0 -1
  314. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6730.aac5bd02aab8258f.js +0 -1
  315. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6824.8c40dbd3eb390403.js +0 -1
  316. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6831.74b4a9b75f4ff9d1.js +0 -1
  317. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/688.9a27292bd19bc993.js +0 -1
  318. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6899.ac4207b9a778bd0e.js +0 -1
  319. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6901.4755ed550912589c.js +0 -1
  320. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6910.5d45b17e287dba94.js +0 -1
  321. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6928.d0a540480df90930.js +0 -1
  322. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6958.c58e8e991b201429.js +0 -1
  323. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/6d60d248-1bbd761ee88ab2e4.js +0 -1
  324. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/70207789-862965aac548ab2a.js +0 -1
  325. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/7046.60a892c1e506cf5f.js +0 -1
  326. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/7068.6639b51e828de233.js +0 -1
  327. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/7172.aeda2e49d81fc0fd.js +0 -1
  328. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/7185.0210768f3918ec41.js +0 -1
  329. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/7200.86e672d8e2c1a920.js +0 -1
  330. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/730.2c5e46bf8fd29fcc.js +0 -1
  331. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/7301.43929cd9c2a5d2ea.js +0 -1
  332. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/7335.68692b193fa0dff6.js +0 -1
  333. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/7412.98554f6ee574e288.js +0 -1
  334. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/7422.e4a69fce6694ba90.js +0 -1
  335. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/7448.63e7b8d5fd090bd1.js +0 -1
  336. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/7479.97f696c6ada04b29.js +0 -1
  337. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/7482.ab6a217c34f6934a.js +0 -1
  338. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/7484.b91675bd38b250f8.js +0 -1
  339. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/7522.84dac217ae0701ac.js +0 -1
  340. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/7540-38c13446d29f43f2.js +0 -1
  341. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/7556.ae47807e378de233.js +0 -1
  342. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/761.2ce77249f8d3a1ce.js +0 -1
  343. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/7678.ceea70830f2dd7ff.js +0 -1
  344. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/7684.c43e4b5ad1f9b0af.js +0 -1
  345. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/7698.44201098b212aee8.js +0 -1
  346. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/76ff44ea.8322bdedaee78e2d.js +0 -1
  347. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/7725.b15cb8b6e1d15403.js +0 -1
  348. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/7855.513a507852c649f2.js +0 -1
  349. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/7910.266df3f992c16215.js +0 -1
  350. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/7940.f490f3d5e6590e54.js +0 -1
  351. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/7960.491bd15bef82755c.js +0 -1
  352. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/8020.795778775ed5c387.js +0 -1
  353. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/8107.fbb6017b3e909da5.js +0 -1
  354. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/8169.4d7fd139784eb935.js +0 -1
  355. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/8196.6c5c3dfe86e1c3ca.js +0 -1
  356. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/8257.ee682bc2599473cb.js +0 -1
  357. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/8305.d2c965e56fe9350c.js +0 -1
  358. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/8324.8c3edcc756f5e2f3.js +0 -1
  359. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/8388.cc59fb03d62a71cf.js +0 -1
  360. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/8394.d5ca17ce8f6fffb0.js +0 -1
  361. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/8419.b11c64d18dc580b5.js +0 -1
  362. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/8478.5f4272ae9afa4061.js +0 -1
  363. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/8480.a071150cb4eddc29.js +0 -1
  364. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/8535.0ab856b7bf0e161b.js +0 -1
  365. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/8571.8af7983b03c09f86.js +0 -1
  366. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/8583.4afa8c68cb867b2d.js +0 -1
  367. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/8601.520cbfc8abbfb5f8.js +0 -1
  368. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/8656.5f8b6212d2b35257.js +0 -1
  369. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/8665.7f24febc4a78ff5e.js +0 -1
  370. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/8687.c94010eb559245b6.js +0 -1
  371. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/8815.81a5c5700763ca02.js +0 -1
  372. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/8878.28a43a5fe23f5bd0.js +0 -1
  373. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/8884.e4e411c7978b2552.js +0 -1
  374. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/8962.db5c7728bef5ff0b.js +0 -1
  375. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/8984.dfcb15f115089c4a.js +0 -1
  376. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/9022.d161e32a6b1bcc61.js +0 -1
  377. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/9099.8ba5be825d17456a.js +0 -1
  378. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/914.72991ff6c9332951.js +0 -1
  379. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/9217.40b78a38cadcd268.js +0 -1
  380. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/925.0cc74592f03b10e9.js +0 -1
  381. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/9275.ac60c49c68c86e51.js +0 -1
  382. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/92a17e6d.da4fba322f70cd46.js +0 -1
  383. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/92b95f17.39f98387a9867b4a.js +0 -1
  384. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/9361.d3535e4d87c1c527.js +0 -1
  385. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/9433.55eb6e4ea7edb262.js +0 -1
  386. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/9436.5b2462fa3ddebb27.js +0 -1
  387. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/9445.e29312f685c22eff.js +0 -1
  388. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/9471.646bdfb962cdd5c2.js +0 -1
  389. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/9473.efa6db413edc23d1.js +0 -1
  390. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/9484.e9f1cd4e3f8e75df.js +0 -1
  391. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/9545.61026f3c11f914f2.js +0 -1
  392. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/9555.287e4e4a50087d62.js +0 -1
  393. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/963.da40bca273fb82c6.js +0 -1
  394. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/9636.4d3678b9a4e0b46e.js +0 -1
  395. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/9657.459d6300b0bc8ef8.js +0 -1
  396. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/9676.cef4d87274c64417.js +0 -1
  397. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/97.15df9ee2f6270421.js +0 -1
  398. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/9754.76a3ea33dc0e9a07.js +0 -1
  399. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/9790.7e01549d70279760.js +0 -1
  400. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/9871.994068e90ef076a5.js +0 -1
  401. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/9887.0fbd7c3721a3c1d1.js +0 -1
  402. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/9923.14c88b64d7749eaa.js +0 -1
  403. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/997.193727d4b2eede68.js +0 -1
  404. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/9971.36f503837f73d3c2.js +0 -1
  405. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/9976.ab4ec59ede08f398.js +0 -1
  406. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/9990.13e025853b0250b6.js +0 -1
  407. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/9997.a844d058b46bb680.js +0 -1
  408. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/app/_not-found/page-ce05b36a67c37396.js +0 -1
  409. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/app/layout-b0d50d105c55fd6d.js +0 -1
  410. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/app/page-7b51d29c96f44f61.js +0 -1
  411. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/app/run/page-c2cd4dca690d6d29.js +0 -1
  412. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/c06218ab.b1da50a91b579a52.js +0 -1
  413. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/c911d7bd.bcca2e3dda67a7a6.js +0 -1
  414. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/d386b14e.c746c93eac03a58e.js +0 -1
  415. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/e925550e.ff706051f5223d26.js +0 -1
  416. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/fc645be4-662fd2da08676daa.js +0 -1
  417. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/framework-2b8e4864be10152d.js +0 -1
  418. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/main-33072985ea766514.js +0 -1
  419. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/main-app-4a8ccba13aa7606b.js +0 -1
  420. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/pages/_app-c0ae3ec92f260128.js +0 -1
  421. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/pages/_error-899a04d491d7df58.js +0 -1
  422. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/polyfills-42372ed130431b0a.js +0 -1
  423. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/chunks/webpack-14afc8861a1fe293.js +0 -1
  424. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/css/366cfdd7fdd8bcac.css +0 -1
  425. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/gvLvin_lQcpkhQupQqPu1/_buildManifest.js +0 -1
  426. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/gvLvin_lQcpkhQupQqPu1/_ssgManifest.js +0 -1
  427. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/media/569ce4b8f30dc480-s.p.woff2 +0 -0
  428. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/media/747892c23ea88013-s.woff2 +0 -0
  429. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/media/8d697b304b401681-s.woff2 +0 -0
  430. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/media/93f479601ee12b01-s.p.woff2 +0 -0
  431. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/media/9610d9e46709d722-s.woff2 +0 -0
  432. veadk_python-0.2.1/veadk/cli/studio/web/_next/static/media/ba015fad6dcf6784-s.woff2 +0 -0
  433. veadk_python-0.2.1/veadk/cli/studio/web/favicon.ico +0 -0
  434. veadk_python-0.2.1/veadk/cli/studio/web/file.svg +0 -1
  435. veadk_python-0.2.1/veadk/cli/studio/web/globe.svg +0 -1
  436. veadk_python-0.2.1/veadk/cli/studio/web/index.html +0 -1
  437. veadk_python-0.2.1/veadk/cli/studio/web/index.txt +0 -43
  438. veadk_python-0.2.1/veadk/cli/studio/web/next.svg +0 -1
  439. veadk_python-0.2.1/veadk/cli/studio/web/run.html +0 -1
  440. veadk_python-0.2.1/veadk/cli/studio/web/run.txt +0 -44
  441. veadk_python-0.2.1/veadk/cli/studio/web/veadk-logo.png +0 -0
  442. veadk_python-0.2.1/veadk/cli/studio/web/vercel.svg +0 -1
  443. veadk_python-0.2.1/veadk/cli/studio/web/window.svg +0 -1
  444. veadk_python-0.2.1/veadk/cloud/__pycache__/__init__.cpython-310.pyc +0 -0
  445. veadk_python-0.2.1/veadk/cloud/__pycache__/cloud_agent_engine.cpython-310.pyc +0 -0
  446. veadk_python-0.2.1/veadk/cloud/__pycache__/cloud_app.cpython-310.pyc +0 -0
  447. veadk_python-0.2.1/veadk/database/__pycache__/__init__.cpython-310.pyc +0 -0
  448. veadk_python-0.2.1/veadk/database/__pycache__/base_database.cpython-310.pyc +0 -0
  449. veadk_python-0.2.1/veadk/database/__pycache__/database_adapter.cpython-310.pyc +0 -0
  450. veadk_python-0.2.1/veadk/database/__pycache__/database_factory.cpython-310.pyc +0 -0
  451. veadk_python-0.2.1/veadk/database/__pycache__/local_database.cpython-310.pyc +0 -0
  452. veadk_python-0.2.1/veadk/database/kv/__pycache__/__init__.cpython-310.pyc +0 -0
  453. veadk_python-0.2.1/veadk/database/relational/__pycache__/__init__.cpython-310.pyc +0 -0
  454. veadk_python-0.2.1/veadk/database/vector/__pycache__/__init__.cpython-310.pyc +0 -0
  455. veadk_python-0.2.1/veadk/database/vector/__pycache__/opensearch_vector_database.cpython-310.pyc +0 -0
  456. veadk_python-0.2.1/veadk/database/vector/__pycache__/type.cpython-310.pyc +0 -0
  457. veadk_python-0.2.1/veadk/database/viking/__pycache__/__init__.cpython-310.pyc +0 -0
  458. veadk_python-0.2.1/veadk/evaluation/__pycache__/__init__.cpython-310.pyc +0 -0
  459. veadk_python-0.2.1/veadk/evaluation/__pycache__/base_evaluator.cpython-310.pyc +0 -0
  460. veadk_python-0.2.1/veadk/evaluation/__pycache__/eval_set_file_loader.cpython-310.pyc +0 -0
  461. veadk_python-0.2.1/veadk/evaluation/__pycache__/eval_set_recorder.cpython-310.pyc +0 -0
  462. veadk_python-0.2.1/veadk/evaluation/__pycache__/types.cpython-310.pyc +0 -0
  463. veadk_python-0.2.1/veadk/evaluation/adk_evaluator/__pycache__/__init__.cpython-310.pyc +0 -0
  464. veadk_python-0.2.1/veadk/evaluation/adk_evaluator/adk_evaluator.py +0 -291
  465. veadk_python-0.2.1/veadk/evaluation/deepeval_evaluator/__pycache__/__init__.cpython-310.pyc +0 -0
  466. veadk_python-0.2.1/veadk/evaluation/deepeval_evaluator/__pycache__/deepeval_evaluator.cpython-310.pyc +0 -0
  467. veadk_python-0.2.1/veadk/evaluation/utils/__pycache__/prometheus.cpython-310.pyc +0 -0
  468. veadk_python-0.2.1/veadk/knowledgebase/__pycache__/__init__.cpython-310.pyc +0 -0
  469. veadk_python-0.2.1/veadk/knowledgebase/__pycache__/knowledgebase.cpython-310.pyc +0 -0
  470. veadk_python-0.2.1/veadk/knowledgebase/__pycache__/knowledgebase_database_adapter.cpython-310.pyc +0 -0
  471. veadk_python-0.2.1/veadk/memory/__pycache__/__init__.cpython-310.pyc +0 -0
  472. veadk_python-0.2.1/veadk/memory/__pycache__/long_term_memory.cpython-310.pyc +0 -0
  473. veadk_python-0.2.1/veadk/memory/__pycache__/memory_database_adapter.cpython-310.pyc +0 -0
  474. veadk_python-0.2.1/veadk/memory/__pycache__/short_term_memory.cpython-310.pyc +0 -0
  475. veadk_python-0.2.1/veadk/memory/__pycache__/short_term_memory_processor.cpython-310.pyc +0 -0
  476. veadk_python-0.2.1/veadk/prompts/__pycache__/__init__.cpython-310.pyc +0 -0
  477. veadk_python-0.2.1/veadk/prompts/__pycache__/agent_default_prompt.cpython-310.pyc +0 -0
  478. veadk_python-0.2.1/veadk/prompts/__pycache__/prompt_memory_processor.cpython-310.pyc +0 -0
  479. veadk_python-0.2.1/veadk/prompts/__pycache__/prompt_optimization.cpython-310.pyc +0 -0
  480. veadk_python-0.2.1/veadk/tools/__pycache__/__init__.cpython-310.pyc +0 -0
  481. veadk_python-0.2.1/veadk/tools/__pycache__/demo_tools.cpython-310.pyc +0 -0
  482. veadk_python-0.2.1/veadk/tools/__pycache__/load_knowledgebase_tool.cpython-310.pyc +0 -0
  483. veadk_python-0.2.1/veadk/tools/builtin_tools/__pycache__/__init__.cpython-310.pyc +0 -0
  484. veadk_python-0.2.1/veadk/tools/builtin_tools/__pycache__/lark.cpython-310.pyc +0 -0
  485. veadk_python-0.2.1/veadk/tools/builtin_tools/__pycache__/web_search.cpython-310.pyc +0 -0
  486. veadk_python-0.2.1/veadk/tools/sandbox/__pycache__/__init__.cpython-310.pyc +0 -0
  487. veadk_python-0.2.1/veadk/tracing/__pycache__/__init__.cpython-310.pyc +0 -0
  488. veadk_python-0.2.1/veadk/tracing/__pycache__/base_tracer.cpython-310.pyc +0 -0
  489. veadk_python-0.2.1/veadk/tracing/base_tracer.py +0 -213
  490. veadk_python-0.2.1/veadk/tracing/telemetry/__pycache__/__init__.cpython-310.pyc +0 -0
  491. veadk_python-0.2.1/veadk/tracing/telemetry/__pycache__/opentelemetry_tracer.cpython-310.pyc +0 -0
  492. veadk_python-0.2.1/veadk/tracing/telemetry/exporters/__pycache__/__init__.cpython-310.pyc +0 -0
  493. veadk_python-0.2.1/veadk/tracing/telemetry/exporters/__pycache__/apiserver_exporter.cpython-310.pyc +0 -0
  494. veadk_python-0.2.1/veadk/tracing/telemetry/exporters/__pycache__/apmplus_exporter.cpython-310.pyc +0 -0
  495. veadk_python-0.2.1/veadk/tracing/telemetry/exporters/__pycache__/base_exporter.cpython-310.pyc +0 -0
  496. veadk_python-0.2.1/veadk/tracing/telemetry/exporters/__pycache__/cozeloop_exporter.cpython-310.pyc +0 -0
  497. veadk_python-0.2.1/veadk/tracing/telemetry/exporters/__pycache__/inmemory_exporter.cpython-310.pyc +0 -0
  498. veadk_python-0.2.1/veadk/tracing/telemetry/exporters/__pycache__/tls_exporter.cpython-310.pyc +0 -0
  499. veadk_python-0.2.1/veadk/tracing/telemetry/exporters/apiserver_exporter.py +0 -60
  500. veadk_python-0.2.1/veadk/tracing/telemetry/exporters/apmplus_exporter.py +0 -101
  501. veadk_python-0.2.1/veadk/tracing/telemetry/exporters/inmemory_exporter.py +0 -85
  502. veadk_python-0.2.1/veadk/tracing/telemetry/metrics/__pycache__/__init__.cpython-310.pyc +0 -0
  503. veadk_python-0.2.1/veadk/tracing/telemetry/metrics/__pycache__/opentelemetry_metrics.cpython-310.pyc +0 -0
  504. veadk_python-0.2.1/veadk/tracing/telemetry/metrics/opentelemetry_metrics.py +0 -73
  505. veadk_python-0.2.1/veadk/tracing/telemetry/opentelemetry_tracer.py +0 -211
  506. veadk_python-0.2.1/veadk/utils/__pycache__/__init__.cpython-310.pyc +0 -0
  507. veadk_python-0.2.1/veadk/utils/__pycache__/logger.cpython-310.pyc +0 -0
  508. veadk_python-0.2.1/veadk/utils/__pycache__/mcp_utils.cpython-310.pyc +0 -0
  509. veadk_python-0.2.1/veadk/utils/__pycache__/misc.cpython-310.pyc +0 -0
  510. veadk_python-0.2.1/veadk/utils/__pycache__/patches.cpython-310.pyc +0 -0
  511. veadk_python-0.2.1/veadk/utils/__pycache__/volcengine_sign.cpython-310.pyc +0 -0
  512. veadk_python-0.2.1/veadk_python.egg-info/PKG-INFO +0 -133
  513. veadk_python-0.2.1/veadk_python.egg-info/SOURCES.txt +0 -548
  514. veadk_python-0.2.1/veadk_python.egg-info/entry_points.txt +0 -2
  515. {veadk_python-0.2.1 → veadk_python-0.2.4}/LICENSE +0 -0
  516. {veadk_python-0.2.1 → veadk_python-0.2.4}/setup.cfg +0 -0
  517. {veadk_python-0.2.1 → veadk_python-0.2.4}/tests/test_agent_card.py +0 -0
  518. {veadk_python-0.2.1 → veadk_python-0.2.4}/tests/test_knowledgebase.py +0 -0
  519. {veadk_python-0.2.1 → veadk_python-0.2.4}/tests/test_long_term_memory.py +0 -0
  520. {veadk_python-0.2.1 → veadk_python-0.2.4}/tests/test_multiple_agents.py +0 -0
  521. {veadk_python-0.2.1 → veadk_python-0.2.4}/tests/test_runner.py +0 -0
  522. {veadk_python-0.2.1 → veadk_python-0.2.4}/tests/test_runtime_data_collecting.py +0 -0
  523. {veadk_python-0.2.1 → veadk_python-0.2.4}/tests/test_short_term_memory.py +0 -0
  524. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/a2a/__init__.py +0 -0
  525. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/a2a/agent_card.py +0 -0
  526. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/a2a/ve_agent_executor.py +0 -0
  527. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/a2a/ve_task_store.py +0 -0
  528. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/cli/__init__.py +0 -0
  529. {veadk_python-0.2.1/veadk/cli/services/vefaas/template → veadk_python-0.2.4/veadk/cloud}/__init__.py +0 -0
  530. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/config.py +0 -0
  531. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/consts.py +0 -0
  532. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/database/__init__.py +0 -0
  533. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/database/base_database.py +0 -0
  534. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/database/database_factory.py +0 -0
  535. {veadk_python-0.2.1/veadk/cli/studio → veadk_python-0.2.4/veadk/database/kv}/__init__.py +0 -0
  536. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/database/local_database.py +0 -0
  537. {veadk_python-0.2.1/veadk/cli/studio/web → veadk_python-0.2.4/veadk/database/relational}/__init__.py +0 -0
  538. {veadk_python-0.2.1/veadk/cloud → veadk_python-0.2.4/veadk/database/vector}/__init__.py +0 -0
  539. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/database/vector/type.py +0 -0
  540. {veadk_python-0.2.1/veadk/database/kv → veadk_python-0.2.4/veadk/database/viking}/__init__.py +0 -0
  541. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/evaluation/__init__.py +0 -0
  542. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/evaluation/deepeval_evaluator/__init__.py +0 -0
  543. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/evaluation/eval_set_file_loader.py +0 -0
  544. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/evaluation/eval_set_recorder.py +0 -0
  545. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/evaluation/types.py +0 -0
  546. {veadk_python-0.2.1/veadk/database/relational → veadk_python-0.2.4/veadk/integrations/ve_apig}/__init__.py +0 -0
  547. /veadk_python-0.2.1/veadk/cli/services/veapig/apig.py → /veadk_python-0.2.4/veadk/integrations/ve_apig/ve_apig.py +0 -0
  548. /veadk_python-0.2.1/veadk/cli/services/veapig/apig_utils.py → /veadk_python-0.2.4/veadk/integrations/ve_apig/ve_apig_utils.py +0 -0
  549. {veadk_python-0.2.1/veadk/database/vector → veadk_python-0.2.4/veadk/integrations/ve_faas}/__init__.py +0 -0
  550. {veadk_python-0.2.1/veadk/database/viking → veadk_python-0.2.4/veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}}/__init__.py +0 -0
  551. {veadk_python-0.2.1/veadk/evaluation/adk_evaluator → veadk_python-0.2.4/veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src}/__init__.py +0 -0
  552. /veadk_python-0.2.1/veadk/cli/services/vefaas/vefaas_utils.py → /veadk_python-0.2.4/veadk/integrations/ve_faas/ve_faas_utils.py +0 -0
  553. {veadk_python-0.2.1/veadk/memory → veadk_python-0.2.4/veadk/integrations/ve_prompt_pilot}/__init__.py +0 -0
  554. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/knowledgebase/__init__.py +0 -0
  555. {veadk_python-0.2.1/veadk/prompts → veadk_python-0.2.4/veadk/memory}/__init__.py +0 -0
  556. {veadk_python-0.2.1/veadk/tools → veadk_python-0.2.4/veadk/prompts}/__init__.py +0 -0
  557. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/prompts/agent_default_prompt.py +0 -0
  558. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/prompts/prompt_evaluator.py +0 -0
  559. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/prompts/prompt_memory_processor.py +0 -0
  560. {veadk_python-0.2.1/veadk/tools/builtin_tools → veadk_python-0.2.4/veadk/tools}/__init__.py +0 -0
  561. {veadk_python-0.2.1/veadk/tools/sandbox → veadk_python-0.2.4/veadk/tools/builtin_tools}/__init__.py +0 -0
  562. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/tools/builtin_tools/lark.py +0 -0
  563. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/tools/builtin_tools/las.py +0 -0
  564. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/tools/builtin_tools/mcp_router.py +0 -0
  565. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/tools/builtin_tools/vesearch.py +0 -0
  566. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/tools/builtin_tools/web_scraper.py +0 -0
  567. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/tools/builtin_tools/web_search.py +0 -0
  568. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/tools/demo_tools.py +0 -0
  569. {veadk_python-0.2.1/veadk/tracing → veadk_python-0.2.4/veadk/tools/sandbox}/__init__.py +0 -0
  570. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/tools/sandbox/browser_sandbox.py +0 -0
  571. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/tools/sandbox/code_sandbox.py +0 -0
  572. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/tools/sandbox/computer_sandbox.py +0 -0
  573. {veadk_python-0.2.1/veadk/tracing/telemetry → veadk_python-0.2.4/veadk/tracing}/__init__.py +0 -0
  574. {veadk_python-0.2.1/veadk/tracing/telemetry/exporters → veadk_python-0.2.4/veadk/tracing/telemetry}/__init__.py +0 -0
  575. {veadk_python-0.2.1/veadk/tracing/telemetry/metrics → veadk_python-0.2.4/veadk/tracing/telemetry/exporters}/__init__.py +0 -0
  576. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/utils/__init__.py +0 -0
  577. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/utils/logger.py +0 -0
  578. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk/utils/volcengine_sign.py +0 -0
  579. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk_python.egg-info/dependency_links.txt +0 -0
  580. {veadk_python-0.2.1 → veadk_python-0.2.4}/veadk_python.egg-info/top_level.txt +0 -0
@@ -0,0 +1,345 @@
1
+ Metadata-Version: 2.4
2
+ Name: veadk-python
3
+ Version: 0.2.4
4
+ Summary: Volcengine agent development kit, integrations with Volcengine cloud services.
5
+ Author-email: Yaozheng Fang <fangyozheng@gmail.com>, Guodong Li <cu.eric.lee@gmail.com>, Zhi Han <sliverydayday@gmail.com>, Meng Wang <mengwangwm@gmail.com>
6
+ License: Apache License
7
+ Version 2.0, January 2004
8
+ http://www.apache.org/licenses/
9
+
10
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
11
+
12
+ 1. Definitions.
13
+
14
+ "License" shall mean the terms and conditions for use, reproduction,
15
+ and distribution as defined by Sections 1 through 9 of this document.
16
+
17
+ "Licensor" shall mean the copyright owner or entity authorized by
18
+ the copyright owner that is granting the License.
19
+
20
+ "Legal Entity" shall mean the union of the acting entity and all
21
+ other entities that control, are controlled by, or are under common
22
+ control with that entity. For the purposes of this definition,
23
+ "control" means (i) the power, direct or indirect, to cause the
24
+ direction or management of such entity, whether by contract or
25
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
26
+ outstanding shares, or (iii) beneficial ownership of such entity.
27
+
28
+ "You" (or "Your") shall mean an individual or Legal Entity
29
+ exercising permissions granted by this License.
30
+
31
+ "Source" form shall mean the preferred form for making modifications,
32
+ including but not limited to software source code, documentation
33
+ source, and configuration files.
34
+
35
+ "Object" form shall mean any form resulting from mechanical
36
+ transformation or translation of a Source form, including but
37
+ not limited to compiled object code, generated documentation,
38
+ and conversions to other media types.
39
+
40
+ "Work" shall mean the work of authorship, whether in Source or
41
+ Object form, made available under the License, as indicated by a
42
+ copyright notice that is included in or attached to the work
43
+ (an example is provided in the Appendix below).
44
+
45
+ "Derivative Works" shall mean any work, whether in Source or Object
46
+ form, that is based on (or derived from) the Work and for which the
47
+ editorial revisions, annotations, elaborations, or other modifications
48
+ represent, as a whole, an original work of authorship. For the purposes
49
+ of this License, Derivative Works shall not include works that remain
50
+ separable from, or merely link (or bind by name) to the interfaces of,
51
+ the Work and Derivative Works thereof.
52
+
53
+ "Contribution" shall mean any work of authorship, including
54
+ the original version of the Work and any modifications or additions
55
+ to that Work or Derivative Works thereof, that is intentionally
56
+ submitted to Licensor for inclusion in the Work by the copyright owner
57
+ or by an individual or Legal Entity authorized to submit on behalf of
58
+ the copyright owner. For the purposes of this definition, "submitted"
59
+ means any form of electronic, verbal, or written communication sent
60
+ to the Licensor or its representatives, including but not limited to
61
+ communication on electronic mailing lists, source code control systems,
62
+ and issue tracking systems that are managed by, or on behalf of, the
63
+ Licensor for the purpose of discussing and improving the Work, but
64
+ excluding communication that is conspicuously marked or otherwise
65
+ designated in writing by the copyright owner as "Not a Contribution."
66
+
67
+ "Contributor" shall mean Licensor and any individual or Legal Entity
68
+ on behalf of whom a Contribution has been received by Licensor and
69
+ subsequently incorporated within the Work.
70
+
71
+ 2. Grant of Copyright License. Subject to the terms and conditions of
72
+ this License, each Contributor hereby grants to You a perpetual,
73
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
74
+ copyright license to reproduce, prepare Derivative Works of,
75
+ publicly display, publicly perform, sublicense, and distribute the
76
+ Work and such Derivative Works in Source or Object form.
77
+
78
+ 3. Grant of Patent License. Subject to the terms and conditions of
79
+ this License, each Contributor hereby grants to You a perpetual,
80
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
81
+ (except as stated in this section) patent license to make, have made,
82
+ use, offer to sell, sell, import, and otherwise transfer the Work,
83
+ where such license applies only to those patent claims licensable
84
+ by such Contributor that are necessarily infringed by their
85
+ Contribution(s) alone or by combination of their Contribution(s)
86
+ with the Work to which such Contribution(s) was submitted. If You
87
+ institute patent litigation against any entity (including a
88
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
89
+ or a Contribution incorporated within the Work constitutes direct
90
+ or contributory patent infringement, then any patent licenses
91
+ granted to You under this License for that Work shall terminate
92
+ as of the date such litigation is filed.
93
+
94
+ 4. Redistribution. You may reproduce and distribute copies of the
95
+ Work or Derivative Works thereof in any medium, with or without
96
+ modifications, and in Source or Object form, provided that You
97
+ meet the following conditions:
98
+
99
+ (a) You must give any other recipients of the Work or
100
+ Derivative Works a copy of this License; and
101
+
102
+ (b) You must cause any modified files to carry prominent notices
103
+ stating that You changed the files; and
104
+
105
+ (c) You must retain, in the Source form of any Derivative Works
106
+ that You distribute, all copyright, patent, trademark, and
107
+ attribution notices from the Source form of the Work,
108
+ excluding those notices that do not pertain to any part of
109
+ the Derivative Works; and
110
+
111
+ (d) If the Work includes a "NOTICE" text file as part of its
112
+ distribution, then any Derivative Works that You distribute must
113
+ include a readable copy of the attribution notices contained
114
+ within such NOTICE file, excluding those notices that do not
115
+ pertain to any part of the Derivative Works, in at least one
116
+ of the following places: within a NOTICE text file distributed
117
+ as part of the Derivative Works; within the Source form or
118
+ documentation, if provided along with the Derivative Works; or,
119
+ within a display generated by the Derivative Works, if and
120
+ wherever such third-party notices normally appear. The contents
121
+ of the NOTICE file are for informational purposes only and
122
+ do not modify the License. You may add Your own attribution
123
+ notices within Derivative Works that You distribute, alongside
124
+ or as an addendum to the NOTICE text from the Work, provided
125
+ that such additional attribution notices cannot be construed
126
+ as modifying the License.
127
+
128
+ You may add Your own copyright statement to Your modifications and
129
+ may provide additional or different license terms and conditions
130
+ for use, reproduction, or distribution of Your modifications, or
131
+ for any such Derivative Works as a whole, provided Your use,
132
+ reproduction, and distribution of the Work otherwise complies with
133
+ the conditions stated in this License.
134
+
135
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
136
+ any Contribution intentionally submitted for inclusion in the Work
137
+ by You to the Licensor shall be under the terms and conditions of
138
+ this License, without any additional terms or conditions.
139
+ Notwithstanding the above, nothing herein shall supersede or modify
140
+ the terms of any separate license agreement you may have executed
141
+ with Licensor regarding such Contributions.
142
+
143
+ 6. Trademarks. This License does not grant permission to use the trade
144
+ names, trademarks, service marks, or product names of the Licensor,
145
+ except as required for reasonable and customary use in describing the
146
+ origin of the Work and reproducing the content of the NOTICE file.
147
+
148
+ 7. Disclaimer of Warranty. Unless required by applicable law or
149
+ agreed to in writing, Licensor provides the Work (and each
150
+ Contributor provides its Contributions) on an "AS IS" BASIS,
151
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
152
+ implied, including, without limitation, any warranties or conditions
153
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
154
+ PARTICULAR PURPOSE. You are solely responsible for determining the
155
+ appropriateness of using or redistributing the Work and assume any
156
+ risks associated with Your exercise of permissions under this License.
157
+
158
+ 8. Limitation of Liability. In no event and under no legal theory,
159
+ whether in tort (including negligence), contract, or otherwise,
160
+ unless required by applicable law (such as deliberate and grossly
161
+ negligent acts) or agreed to in writing, shall any Contributor be
162
+ liable to You for damages, including any direct, indirect, special,
163
+ incidental, or consequential damages of any character arising as a
164
+ result of this License or out of the use or inability to use the
165
+ Work (including but not limited to damages for loss of goodwill,
166
+ work stoppage, computer failure or malfunction, or any and all
167
+ other commercial damages or losses), even if such Contributor
168
+ has been advised of the possibility of such damages.
169
+
170
+ 9. Accepting Warranty or Additional Liability. While redistributing
171
+ the Work or Derivative Works thereof, You may choose to offer,
172
+ and charge a fee for, acceptance of support, warranty, indemnity,
173
+ or other liability obligations and/or rights consistent with this
174
+ License. However, in accepting such obligations, You may act only
175
+ on Your own behalf and on Your sole responsibility, not on behalf
176
+ of any other Contributor, and only if You agree to indemnify,
177
+ defend, and hold each Contributor harmless for any liability
178
+ incurred by, or claims asserted against, such Contributor by reason
179
+ of your accepting any such warranty or additional liability.
180
+
181
+ END OF TERMS AND CONDITIONS
182
+
183
+ APPENDIX: How to apply the Apache License to your work.
184
+
185
+ To apply the Apache License to your work, attach the following
186
+ boilerplate notice, with the fields enclosed by brackets "[]"
187
+ replaced with your own identifying information. (Don't include
188
+ the brackets!) The text should be enclosed in the appropriate
189
+ comment syntax for the file format. We also recommend that a
190
+ file or class name and description of purpose be included on the
191
+ same "printed page" as the copyright notice for easier
192
+ identification within third-party archives.
193
+
194
+ Copyright [yyyy] [name of copyright owner]
195
+
196
+ Licensed under the Apache License, Version 2.0 (the "License");
197
+ you may not use this file except in compliance with the License.
198
+ You may obtain a copy of the License at
199
+
200
+ http://www.apache.org/licenses/LICENSE-2.0
201
+
202
+ Unless required by applicable law or agreed to in writing, software
203
+ distributed under the License is distributed on an "AS IS" BASIS,
204
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
205
+ See the License for the specific language governing permissions and
206
+ limitations under the License.
207
+
208
+ Requires-Python: >=3.10
209
+ Description-Content-Type: text/markdown
210
+ License-File: LICENSE
211
+ Requires-Dist: pydantic-settings>=2.10.1
212
+ Requires-Dist: a2a-sdk>=0.3.0
213
+ Requires-Dist: deprecated>=1.2.18
214
+ Requires-Dist: google-adk>=1.10.0
215
+ Requires-Dist: litellm>=1.74.3
216
+ Requires-Dist: loguru>=0.7.3
217
+ Requires-Dist: opentelemetry-exporter-otlp>=1.35.0
218
+ Requires-Dist: opentelemetry-instrumentation-logging>=0.56b0
219
+ Requires-Dist: wrapt>=1.17.2
220
+ Requires-Dist: openai<1.100
221
+ Requires-Dist: volcengine-python-sdk==4.0.3
222
+ Requires-Dist: agent-pilot-sdk>=0.0.9
223
+ Requires-Dist: fastmcp>=2.11.3
224
+ Requires-Dist: cookiecutter>=2.6.0
225
+ Requires-Dist: opensearch-py==2.8.0
226
+ Provides-Extra: database
227
+ Requires-Dist: redis>=6.2.0; extra == "database"
228
+ Requires-Dist: pymysql>=1.1.1; extra == "database"
229
+ Requires-Dist: volcengine>=1.0.193; extra == "database"
230
+ Requires-Dist: tos>=2.8.4; extra == "database"
231
+ Provides-Extra: eval
232
+ Requires-Dist: prometheus-client>=0.22.1; extra == "eval"
233
+ Requires-Dist: deepeval>=3.2.6; extra == "eval"
234
+ Requires-Dist: google-adk[eval]; extra == "eval"
235
+ Provides-Extra: cli
236
+ Provides-Extra: dev
237
+ Requires-Dist: pre-commit>=4.2.0; extra == "dev"
238
+ Requires-Dist: pytest>=8.4.1; extra == "dev"
239
+ Requires-Dist: pytest-asyncio>=1.0.0; extra == "dev"
240
+ Requires-Dist: pytest-xdist>=3.8.0; extra == "dev"
241
+ Dynamic: license-file
242
+
243
+ <p align="center">
244
+ <img src="assets/images/logo.png" alt="Volcengine Agent Development Kit Logo" width="50%">
245
+ </p>
246
+
247
+ # Volcengine Agent Development Kit
248
+
249
+ [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](LICENSE)
250
+ [![Deepwiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/volcengine/veadk-python)
251
+
252
+ An open-source kit for agent development, integrated the powerful capabilities of Volcengine.
253
+
254
+ For more details, see our [documents](https://volcengine.github.io/veadk-python/).
255
+
256
+ A [tutorial](https://github.com/volcengine/veadk-python/blob/main/veadk_tutorial.ipynb) is available by Jupyter Notebook, or open it in [Google Colab](https://colab.research.google.com/github/volcengine/veadk-python/blob/main/veadk_tutorial.ipynb) directly.
257
+
258
+ ## Installation
259
+
260
+ We use `uv` to build this project ([how-to-install-uv](https://docs.astral.sh/uv/getting-started/installation/)).
261
+
262
+ ```bash
263
+ git clone ... # clone repo first
264
+
265
+ cd veadk-python
266
+
267
+ uv venv --python 3.10
268
+
269
+ # only install necessary requirements
270
+ uv sync
271
+
272
+ # or, install extra requirements
273
+ # uv sync --extra database
274
+ # uv sync --extra eval
275
+ # uv sync --extra cli
276
+
277
+ # or, directly install all requirements
278
+ # uv sync --all-extras
279
+
280
+ # install veadk-python with editable mode
281
+ uv pip install -e .
282
+ ```
283
+
284
+ ## Configuration
285
+
286
+ We recommand you to create a `config.yaml` file in the root directory of your own project, `VeADK` is able to read it automatically. For running a minimal agent, you just need to set the following configs in your `config.yaml` file:
287
+
288
+ ```yaml
289
+ model:
290
+ agent:
291
+ provider: openai
292
+ name: doubao-seed-1-6-250615
293
+ api_base: https://ark.cn-beijing.volces.com/api/v3/
294
+ api_key: # <-- set your Volcengine ARK api key here
295
+ ```
296
+
297
+ You can refer to the [config instructions](https://volcengine.github.io/veadk-python/installation.html#%E9%85%8D%E7%BD%AE) for more details.
298
+
299
+ ## Have a try
300
+
301
+ Enjoy a minimal agent from VeADK:
302
+
303
+ ```python
304
+ from veadk import Agent
305
+ import asyncio
306
+
307
+ agent = Agent()
308
+
309
+ res = asyncio.run(agent.run("hello!"))
310
+ print(res)
311
+ ```
312
+
313
+ ## Command line tools
314
+
315
+ VeADK provides several useful command line tools for faster deployment and optimization, such as:
316
+
317
+ - `veadk deploy`: deploy your project to [Volcengine VeFaaS platform](https://www.volcengine.com/product/vefaas) (you can use `veadk init` to init a demo project first)
318
+ - `veadk prompt`: otpimize the system prompt of your agent by [PromptPilot](https://promptpilot.volcengine.com)
319
+
320
+ ## Contribution
321
+
322
+ Before making your contribution to our repository, please install and config the `pre-commit` linter first.
323
+
324
+ ```bash
325
+ pip install pre-commit
326
+ pre-commit install
327
+ ```
328
+
329
+ Before commit or push your changes, please make sure the unittests are passed ,otherwise your PR will be rejected by CI/CD workflow. Running the unittests by:
330
+
331
+ ```bash
332
+ pytest -n 16
333
+ ```
334
+
335
+ ## Contact with us
336
+
337
+ Join our discussion group by scanning the QR code below:
338
+
339
+ <p align="center">
340
+ <img src="assets/images/veadk_group_qrcode.jpg" alt="Volcengine Agent Development Kit Logo" width="40%">
341
+ </p>
342
+
343
+ ## License
344
+
345
+ This project is licensed under the [Apache 2.0 License](./LICENSE).
@@ -11,6 +11,8 @@ An open-source kit for agent development, integrated the powerful capabilities o
11
11
 
12
12
  For more details, see our [documents](https://volcengine.github.io/veadk-python/).
13
13
 
14
+ A [tutorial](https://github.com/volcengine/veadk-python/blob/main/veadk_tutorial.ipynb) is available by Jupyter Notebook, or open it in [Google Colab](https://colab.research.google.com/github/volcengine/veadk-python/blob/main/veadk_tutorial.ipynb) directly.
15
+
14
16
  ## Installation
15
17
 
16
18
  We use `uv` to build this project ([how-to-install-uv](https://docs.astral.sh/uv/getting-started/installation/)).
@@ -88,6 +90,14 @@ Before commit or push your changes, please make sure the unittests are passed ,o
88
90
  pytest -n 16
89
91
  ```
90
92
 
93
+ ## Contact with us
94
+
95
+ Join our discussion group by scanning the QR code below:
96
+
97
+ <p align="center">
98
+ <img src="assets/images/veadk_group_qrcode.jpg" alt="Volcengine Agent Development Kit Logo" width="40%">
99
+ </p>
100
+
91
101
  ## License
92
102
 
93
103
  This project is licensed under the [Apache 2.0 License](./LICENSE).
@@ -1,9 +1,10 @@
1
1
  [project]
2
2
  name = "veadk-python"
3
- version = "0.2.1"
3
+ version = "0.2.4"
4
4
  description = "Volcengine agent development kit, integrations with Volcengine cloud services."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
7
+ license = { file = "LICENSE" }
7
8
  authors = [
8
9
  {name = "Yaozheng Fang", email = "fangyozheng@gmail.com"},
9
10
  {name = "Guodong Li", email = "cu.eric.lee@gmail.com"},
@@ -12,23 +13,27 @@ authors = [
12
13
  ]
13
14
  dependencies = [
14
15
  "pydantic-settings>=2.10.1", # Config management
15
- "a2a-sdk==0.2.12", # For Google Agent2Agent protocol
16
+ "a2a-sdk>=0.3.0", # For Google Agent2Agent protocol
16
17
  "deprecated>=1.2.18",
17
- "google-adk==1.8.0", # For basic agent architecture
18
+ "google-adk>=1.10.0", # For basic agent architecture
18
19
  "litellm>=1.74.3", # For model inference
19
20
  "loguru>=0.7.3", # For better logging
20
- "openinference-instrumentation-google-adk>=0.1.1", # For OpenInference instrumentation
21
21
  "opentelemetry-exporter-otlp>=1.35.0",
22
22
  "opentelemetry-instrumentation-logging>=0.56b0",
23
23
  "wrapt>=1.17.2", # For patching built-in functions
24
+ "openai<1.100", # For fix https://github.com/BerriAI/litellm/issues/13710
25
+ "volcengine-python-sdk==4.0.3", # For Volcengine API
26
+ "agent-pilot-sdk>=0.0.9", # Prompt optimization by Volcengine AgentPilot/PromptPilot toolkits
27
+ "fastmcp>=2.11.3", # For running MCP
28
+ "cookiecutter>=2.6.0", # For cloud deploy
29
+ "opensearch-py==2.8.0" # For OpenSearch database
24
30
  ]
25
31
 
26
32
  [project.scripts]
27
- veadk = "veadk.cli.main:app"
33
+ veadk = "veadk.cli.cli:veadk"
28
34
 
29
35
  [project.optional-dependencies]
30
36
  database = [
31
- "opensearch-py==2.8.0", # For OpenSearch database
32
37
  "redis>=6.2.0", # For Redis database
33
38
  "pymysql>=1.1.1", # For MySQL database
34
39
  "volcengine>=1.0.193", # For Viking DB
@@ -39,12 +44,7 @@ eval = [
39
44
  "deepeval>=3.2.6", # For DeepEval-based evaluation
40
45
  "google-adk[eval]", # For Google ADK-based evaluation
41
46
  ]
42
- cli = [
43
- "volcengine-python-sdk==4.0.3", # For Volcengine API
44
- "typer>=0.16.0", # For command-line implementation
45
- "streamlit==1.46.1", # For running VeADK studio app
46
- "agent-pilot-sdk>=0.0.9" # Prompt optimization by Volcengine AgentPilot/PromptPilot toolkits
47
- ]
47
+ cli = []
48
48
  dev = [
49
49
  "pre-commit>=4.2.0", # Format checking
50
50
  "pytest>=8.4.1",
@@ -70,4 +70,9 @@ exclude = ["assets*", "ide*", "tests*"]
70
70
  include-package-data = true
71
71
 
72
72
  [tool.setuptools.package-data]
73
- "veadk" = ["**/*"]
73
+ "veadk" = ["**/*"]
74
+
75
+ [tool.ruff]
76
+ exclude = [
77
+ "veadk/integrations/ve_faas/template/*"
78
+ ]
@@ -48,7 +48,3 @@ def test_agent():
48
48
 
49
49
  assert agent.long_term_memory.backend == "local"
50
50
  assert load_memory in agent.tools
51
-
52
- assert tracer.tracer_hook_before_model in agent.before_model_callback
53
- assert tracer.tracer_hook_after_model in agent.after_model_callback
54
- assert tracer.tracer_hook_after_tool in agent.after_tool_callback
@@ -14,9 +14,9 @@
14
14
 
15
15
  import os
16
16
  import tempfile
17
- import pytest
17
+ from unittest.mock import AsyncMock, Mock, patch
18
18
 
19
- from unittest.mock import Mock, patch, AsyncMock
19
+ import pytest
20
20
 
21
21
  os.environ["VOLCENGINE_ACCESS_KEY"] = "test_access_key"
22
22
  os.environ["VOLCENGINE_SECRET_KEY"] = "test_secret_key"
@@ -110,7 +110,7 @@ async def test_cloud():
110
110
  # Test CloudApp delete_self functionality
111
111
  with patch("builtins.input", return_value="y"):
112
112
  with patch(
113
- "veadk.cli.services.vefaas.vefaas.VeFaaS"
113
+ "veadk.integrations.ve_faas.ve_faas.VeFaaS"
114
114
  ) as mock_vefaas_in_app:
115
115
  mock_vefaas_client = Mock()
116
116
  mock_vefaas_in_app.return_value = mock_vefaas_client
@@ -129,7 +129,7 @@ def test_evaluator():
129
129
  with open(eval_set_file_path, "w") as f:
130
130
  json.dump(EVAL_SET_DATA, f)
131
131
 
132
- base_evaluator.generate_eval_data(file_path=eval_set_file_path)
132
+ base_evaluator.build_eval_set(file_path=eval_set_file_path)
133
133
 
134
134
  assert len(base_evaluator.invocation_list) == 1
135
135
  assert len(base_evaluator.invocation_list[0].invocations) == 1
@@ -149,7 +149,7 @@ def test_tracing_file_to_evalset():
149
149
  with open(tracing_file_path, "w") as f:
150
150
  json.dump(TRACE_SET_DATA, f)
151
151
 
152
- base_evaluator.generate_eval_data(file_path=tracing_file_path)
152
+ base_evaluator.build_eval_set(file_path=tracing_file_path)
153
153
 
154
154
  assert len(base_evaluator.invocation_list) == 1
155
155
  assert len(base_evaluator.invocation_list[0].invocations) == 1
@@ -82,7 +82,7 @@ async def test_tracing():
82
82
  exporters = init_exporters()
83
83
  tracer = OpentelemetryTracer(exporters=exporters)
84
84
 
85
- assert len(tracer.exporters) == 4 # with extra 1 built-in exporters
85
+ assert len(tracer.exporters) == 3
86
86
 
87
87
  # TODO: Ensure the tracing provider is set correctly after loading SDK
88
88
 
@@ -98,7 +98,7 @@ async def test_tracing_with_global_provider():
98
98
  #
99
99
  tracer = OpentelemetryTracer(exporters=exporters)
100
100
 
101
- assert len(tracer.exporters) == 4 # with extra 1 built-in exporters
101
+ assert len(tracer.exporters) == 3 # with extra 1 built-in exporters
102
102
 
103
103
 
104
104
  @pytest.mark.asyncio
@@ -113,4 +113,4 @@ async def test_tracing_with_apmplus_global_provider():
113
113
  tracer = OpentelemetryTracer(exporters=exporters)
114
114
 
115
115
  # apmplus exporter won't init again
116
- assert len(tracer.exporters) == 3 # with extra 1 built-in exporters
116
+ assert len(tracer.exporters) == 2 # with extra 1 built-in exporters
@@ -12,17 +12,23 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
- from .version import VERSION
15
+ from typing import TYPE_CHECKING
16
+
17
+ from veadk.version import VERSION
18
+
19
+ if TYPE_CHECKING:
20
+ from veadk.agent import Agent
21
+ from veadk.runner import Runner
16
22
 
17
23
 
18
24
  # Lazy loading for `Agent` class
19
25
  def __getattr__(name):
20
26
  if name == "Agent":
21
- from .agent import Agent
27
+ from veadk.agent import Agent
22
28
 
23
29
  return Agent
24
30
  if name == "Runner":
25
- from .runner import Runner
31
+ from veadk.runner import Runner
26
32
 
27
33
  return Runner
28
34
  raise AttributeError(f"module 'veadk' has no attribute '{name}'")
@@ -18,7 +18,7 @@ import requests
18
18
  from a2a.types import AgentCard
19
19
  from google.adk.agents.remote_a2a_agent import RemoteA2aAgent
20
20
 
21
- AGENT_CARD_WELL_KNOWN_PATH = "/.well-known/agent.json"
21
+ AGENT_CARD_WELL_KNOWN_PATH = "/.well-known/agent-card.json"
22
22
 
23
23
 
24
24
  class RemoteVeAgent(RemoteA2aAgent):
@@ -48,8 +48,6 @@ class VeA2AServer:
48
48
  )
49
49
  app = app_application.build() # build routes
50
50
 
51
- # import uvicorn
52
- # uvicorn.run(app, host="127.0.0.1", port=8000)
53
51
  return app
54
52
 
55
53
 
@@ -17,6 +17,7 @@ from __future__ import annotations
17
17
  from typing import Optional
18
18
 
19
19
  from google.adk.agents import LlmAgent, RunConfig
20
+ from google.adk.agents.base_agent import BaseAgent
20
21
  from google.adk.agents.llm_agent import ToolUnion
21
22
  from google.adk.agents.run_config import StreamingMode
22
23
  from google.adk.models.lite_llm import LiteLlm
@@ -39,7 +40,7 @@ from veadk.prompts.agent_default_prompt import DEFAULT_DESCRIPTION, DEFAULT_INST
39
40
  from veadk.tracing.base_tracer import BaseTracer
40
41
  from veadk.utils.logger import get_logger
41
42
  from veadk.utils.patches import patch_asyncio
42
- from google.adk.agents.base_agent import BaseAgent
43
+ from veadk.version import VERSION
43
44
 
44
45
  patch_asyncio()
45
46
  logger = get_logger(__name__)
@@ -60,7 +61,6 @@ class Agent(LlmAgent):
60
61
  instruction: str = DEFAULT_INSTRUCTION
61
62
  """The instruction for the agent, such as principles of function calling."""
62
63
 
63
- # factory
64
64
  model_name: str = getenv("MODEL_AGENT_NAME", DEFAULT_MODEL_AGENT_NAME)
65
65
  """The name of the model for agent running."""
66
66
 
@@ -70,9 +70,7 @@ class Agent(LlmAgent):
70
70
  model_api_base: str = getenv("MODEL_AGENT_API_BASE", DEFAULT_MODEL_AGENT_API_BASE)
71
71
  """The api base of the model for agent running."""
72
72
 
73
- model_api_key: str = Field(
74
- ..., default_factory=lambda: getenv("MODEL_AGENT_API_KEY")
75
- )
73
+ model_api_key: str = Field(default_factory=lambda: getenv("MODEL_AGENT_API_KEY"))
76
74
  """The api key of the model for agent running."""
77
75
 
78
76
  tools: list[ToolUnion] = []
@@ -115,16 +113,9 @@ class Agent(LlmAgent):
115
113
 
116
114
  self.tools.append(load_memory)
117
115
 
118
- if self.tracers:
119
- self.before_model_callback = []
120
- self.after_model_callback = []
121
- self.after_tool_callback = []
122
- for tracer in self.tracers:
123
- self.before_model_callback.append(tracer.tracer_hook_before_model)
124
- self.after_model_callback.append(tracer.tracer_hook_after_model)
125
- self.after_tool_callback.append(tracer.tracer_hook_after_tool)
116
+ logger.info(f"VeADK version: {VERSION}")
126
117
 
127
- logger.info(f"Agent `{self.name}` init done.")
118
+ logger.info(f"{self.__class__.__name__} `{self.name}` init done.")
128
119
  logger.debug(
129
120
  f"Agent: {self.model_dump(include={'name', 'model_name', 'model_api_base', 'tools', 'serve_url'})}"
130
121
  )
@@ -223,9 +214,6 @@ class Agent(LlmAgent):
223
214
  session_service=session_service,
224
215
  memory_service=self.long_term_memory,
225
216
  )
226
- if getattr(self, "tracers", None):
227
- for tracer in self.tracers:
228
- tracer.set_app_name(app_name)
229
217
 
230
218
  logger.info(f"Begin to process prompt {prompt}")
231
219
  # run
@@ -244,8 +232,13 @@ class Agent(LlmAgent):
244
232
  user_id=user_id,
245
233
  session_id=session_id,
246
234
  )
247
- await self.long_term_memory.add_session_to_memory(session)
248
- logger.info(f"Add session `{session.id}` to your long-term memory.")
235
+ if session:
236
+ await self.long_term_memory.add_session_to_memory(session)
237
+ logger.info(f"Add session `{session.id}` to your long-term memory.")
238
+ else:
239
+ logger.error(
240
+ f"Session {session_id} not found in session service, cannot save to long-term memory."
241
+ )
249
242
 
250
243
  if collect_runtime_data:
251
244
  eval_set_recorder = EvalSetRecorder(session_service, eval_set_id)
@@ -254,6 +247,6 @@ class Agent(LlmAgent):
254
247
 
255
248
  if self.tracers:
256
249
  for tracer in self.tracers:
257
- tracer.dump(user_id, session_id)
250
+ tracer.dump(user_id=user_id, session_id=session_id)
258
251
 
259
252
  return final_output