veadk-python 0.2.1__py3-none-any.whl → 0.2.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of veadk-python might be problematic. Click here for more details.
- veadk/__init__.py +9 -3
- veadk/__pycache__/__init__.cpython-310.pyc +0 -0
- veadk/__pycache__/agent.cpython-310.pyc +0 -0
- veadk/__pycache__/runner.cpython-310.pyc +0 -0
- veadk/__pycache__/types.cpython-310.pyc +0 -0
- veadk/__pycache__/version.cpython-310.pyc +0 -0
- veadk/a2a/__pycache__/remote_ve_agent.cpython-310.pyc +0 -0
- veadk/a2a/__pycache__/ve_a2a_server.cpython-310.pyc +0 -0
- veadk/a2a/__pycache__/ve_agent_executor.cpython-310.pyc +0 -0
- veadk/a2a/remote_ve_agent.py +1 -1
- veadk/a2a/ve_a2a_server.py +0 -2
- veadk/agent.py +10 -7
- veadk/cli/__pycache__/__init__.cpython-310.pyc +0 -0
- veadk/cli/__pycache__/cli.cpython-310.pyc +0 -0
- veadk/cli/__pycache__/cli_deploy.cpython-310.pyc +0 -0
- veadk/cli/__pycache__/cli_init.cpython-310.pyc +0 -0
- veadk/cli/__pycache__/cli_prompt.cpython-310.pyc +0 -0
- veadk/cli/__pycache__/cli_studio.cpython-310.pyc +0 -0
- veadk/cli/__pycache__/cli_web.cpython-310.pyc +0 -0
- veadk/cli/__pycache__/main.cpython-310.pyc +0 -0
- veadk/cli/{services/agentpilot/__init__.py → cli.py} +25 -2
- veadk/cli/cli_deploy.py +147 -0
- veadk/cli/cli_init.py +106 -0
- veadk/cli/cli_prompt.py +64 -0
- veadk/cli/cli_web.py +154 -0
- veadk/cloud/__pycache__/cloud_agent_engine.cpython-310.pyc +0 -0
- veadk/cloud/__pycache__/cloud_app.cpython-310.pyc +0 -0
- veadk/cloud/cloud_agent_engine.py +77 -42
- veadk/cloud/cloud_app.py +37 -6
- veadk/database/__pycache__/__init__.cpython-310.pyc +0 -0
- veadk/database/__pycache__/database_adapter.cpython-310.pyc +0 -0
- veadk/database/database_adapter.py +2 -2
- veadk/database/kv/redis_database.py +12 -9
- veadk/database/relational/mysql_database.py +10 -9
- veadk/database/vector/opensearch_vector_database.py +14 -7
- veadk/database/viking/viking_database.py +23 -17
- veadk/database/viking/viking_memory_db.py +9 -9
- veadk/evaluation/__pycache__/base_evaluator.cpython-310.pyc +0 -0
- veadk/evaluation/adk_evaluator/adk_evaluator.py +12 -17
- veadk/evaluation/base_evaluator.py +10 -9
- veadk/evaluation/utils/prometheus.py +1 -4
- veadk/integrations/ve_apig/__pycache__/__init__.cpython-310.pyc +0 -0
- veadk/integrations/ve_apig/__pycache__/ve_apig.cpython-310.pyc +0 -0
- veadk/integrations/ve_faas/__pycache__/__init__.cpython-310.pyc +0 -0
- veadk/integrations/ve_faas/__pycache__/types.cpython-310.pyc +0 -0
- veadk/integrations/ve_faas/__pycache__/ve_faas.cpython-310.pyc +0 -0
- veadk/integrations/ve_faas/__pycache__/ve_faas_utils.cpython-310.pyc +0 -0
- veadk/{cli/services/vefaas → integrations/ve_faas}/__pycache__/vefaas.cpython-310.pyc +0 -0
- veadk/integrations/ve_faas/template/cookiecutter.json +11 -0
- veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/config.yaml.example +6 -0
- veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/deploy.py +103 -0
- veadk/{cli/services/vefaas/template → integrations/ve_faas/template/{{cookiecutter.local_dir_name}}}/src/__init__.py +0 -1
- veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/__pycache__/agent.cpython-310.pyc +0 -0
- veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/__pycache__/app.cpython-310.pyc +0 -0
- veadk/{cli/services/veapig/__init__.py → integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/agent.py} +10 -2
- veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/app.py +146 -0
- veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/requirements.txt +1 -0
- veadk/{cli/services/vefaas/template → integrations/ve_faas/template/{{cookiecutter.local_dir_name}}}/src/run.sh +10 -19
- veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/{{ cookiecutter.app_name|replace('-', '_') }}/__init__.py +14 -0
- veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/{{ cookiecutter.app_name|replace('-', '_') }}/__pycache__/__init__.cpython-310.pyc +0 -0
- veadk/integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/{{ cookiecutter.app_name|replace('-', '_') }}/__pycache__/agent.cpython-310.pyc +0 -0
- veadk/{cli/services/vefaas/template/src/agent.py → integrations/ve_faas/template/{{cookiecutter.local_dir_name}}/src/{{ cookiecutter.app_name|replace('-', '_') }}/agent.py } +8 -6
- veadk/{cli/services/vefaas/vefaas.py → integrations/ve_faas/ve_faas.py} +15 -6
- veadk/integrations/ve_prompt_pilot/__init__.py +13 -0
- veadk/{cli/services/agentpilot → integrations/ve_prompt_pilot}/__pycache__/agentpilot.cpython-310.pyc +0 -0
- veadk/{cli/services/agentpilot/agentpilot.py → integrations/ve_prompt_pilot/ve_prompt_pilot.py} +5 -6
- veadk/knowledgebase/__pycache__/knowledgebase.cpython-310.pyc +0 -0
- veadk/knowledgebase/knowledgebase.py +3 -5
- veadk/memory/__pycache__/long_term_memory.cpython-310.pyc +0 -0
- veadk/memory/__pycache__/short_term_memory.cpython-310.pyc +0 -0
- veadk/memory/__pycache__/short_term_memory_processor.cpython-310.pyc +0 -0
- veadk/memory/long_term_memory.py +5 -2
- veadk/memory/short_term_memory.py +3 -7
- veadk/memory/short_term_memory_processor.py +7 -2
- veadk/prompts/prompt_optimization.py +11 -19
- veadk/runner.py +85 -68
- veadk/tools/__pycache__/load_knowledgebase_tool.cpython-310.pyc +0 -0
- veadk/tools/builtin_tools/__pycache__/vesearch.cpython-310.pyc +0 -0
- veadk/tools/load_knowledgebase_tool.py +3 -2
- veadk/tracing/__pycache__/base_tracer.cpython-310.pyc +0 -0
- veadk/tracing/base_tracer.py +27 -15
- veadk/tracing/telemetry/__pycache__/opentelemetry_tracer.cpython-310.pyc +0 -0
- veadk/tracing/telemetry/exporters/__pycache__/apmplus_exporter.cpython-310.pyc +0 -0
- veadk/tracing/telemetry/exporters/__pycache__/base_exporter.cpython-310.pyc +0 -0
- veadk/tracing/telemetry/exporters/__pycache__/cozeloop_exporter.cpython-310.pyc +0 -0
- veadk/tracing/telemetry/exporters/__pycache__/inmemory_exporter.cpython-310.pyc +0 -0
- veadk/tracing/telemetry/exporters/__pycache__/tls_exporter.cpython-310.pyc +0 -0
- veadk/tracing/telemetry/exporters/apmplus_exporter.py +0 -3
- veadk/tracing/telemetry/exporters/base_exporter.py +3 -0
- veadk/tracing/telemetry/exporters/cozeloop_exporter.py +0 -3
- veadk/tracing/telemetry/exporters/inmemory_exporter.py +13 -4
- veadk/tracing/telemetry/exporters/tls_exporter.py +2 -9
- veadk/tracing/telemetry/opentelemetry_tracer.py +14 -30
- veadk/types.py +20 -1
- veadk/utils/__pycache__/logger.cpython-310.pyc +0 -0
- veadk/utils/__pycache__/misc.cpython-310.pyc +0 -0
- veadk/utils/__pycache__/patches.cpython-310.pyc +0 -0
- veadk/utils/mcp_utils.py +1 -1
- veadk/utils/misc.py +31 -2
- veadk/utils/patches.py +0 -30
- veadk/version.py +1 -1
- {veadk_python-0.2.1.dist-info → veadk_python-0.2.2.dist-info}/METADATA +16 -5
- veadk_python-0.2.2.dist-info/RECORD +213 -0
- veadk_python-0.2.2.dist-info/entry_points.txt +2 -0
- veadk/cli/main.py +0 -379
- veadk/cli/services/veapig/__pycache__/__init__.cpython-310.pyc +0 -0
- veadk/cli/services/vefaas/__init__.py +0 -17
- veadk/cli/services/vefaas/__pycache__/__init__.cpython-310.pyc +0 -0
- veadk/cli/services/vefaas/template/README.md +0 -37
- veadk/cli/services/vefaas/template/config.yaml.example +0 -19
- veadk/cli/services/vefaas/template/deploy.py +0 -58
- veadk/cli/services/vefaas/template/src/__pycache__/agent.cpython-310.pyc +0 -0
- veadk/cli/services/vefaas/template/src/app.py +0 -70
- veadk/cli/services/vefaas/template/src/requirements.txt +0 -6
- veadk/cli/services/vefaas/template/src/studio_app.py +0 -47
- veadk/cli/services/vetls/__init__.py +0 -17
- veadk/cli/services/vetls/vetls.py +0 -87
- veadk/cli/studio/__pycache__/__init__.cpython-310.pyc +0 -0
- veadk/cli/studio/__pycache__/fast_api.cpython-310.pyc +0 -0
- veadk/cli/studio/__pycache__/models.cpython-310.pyc +0 -0
- veadk/cli/studio/__pycache__/studio_processor.cpython-310.pyc +0 -0
- veadk/cli/studio/fast_api.py +0 -392
- veadk/cli/studio/models.py +0 -76
- veadk/cli/studio/studio_processor.py +0 -127
- veadk/cli/studio/web/404.html +0 -1
- veadk/cli/studio/web/__pycache__/__init__.cpython-310.pyc +0 -0
- veadk/cli/studio/web/_next/static/chunks/1012.1c22f40693022876.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1017.577d2551c3a2b396.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1044.7c49605a0f9b5d5c.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1067.71aee8d185b3a9d7.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1088.8f7f3c71458d301b.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1092.7b553ab1ec1737bf.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1117.8c537e259adccbe2.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1142.1faf8d46ccf4030c.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1146.25bf08c82f4ad1c5.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1192.55e7712b3dc8b6a8.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1200.1038681512a9f69a.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1265.e055670c82b2d131.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1275.322d8bf8a580b859.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/140.d7e90f5e12cf288c.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1421.7fff0e9f0677f79b.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1469.16c1e07a7c0f9817.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1480.3c94a6d6d61c4f56.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1507.4c7617217de3bef8.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1523.1740f3d9d913fe76.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1526.5fb34657a70589b5.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1563.6c364e96b33f3328.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/157.2e3f508bc115c15c.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1577.b6cebda169ac9c75.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1622.a611b4dab478587d.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1685.db5d4efe2f0e3767.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1687.a10254d4e1dd84c0.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1826.da2ac0fcfb59cfae.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1832.f81112d6166a9563.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1851.1d0bdfdf5fa89313.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/189.c602a68aadf321e4.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1899.dd303f08095745bc.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/193.1e81c5b253db2ee7.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1936.8fad6d3898c86483.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1942.165056b632c269d4.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/1974.ee28ba5ac111af70.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2.c2afe2e24520b5de.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2006.298ac00a777dc313.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2063.69ba443b7901194c.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2067-e02b0bc96d886930.js +0 -91
- veadk/cli/studio/web/_next/static/chunks/2119.4595d21bc0340c5b.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/212.0a8d6163667d9369.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2190.5549f7a57901bd46.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2193.51ce38cc9e965abd.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2202.a6c08676680e55ad.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2247.af410bd18c38e538.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2313.6932520daf0fa88c.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2316.c9eafa57971eebc8.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2324.766859688506ac0d.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2328.131b0296bc19ba4e.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2332.b9b7ac0b386a4a28.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2344.cc417c70cb6dbc51.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2347.9f442b75b11de668.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2356.f6b4ac7eb50edb44.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2370.044b34646bc58363.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2378.2005af4d2bf100dd.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2437.68534e42d45c5c61.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2449.db460ea54b851bc1.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2455.153b04863d2ae9dc.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2484.139843b3f1cc8ea5.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2500.e2b8da0d1401bd5f.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2513.a7056ff98b04c4cd.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2533.5e35d247414428d0.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2541.3e5a23b461d7a9fd.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2545.0e4e3a784391205b.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2558.17eda1052d7c8c1f.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2559.7432df2540cfff07.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2578.1be0687e71bc7731.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2601.aa7e57bdf472372c.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/261-19b52c2c85aefb5d.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2642.9ea0966ca6bd8ace.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2669.e90ab188be48154e.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2737.4f5c7f7b9293ae65.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2804.b801cadc26133d92.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2817.8584109b4bc979e8.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/282.cfff86fab979470f.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2822.12cdf0520b2d321a.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/288.5c1053dbdc74212b.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2964.a531dbf5eb867f3d.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/2f7605f3.0531565b22967bb4.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/3080.9aada68cdc9ad5c2.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/3090.a9e7f71df818f607.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/3103.b7cdb76d87ac0fdd.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/311.2737abd09304ba1b.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/3110.84511591e516221b.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/3126.307ac469edcf6ec9.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/320.a3c0085ebf05b7da.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/322.668c1a20cc012c68.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/3341.a0f06b1edc2332fb.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/3357.ced93e6bf8e56762.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/3386.53f3aa4ff0dd0170.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/3391.402e02fd7c297ff8.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/3392.5172b1d190ff0e8c.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/33fb68d2.aacf24a5979288bd.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/3429.74dcaa985d188e43.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/3433.737c3d948bdda1da.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/3435.1798454b9a5b69ca.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/3481.a916f933c4e534b8.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/3602.bdf28129f1569554.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/3607.49cec7e9330d1f4d.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/3615.3280752d551adf2d.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/3721.f660b5b05621f5e4.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/3786.ae0824e683556d37.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/3805.ec0340f0f6e61bbc.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/4045.42a3c9fb7d932ebc.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/4052.86cc820c95ad25a8.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/4058.3cea468f5370b7c9.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/4068.ff830b92579f6b7f.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/411.5679da8e6a856022.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/4118.e2544434642f6640.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/4139.80b0aab26d9a4601.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/423.da4e0abf5fd408dc.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/4262.9d5532cb76a86371.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/431.ef6d705ac627958f.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/4337.3c94a6d6d61c4f56.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/4357-39eb6b5934ac97db.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/4382.64908590e0a18d66.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/4489.7a9b45fb6f6bf491.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/450.76880cb957b128fa.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/452.14fb00ee415ad32b.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/4577.d1cbd95a87e2adb2.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/4626.0866c7ee38885775.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/4627.3d7df52a668a6b57.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/4713.3891f7d347513ef5.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/4749.25fd94a8ed476b13.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/4836.afe027e38fb9a7e8.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/483e0093.2a09b17ad5d1b3ed.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/4852.cac6e9c5032df796.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/4860.94324451a00fadc0.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/4869.091903cb36ad77ad.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/4888.e248e212b002f5df.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/492.ac958937dd36300f.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/4958.85e0dbc8b2319776.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/4968.1477e29640b2deb8.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/4980.1300ab7d9c76e523.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/4aa6d3c9.dade76a8ff4112d3.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5006.8ee1d611f529da11.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5018.c34d2a9f82e24c51.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5050.c06b2d8e12720555.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5084.9b554002148843ea.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5097.2e9a097ccfb70707.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5113.fa5291624248676b.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5115.ff49cf5e2be16db4.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/521.98b7995e15b59075.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5213.1a7618fcae8c5282.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/522.56063fbcf9aa8699.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5247.b304f94eb3132618.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5248.f9faaff2f0d7631f.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/527-1c65afbb202752bd.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/529.7d231c2076b6d77a.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5305.9323b5f7efaa005e.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5317.fce75000492e9db4.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5326.3be5b04850f0a2f2.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5329.415b43aacdd9a471.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5331.77f0493c99857944.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5341.1fff90ab37947f62.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/541.04d938e895b7f678.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5428.fa789e4b0d61cd0d.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5460.cee07b9411c5c5ca.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5472.f645717ad2edd28f.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5503.75093ef3870b655f.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5567.44555d5da6ed19b7.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5572.3c35c26a4867ca56.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5579.b3be6028d1833118.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5631.b8a2c0dc65737269.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5656.b743b6ab9a61eec0.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5677.c063822912e55a25.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5779.0b1a3c7d1c018a1d.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5817.ae1fb69a154fbf4c.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5860.7154866a5d2dd82f.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5865.645e44e8e171ba9f.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5906.30cce16ed88f920a.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5942.cd6dfaad76581849.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/5958.e2f981fa3cba5d99.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/60f90b65.d526f39688baa769.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6128.3da302fb50769250.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/62.5408e55d383a8078.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/624.7c7198473a8877d8.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6264.e7bdd878d9e7a249.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6266.97409ca00a3c32d9.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6269.668be917daafccaa.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/630.87a6f22ac3e8956b.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6341.35afa02112051be8.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6353.93869a804ffe525b.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6375.46d2897cb2526abd.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6395.f113970ceec6ba91.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/63d31579-18fb2181524a9c6f.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6423.d4cf9eb5b2ae6336.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6437.5eeaa7320bce1872.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6438.1c8486cc62da4117.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6451.f56cce0a07138982.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6456.f263b33ea51e4f54.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6504.0e6ae8d5bb987be6.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6560.b08504c0d99d71d4.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6563.e6d3bdba9860590d.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6621.639e4057d9c15bea.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6625.c0233245d2c1ef25.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6641.5487a2d68b0c52f2.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6644.74de9f2de2dc75f5.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6730.aac5bd02aab8258f.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6824.8c40dbd3eb390403.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6831.74b4a9b75f4ff9d1.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/688.9a27292bd19bc993.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6899.ac4207b9a778bd0e.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6901.4755ed550912589c.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6910.5d45b17e287dba94.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6928.d0a540480df90930.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6958.c58e8e991b201429.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/6d60d248-1bbd761ee88ab2e4.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/70207789-862965aac548ab2a.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/7046.60a892c1e506cf5f.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/7068.6639b51e828de233.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/7172.aeda2e49d81fc0fd.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/7185.0210768f3918ec41.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/7200.86e672d8e2c1a920.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/730.2c5e46bf8fd29fcc.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/7301.43929cd9c2a5d2ea.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/7335.68692b193fa0dff6.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/7412.98554f6ee574e288.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/7422.e4a69fce6694ba90.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/7448.63e7b8d5fd090bd1.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/7479.97f696c6ada04b29.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/7482.ab6a217c34f6934a.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/7484.b91675bd38b250f8.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/7522.84dac217ae0701ac.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/7540-38c13446d29f43f2.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/7556.ae47807e378de233.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/761.2ce77249f8d3a1ce.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/7678.ceea70830f2dd7ff.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/7684.c43e4b5ad1f9b0af.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/7698.44201098b212aee8.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/76ff44ea.8322bdedaee78e2d.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/7725.b15cb8b6e1d15403.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/7855.513a507852c649f2.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/7910.266df3f992c16215.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/7940.f490f3d5e6590e54.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/7960.491bd15bef82755c.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/8020.795778775ed5c387.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/8107.fbb6017b3e909da5.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/8169.4d7fd139784eb935.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/8196.6c5c3dfe86e1c3ca.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/8257.ee682bc2599473cb.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/8305.d2c965e56fe9350c.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/8324.8c3edcc756f5e2f3.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/8388.cc59fb03d62a71cf.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/8394.d5ca17ce8f6fffb0.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/8419.b11c64d18dc580b5.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/8478.5f4272ae9afa4061.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/8480.a071150cb4eddc29.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/8535.0ab856b7bf0e161b.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/8571.8af7983b03c09f86.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/8583.4afa8c68cb867b2d.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/8601.520cbfc8abbfb5f8.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/8656.5f8b6212d2b35257.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/8665.7f24febc4a78ff5e.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/8687.c94010eb559245b6.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/8815.81a5c5700763ca02.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/8878.28a43a5fe23f5bd0.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/8884.e4e411c7978b2552.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/8962.db5c7728bef5ff0b.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/8984.dfcb15f115089c4a.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/9022.d161e32a6b1bcc61.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/9099.8ba5be825d17456a.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/914.72991ff6c9332951.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/9217.40b78a38cadcd268.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/925.0cc74592f03b10e9.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/9275.ac60c49c68c86e51.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/92a17e6d.da4fba322f70cd46.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/92b95f17.39f98387a9867b4a.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/9361.d3535e4d87c1c527.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/9433.55eb6e4ea7edb262.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/9436.5b2462fa3ddebb27.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/9445.e29312f685c22eff.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/9471.646bdfb962cdd5c2.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/9473.efa6db413edc23d1.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/9484.e9f1cd4e3f8e75df.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/9545.61026f3c11f914f2.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/9555.287e4e4a50087d62.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/963.da40bca273fb82c6.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/9636.4d3678b9a4e0b46e.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/9657.459d6300b0bc8ef8.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/9676.cef4d87274c64417.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/97.15df9ee2f6270421.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/9754.76a3ea33dc0e9a07.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/9790.7e01549d70279760.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/9871.994068e90ef076a5.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/9887.0fbd7c3721a3c1d1.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/9923.14c88b64d7749eaa.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/997.193727d4b2eede68.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/9971.36f503837f73d3c2.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/9976.ab4ec59ede08f398.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/9990.13e025853b0250b6.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/9997.a844d058b46bb680.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/app/_not-found/page-ce05b36a67c37396.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/app/layout-b0d50d105c55fd6d.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/app/page-7b51d29c96f44f61.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/app/run/page-c2cd4dca690d6d29.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/c06218ab.b1da50a91b579a52.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/c911d7bd.bcca2e3dda67a7a6.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/d386b14e.c746c93eac03a58e.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/e925550e.ff706051f5223d26.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/fc645be4-662fd2da08676daa.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/framework-2b8e4864be10152d.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/main-33072985ea766514.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/main-app-4a8ccba13aa7606b.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/pages/_app-c0ae3ec92f260128.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/pages/_error-899a04d491d7df58.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/polyfills-42372ed130431b0a.js +0 -1
- veadk/cli/studio/web/_next/static/chunks/webpack-14afc8861a1fe293.js +0 -1
- veadk/cli/studio/web/_next/static/css/366cfdd7fdd8bcac.css +0 -1
- veadk/cli/studio/web/_next/static/gvLvin_lQcpkhQupQqPu1/_buildManifest.js +0 -1
- veadk/cli/studio/web/_next/static/gvLvin_lQcpkhQupQqPu1/_ssgManifest.js +0 -1
- veadk/cli/studio/web/_next/static/media/569ce4b8f30dc480-s.p.woff2 +0 -0
- veadk/cli/studio/web/_next/static/media/747892c23ea88013-s.woff2 +0 -0
- veadk/cli/studio/web/_next/static/media/8d697b304b401681-s.woff2 +0 -0
- veadk/cli/studio/web/_next/static/media/93f479601ee12b01-s.p.woff2 +0 -0
- veadk/cli/studio/web/_next/static/media/9610d9e46709d722-s.woff2 +0 -0
- veadk/cli/studio/web/_next/static/media/ba015fad6dcf6784-s.woff2 +0 -0
- veadk/cli/studio/web/favicon.ico +0 -0
- veadk/cli/studio/web/file.svg +0 -1
- veadk/cli/studio/web/globe.svg +0 -1
- veadk/cli/studio/web/index.html +0 -1
- veadk/cli/studio/web/index.txt +0 -43
- veadk/cli/studio/web/next.svg +0 -1
- veadk/cli/studio/web/run.html +0 -1
- veadk/cli/studio/web/run.txt +0 -44
- veadk/cli/studio/web/veadk-logo.png +0 -0
- veadk/cli/studio/web/vercel.svg +0 -1
- veadk/cli/studio/web/window.svg +0 -1
- veadk/tracing/telemetry/exporters/apiserver_exporter.py +0 -60
- veadk_python-0.2.1.dist-info/RECORD +0 -534
- veadk_python-0.2.1.dist-info/entry_points.txt +0 -2
- /veadk/{cli/services/vefaas/template → integrations/ve_apig}/__init__.py +0 -0
- /veadk/{cli/services/veapig → integrations/ve_apig}/__pycache__/apig.cpython-310.pyc +0 -0
- /veadk/{cli/services/veapig/apig.py → integrations/ve_apig/ve_apig.py} +0 -0
- /veadk/{cli/services/veapig/apig_utils.py → integrations/ve_apig/ve_apig_utils.py} +0 -0
- /veadk/{cli/studio → integrations/ve_faas}/__init__.py +0 -0
- /veadk/{cli/services/vefaas → integrations/ve_faas}/__pycache__/vefaas_utils.cpython-310.pyc +0 -0
- /veadk/{cli/studio/web → integrations/ve_faas/template/{{cookiecutter.local_dir_name}}}/__init__.py +0 -0
- /veadk/{cli/services/vefaas/template → integrations/ve_faas/template/{{cookiecutter.local_dir_name}}}/src/__pycache__/studio_app.cpython-310.pyc +0 -0
- /veadk/{cli/services/vefaas/vefaas_utils.py → integrations/ve_faas/ve_faas_utils.py} +0 -0
- /veadk/{cli/services/agentpilot → integrations/ve_prompt_pilot}/__pycache__/__init__.cpython-310.pyc +0 -0
- {veadk_python-0.2.1.dist-info → veadk_python-0.2.2.dist-info}/WHEEL +0 -0
- {veadk_python-0.2.1.dist-info → veadk_python-0.2.2.dist-info}/licenses/LICENSE +0 -0
- {veadk_python-0.2.1.dist-info → veadk_python-0.2.2.dist-info}/top_level.txt +0 -0
veadk/cli/studio/web/index.html
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html><!--gvLvin_lQcpkhQupQqPu1--><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="/_next/static/media/569ce4b8f30dc480-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" href="/_next/static/media/93f479601ee12b01-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/366cfdd7fdd8bcac.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-14afc8861a1fe293.js"/><script src="/_next/static/chunks/70207789-862965aac548ab2a.js" async=""></script><script src="/_next/static/chunks/7540-38c13446d29f43f2.js" async=""></script><script src="/_next/static/chunks/main-app-4a8ccba13aa7606b.js" async=""></script><script src="/_next/static/chunks/527-1c65afbb202752bd.js" async=""></script><script src="/_next/static/chunks/4357-39eb6b5934ac97db.js" async=""></script><script src="/_next/static/chunks/261-19b52c2c85aefb5d.js" async=""></script><script src="/_next/static/chunks/app/layout-b0d50d105c55fd6d.js" async=""></script><script src="/_next/static/chunks/app/page-7b51d29c96f44f61.js" async=""></script><meta name="next-size-adjust" content=""/><title>VeADK Studio - Volcengine Agent Development Kit Series</title><meta name="description" content="VeADK Studio is a web-based tool for developing and managing Volcengine agents."/><link rel="shortcut icon" href="/favicon.ico"/><link rel="icon" href="/favicon.ico" type="image/x-icon" sizes="16x16"/><link rel="icon" href="/favicon.ico"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="__variable_5cfdac __variable_9a8899 antialiased flex flex-col min-h-dvh max-h-dvh w-full"><div hidden=""><!--$--><!--/$--></div><div class="flex w-full"><header class="px-4 md:px-6 w-full"><div class="flex h-16 items-center justify-between gap-4"><div class="flex flex-1 items-center gap-2"><button data-slot="button" class="inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 group size-8 md:hidden" type="button" aria-haspopup="dialog" aria-expanded="false" aria-controls="radix-_R_1bb_" data-state="closed"><svg class="pointer-events-none" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><path d="M4 12L20 12" class="origin-center -translate-y-[7px] transition-all duration-300 ease-[cubic-bezier(.5,.85,.25,1.1)] group-aria-expanded:translate-x-0 group-aria-expanded:translate-y-0 group-aria-expanded:rotate-[315deg]"></path><path d="M4 12H20" class="origin-center transition-all duration-300 ease-[cubic-bezier(.5,.85,.25,1.8)] group-aria-expanded:rotate-45"></path><path d="M4 12H20" class="origin-center translate-y-[7px] transition-all duration-300 ease-[cubic-bezier(.5,.85,.25,1.1)] group-aria-expanded:translate-y-0 group-aria-expanded:rotate-[135deg]"></path></svg></button><div class="flex flex-1 items-center gap-6 max-md:justify-between"><a href="#" class="text-primary font-bold hover:text-primary/90">VeADK Studio</a><nav aria-label="Main" data-orientation="horizontal" dir="ltr" data-slot="navigation-menu" data-viewport="true" class="group/navigation-menu relative flex max-w-max flex-1 items-center justify-center max-md:hidden"><div style="position:relative"><ul data-orientation="horizontal" data-slot="navigation-menu-list" class="group flex flex-1 list-none items-center justify-center gap-2" dir="ltr"><li data-slot="navigation-menu-item" class="relative"><a data-slot="navigation-menu-link" class="data-[active]:focus:bg-accent data-[active]:hover:bg-accent data-[active]:bg-accent data-[active]:text-accent-foreground hover:bg-accent focus:bg-accent focus:text-accent-foreground focus-visible:ring-ring/50 [&_svg:not([class*='text-'])]:text-muted-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-all outline-none focus-visible:ring-[3px] focus-visible:outline-1 [&_svg:not([class*='size-'])]:size-4 text-muted-foreground hover:text-primary py-1.5 font-medium" href="https://volcengine.github.io/veadk-python/" data-radix-collection-item="">Documents</a></li><li data-slot="navigation-menu-item" class="relative"><a data-slot="navigation-menu-link" class="data-[active]:focus:bg-accent data-[active]:hover:bg-accent data-[active]:bg-accent data-[active]:text-accent-foreground hover:bg-accent focus:bg-accent focus:text-accent-foreground focus-visible:ring-ring/50 [&_svg:not([class*='text-'])]:text-muted-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-all outline-none focus-visible:ring-[3px] focus-visible:outline-1 [&_svg:not([class*='size-'])]:size-4 text-muted-foreground hover:text-primary py-1.5 font-medium" href="/" data-radix-collection-item="">Studio</a></li></ul></div><div class="absolute top-full left-0 isolate z-50 flex justify-center"></div></nav></div></div><div class="flex items-center gap-2 max-md:hidden"><a href="https://github.com/volcengine/veadk-python" target="_blank" data-slot="button" class="inline-flex items-center justify-center gap-2 whitespace-nowrap font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-10 rounded-md px-6 has-[>svg]:px-4 text-lg cursor-pointer"><div class=""><svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4" opacity="1" pathLength="1" stroke-dashoffset="0px" stroke-dasharray="1px 1px" style="transform:none;transform-origin:50% 50%;transform-box:fill-box"></path><path d="M9 18c-4.51 2-5-2-7-2" pathLength="1" stroke-dashoffset="0px" stroke-dasharray="1px 1px" style="transform:none;transform-origin:50% 50%;transform-box:fill-box"></path></svg></div></a><button data-slot="dialog-trigger" class="inline-flex items-center justify-center whitespace-nowrap font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive bg-primary text-primary-foreground shadow-xs hover:bg-primary/90 h-8 rounded-md gap-1.5 px-3 has-[>svg]:px-2.5 text-sm cursor-pointer" type="button" aria-haspopup="dialog" aria-expanded="false" aria-controls="radix-_R_2jb_" data-state="closed"><span class="flex items-baseline gap-2">Deploy to VeFaaS</span></button></div></div></header></div><div class="flex flex-1 w-full min-h-0 overflow-auto"><div class="flex flex-col mx-auto w-full px-4"><div class="w-full"><div class="container mx-auto"><div class="flex gap-8 py-20 lg:py-40 items-center justify-center flex-col"><div><button data-slot="button" class="inline-flex items-center justify-center whitespace-nowrap text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive bg-secondary text-secondary-foreground shadow-xs hover:bg-secondary/80 h-8 rounded-md px-3 has-[>svg]:px-2.5 gap-4 cursor-pointer"><a href="https://github.com/volcengine/veadk-python" target="_blank" class="flex items-center gap-3">Browse v0.1.0 <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-move-right w-4 h-4" aria-hidden="true"><path d="M18 8L22 12L18 16"></path><path d="M2 12H22"></path></svg></a></button></div><div class="flex gap-6 flex-col"><h1 class="text-5xl md:text-7xl max-w-full tracking-tighter text-center font-regular"><span class="text-spektr-cyan-50">Volcengine Agent Development Kit</span><span class="relative flex w-full justify-center overflow-hidden text-center md:pb-4 md:pt-1"> <span class="absolute font-semibold" style="opacity:0;transform:translateY(-100)">faster</span><span class="absolute font-semibold" style="opacity:0;transform:translateY(-100)">easier</span><span class="absolute font-semibold" style="opacity:0;transform:translateY(-100)">smarter</span></span></h1><p class="text-lg md:text-xl leading-relaxed tracking-tight text-muted-foreground max-w-full text-center">An agent development and cloud platform</p></div><div class="flex flex-row gap-3"><button data-slot="button" class="inline-flex items-center justify-center whitespace-nowrap text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive bg-primary text-primary-foreground shadow-xs hover:bg-primary/90 h-10 rounded-md px-6 has-[>svg]:px-4 gap-4 cursor-pointer">Local agent</button><button data-slot="button" class="inline-flex items-center justify-center whitespace-nowrap text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive border bg-background shadow-xs hover:bg-accent hover:text-accent-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/50 h-10 rounded-md px-6 has-[>svg]:px-4 gap-4 cursor-pointer">Connect with remote agent <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-move-right w-4 h-4" aria-hidden="true"><path d="M18 8L22 12L18 16"></path><path d="M2 12H22"></path></svg></button></div></div></div></div></div><!--$--><!--/$--></div><section aria-label="Notifications alt+T" tabindex="-1" aria-live="polite" aria-relevant="additions text" aria-atomic="false"></section><script src="/_next/static/chunks/webpack-14afc8861a1fe293.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[96159,[\"527\",\"static/chunks/527-1c65afbb202752bd.js\",\"4357\",\"static/chunks/4357-39eb6b5934ac97db.js\",\"261\",\"static/chunks/261-19b52c2c85aefb5d.js\",\"7177\",\"static/chunks/app/layout-b0d50d105c55fd6d.js\"],\"Popover\"]\n3:I[96159,[\"527\",\"static/chunks/527-1c65afbb202752bd.js\",\"4357\",\"static/chunks/4357-39eb6b5934ac97db.js\",\"261\",\"static/chunks/261-19b52c2c85aefb5d.js\",\"7177\",\"static/chunks/app/layout-b0d50d105c55fd6d.js\"],\"PopoverTrigger\"]\n4:I[96159,[\"527\",\"static/chunks/527-1c65afbb202752bd.js\",\"4357\",\"static/chunks/4357-39eb6b5934ac97db.js\",\"261\",\"static/chunks/261-19b52c2c85aefb5d.js\",\"7177\",\"static/chunks/app/layout-b0d50d105c55fd6d.js\"],\"PopoverContent\"]\n5:I[61223,[\"527\",\"static/chunks/527-1c65afbb202752bd.js\",\"4357\",\"static/chunks/4357-39eb6b5934ac97db.js\",\"261\",\"static/chunks/261-19b52c2c85aefb5d.js\",\"7177\",\"static/chunks/app/layout-b0d50d105c55fd6d.js\"],\"Root\"]\n6:I[61223,[\"527\",\"static/chunks/527-1c65afbb202752bd.js\",\"4357\",\"static/chunks/4357-39eb6b5934ac97db.js\",\"261\",\"static/chunks/261-19b52c2c85aefb5d.js\",\"7177\",\"static/chunks/app/layout-b0d50d105c55fd6d.js\"],\"List\"]\n7:I[61223,[\"527\",\"static/chunks/527-1c65afbb202752bd.js\",\"4357\",\"static/chunks/4357-39eb6b5934ac97db.js\",\"261\",\"static/chunks/261-19b52c2c85aefb5d.js\",\"7177\",\"static/chunks/app/layout-b0d50d105c55fd6d.js\"],\"Item\"]\n8:I[61223,[\"527\",\"static/chunks/527-1c65afbb202752bd.js\",\"4357\",\"static/chunks/4357-39eb6b5934ac97db.js\",\"261\",\"static/chunks/261-19b52c2c85aefb5d.js\",\"7177\",\"static/chunks/app/layout-b0d50d105c55fd6d.js\"],\"Link\"]\n13:I[3343,[],\"\"]\n:HL[\"/_next/static/media/569ce4b8f30dc480-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/93f479601ee12b01-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/css/366cfdd7fdd8bcac.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"gvLvin_lQcpkhQupQqPu1\",\"p\":\"\",\"c\":[\"\",\"\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"__PAGE__\",{}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/366cfdd7fdd8bcac.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"className\":\"__variable_5cfdac __variable_9a8899 antialiased flex flex-col min-h-dvh max-h-dvh w-full\",\"children\":[[\"$\",\"div\",null,{\"className\":\"flex w-full\",\"children\":[\"$\",\"header\",null,{\"className\":\"px-4 md:px-6 w-full\",\"children\":[\"$\",\"div\",null,{\"className\":\"flex h-16 items-center justify-between gap-4\",\"children\":[[\"$\",\"div\",null,{\"className\":\"flex flex-1 items-center gap-2\",\"children\":[[\"$\",\"$L2\",null,{\"children\":[[\"$\",\"$L3\",null,{\"asChild\":true,\"children\":[\"$\",\"button\",null,{\"data-slot\":\"button\",\"className\":\"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [\u0026_svg]:pointer-events-none [\u0026_svg:not([class*='size-'])]:size-4 shrink-0 [\u0026_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 group size-8 md:hidden\",\"children\":[\"$\",\"svg\",null,{\"className\":\"pointer-events-none\",\"width\":16,\"height\":16,\"viewBox\":\"0 0 24 24\",\"fill\":\"none\",\"stroke\":\"currentColor\",\"strokeWidth\":\"2\",\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"children\":[[\"$\",\"path\",null,{\"d\":\"M4 12L20 12\",\"className\":\"origin-center -translate-y-[7px] transition-all duration-300 ease-[cubic-bezier(.5,.85,.25,1.1)] group-aria-expanded:translate-x-0 group-aria-expanded:translate-y-0 group-aria-expanded:rotate-[315deg]\"}],[\"$\",\"path\",null,{\"d\":\"M4 12H20\",\"className\":\"origin-center transition-all duration-300 ease-[cubic-bezier(.5,.85,.25,1.8)] group-aria-expanded:rotate-45\"}],[\"$\",\"path\",null,{\"d\":\"M4 12H20\",\"className\":\"origin-center translate-y-[7px] transition-all duration-300 ease-[cubic-bezier(.5,.85,.25,1.1)] group-aria-expanded:translate-y-0 group-aria-expanded:rotate-[135deg]\"}]]}]}]}],[\"$\",\"$L4\",null,{\"align\":\"start\",\"className\":\"w-36 p-1 md:hidden\",\"children\":[\"$\",\"$L5\",null,{\"data-slot\":\"navigation-menu\",\"data-viewport\":true,\"className\":\"group/navigation-menu relative flex flex-1 items-center justify-center max-w-none *:w-full\",\"children\":[[\"$\",\"$L6\",null,{\"data-slot\":\"navigation-menu-list\",\"className\":\"group flex flex-1 list-none justify-center flex-col items-start gap-0 md:gap-2\",\"children\":[[[\"$\",\"$L7\",\"0\",{\"data-slot\":\"navigation-menu-item\",\"className\":\"relative w-full\",\"children\":[\"$\",\"$L8\",null,{\"data-slot\":\"navigation-menu-link\",\"className\":\"data-[active]:focus:bg-accent data-[active]:hover:bg-accent data-[active]:bg-accent data-[active]:text-accent-foreground hover:bg-accent focus:bg-accent focus:text-accent-foreground focus-visible:ring-ring/50 [\u0026_svg:not([class*='text-'])]:text-muted-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-all outline-none focus-visible:ring-[3px] focus-visible:outline-1 [\u0026_svg:not([class*='size-'])]:size-4 py-1.5\",\"href\":\"https://volcengine.github.io/veadk-python/\",\"target\":\"_blank\",\"children\":\"Documents\"}]}],[\"$\",\"$L7\",\"1\",{\"data-slot\":\"navigation-menu-item\",\"className\":\"relative w-full\",\"children\":[\"$\",\"$L8\",null,{\"data-slot\":\"navigation-menu-link\",\"className\":\"data-[active]:focus:bg-accent data-[active]:hover:bg-accent data-[active]:bg-accent data-[active]:text-accent-foreground hover:bg-accent focus:bg-accent focus:text-accent-foreground focus-visible:ring-ring/50 [\u0026_svg:not([class*='text-'])]:text-muted-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-all outline-none focus-visible:ring-[3px] focus-visible:outline-1 [\u0026_svg:not([class*='size-'])]:size-4 py-1.5\",\"href\":\"/\",\"target\":\"_blank\",\"children\":\"Studio\"}]}]],\"$L9\",\"$La\",\"$Lb\"]}],\"$Lc\"]}]}]]}],\"$Ld\"]}],\"$Le\"]}]}]}],\"$Lf\",\"$L10\"]}]}]]}],{\"children\":[\"__PAGE__\",\"$L11\",{},null,false]},null,false],\"$L12\",false]],\"m\":\"$undefined\",\"G\":[\"$13\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"14:I[61223,[\"527\",\"static/chunks/527-1c65afbb202752bd.js\",\"4357\",\"static/chunks/4357-39eb6b5934ac97db.js\",\"261\",\"static/chunks/261-19b52c2c85aefb5d.js\",\"7177\",\"static/chunks/app/layout-b0d50d105c55fd6d.js\"],\"Viewport\"]\n15:I[92945,[\"527\",\"static/chunks/527-1c65afbb202752bd.js\",\"4357\",\"static/chunks/4357-39eb6b5934ac97db.js\",\"261\",\"static/chunks/261-19b52c2c85aefb5d.js\",\"7177\",\"static/chunks/app/layout-b0d50d105c55fd6d.js\"],\"GithubIcon\"]\n16:I[17885,[\"527\",\"static/chunks/527-1c65afbb202752bd.js\",\"4357\",\"static/chunks/4357-39eb6b5934ac97db.js\",\"261\",\"static/chunks/261-19b52c2c85aefb5d.js\",\"7177\",\"static/chunks/app/layout-b0d50d105c55fd6d.js\"],\"default\"]\n17:I[66093,[],\"\"]\n18:I[12537,[],\"\"]\n19:I[98099,[\"527\",\"static/chunks/527-1c65afbb202752bd.js\",\"4357\",\"static/chunks/4357-39eb6b5934ac97db.js\",\"261\",\"static/chunks/261-19b52c2c85aefb5d.js\",\"7177\",\"static/chunks/app/layout-b0d50d105c55fd6d.js\"],\"Toaster\"]\n1a:I[87076,[],\"ClientPageRoot\"]\n1b:I[60547,[\"527\",\"static/chunks/527-1c65afbb202752bd.js\",\"8974\",\"static/chunks/app/page-7b51d29c96f44f61.js\"],\"default\"]\n1e:I[77939,[],\"OutletBoundary\"]\n20:I[13737,[],\"AsyncMetadataOutlet\"]\n22:I[77939,[],\"ViewportBoundary\"]\n24:I[77939,[],\"MetadataBoundary\"]\n25:\"$Sreact.suspense\"\n9:[\"$\",\"$L7\",null,{\"data-slot\":\"navigation-menu-item\",\"className\":\"relative w-full\",\"role\":\"presentation\",\"aria-hidden\":\"true\",\"children\":[\"$\",\"div\",null,{\"role\":\"separator\",\"aria-orientation\":\"horizontal\",\"className\":\"bg-border -mx-1 my-1 h-px\"}]}]\na:[\"$\",\"$L7\",null,{\"data-slot\":\"navigation-menu-item\",\"className\":\"relative w-full\",\"children\":[\"$\",\"$L8\",null,{\"data-slot\":\"navigation-menu-link\",\"className\":\"data-[active]:focus:bg-accent data-[active]:hover:bg-accent data-[active]:bg-accent data-[active]:text-accent-foreground hover:bg-accent focus:bg-accent focus:text-accent-foreground focus-visible:ring-ring/50 [\u0026_svg:not([class*='text-'])]:text-muted-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-all outline-none focus-visible:ring-[3px] focus-visible:outline-1 [\u0026_svg:not([class*='size-'])]:si"])</script><script>self.__next_f.push([1,"ze-4 py-1.5\",\"href\":\"#\",\"children\":\"Sign In\"}]}]\n"])</script><script>self.__next_f.push([1,"b:[\"$\",\"$L7\",null,{\"data-slot\":\"navigation-menu-item\",\"className\":\"relative w-full\",\"children\":[\"$\",\"span\",null,{\"className\":\"inline-flex items-center justify-center whitespace-nowrap font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [\u0026_svg]:pointer-events-none [\u0026_svg:not([class*='size-'])]:size-4 shrink-0 [\u0026_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive bg-primary text-primary-foreground shadow-xs hover:bg-primary/90 h-8 rounded-md gap-1.5 px-3 has-[\u003esvg]:px-2.5 mt-0.5 w-full text-left text-sm flex items-baseline gap-2\",\"children\":[\"Cart\",[\"$\",\"span\",null,{\"className\":\"text-primary-foreground/60 text-xs\",\"children\":\"2\"}]],\"data-slot\":\"button\",\"ref\":null}]}]\n"])</script><script>self.__next_f.push([1,"c:[\"$\",\"div\",null,{\"className\":\"absolute top-full left-0 isolate z-50 flex justify-center\",\"children\":[\"$\",\"$L14\",null,{\"data-slot\":\"navigation-menu-viewport\",\"className\":\"origin-top-center bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-90 relative mt-1.5 h-[var(--radix-navigation-menu-viewport-height)] w-full overflow-hidden rounded-md border shadow md:w-[var(--radix-navigation-menu-viewport-width)]\"}]}]\n"])</script><script>self.__next_f.push([1,"d:[\"$\",\"div\",null,{\"className\":\"flex flex-1 items-center gap-6 max-md:justify-between\",\"children\":[[\"$\",\"a\",null,{\"href\":\"#\",\"className\":\"text-primary font-bold hover:text-primary/90\",\"children\":\"VeADK Studio\"}],[\"$\",\"$L5\",null,{\"data-slot\":\"navigation-menu\",\"data-viewport\":true,\"className\":\"group/navigation-menu relative flex max-w-max flex-1 items-center justify-center max-md:hidden\",\"children\":[[\"$\",\"$L6\",null,{\"data-slot\":\"navigation-menu-list\",\"className\":\"group flex flex-1 list-none items-center justify-center gap-2\",\"children\":[[\"$\",\"$L7\",\"0\",{\"data-slot\":\"navigation-menu-item\",\"className\":\"relative\",\"children\":[\"$\",\"$L8\",null,{\"data-slot\":\"navigation-menu-link\",\"className\":\"data-[active]:focus:bg-accent data-[active]:hover:bg-accent data-[active]:bg-accent data-[active]:text-accent-foreground hover:bg-accent focus:bg-accent focus:text-accent-foreground focus-visible:ring-ring/50 [\u0026_svg:not([class*='text-'])]:text-muted-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-all outline-none focus-visible:ring-[3px] focus-visible:outline-1 [\u0026_svg:not([class*='size-'])]:size-4 text-muted-foreground hover:text-primary py-1.5 font-medium\",\"href\":\"https://volcengine.github.io/veadk-python/\",\"children\":\"Documents\"}]}],[\"$\",\"$L7\",\"1\",{\"data-slot\":\"navigation-menu-item\",\"className\":\"relative\",\"children\":[\"$\",\"$L8\",null,{\"data-slot\":\"navigation-menu-link\",\"className\":\"data-[active]:focus:bg-accent data-[active]:hover:bg-accent data-[active]:bg-accent data-[active]:text-accent-foreground hover:bg-accent focus:bg-accent focus:text-accent-foreground focus-visible:ring-ring/50 [\u0026_svg:not([class*='text-'])]:text-muted-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-all outline-none focus-visible:ring-[3px] focus-visible:outline-1 [\u0026_svg:not([class*='size-'])]:size-4 text-muted-foreground hover:text-primary py-1.5 font-medium\",\"href\":\"/\",\"children\":\"Studio\"}]}]]}],[\"$\",\"div\",null,{\"className\":\"absolute top-full left-0 isolate z-50 flex justify-center\",\"children\":[\"$\",\"$L14\",null,{\"data-slot\":\"navigation-menu-viewport\",\"className\":\"origin-top-center bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-90 relative mt-1.5 h-[var(--radix-navigation-menu-viewport-height)] w-full overflow-hidden rounded-md border shadow md:w-[var(--radix-navigation-menu-viewport-width)]\"}]}]]}]]}]\n"])</script><script>self.__next_f.push([1,"e:[\"$\",\"div\",null,{\"className\":\"flex items-center gap-2 max-md:hidden\",\"children\":[[\"$\",\"a\",null,{\"href\":\"https://github.com/volcengine/veadk-python\",\"target\":\"_blank\",\"children\":[\"$\",\"$L15\",null,{}],\"data-slot\":\"button\",\"className\":\"inline-flex items-center justify-center gap-2 whitespace-nowrap font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [\u0026_svg]:pointer-events-none [\u0026_svg:not([class*='size-'])]:size-4 shrink-0 [\u0026_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-10 rounded-md px-6 has-[\u003esvg]:px-4 text-lg cursor-pointer\",\"ref\":null}],[\"$\",\"$L16\",null,{}]]}]\n"])</script><script>self.__next_f.push([1,"f:[\"$\",\"div\",null,{\"className\":\"flex flex-1 w-full min-h-0 overflow-auto\",\"children\":[\"$\",\"$L17\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L18\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]\n"])</script><script>self.__next_f.push([1,"10:[\"$\",\"$L19\",null,{\"position\":\"top-center\"}]\n11:[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"$L1a\",null,{\"Component\":\"$1b\",\"searchParams\":{},\"params\":{},\"promises\":[\"$@1c\",\"$@1d\"]}],null,[\"$\",\"$L1e\",null,{\"children\":[\"$L1f\",[\"$\",\"$L20\",null,{\"promise\":\"$@21\"}]]}]]}]\n12:[\"$\",\"$1\",\"h\",{\"children\":[null,[[\"$\",\"$L22\",null,{\"children\":\"$L23\"}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]],[\"$\",\"$L24\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$25\",null,{\"fallback\":null,\"children\":\"$L26\"}]}]}]]}]\n"])</script><script>self.__next_f.push([1,"1c:{}\n1d:\"$11:props:children:0:props:params\"\n"])</script><script>self.__next_f.push([1,"23:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n1f:null\n"])</script><script>self.__next_f.push([1,"27:I[61257,[],\"IconMark\"]\n21:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"VeADK Studio - Volcengine Agent Development Kit Series\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"VeADK Studio is a web-based tool for developing and managing Volcengine agents.\"}],[\"$\",\"link\",\"2\",{\"rel\":\"shortcut icon\",\"href\":\"/favicon.ico\"}],[\"$\",\"link\",\"3\",{\"rel\":\"icon\",\"href\":\"/favicon.ico\",\"type\":\"image/x-icon\",\"sizes\":\"16x16\"}],[\"$\",\"link\",\"4\",{\"rel\":\"icon\",\"href\":\"/favicon.ico\"}],[\"$\",\"$L27\",\"5\",{}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"26:\"$21:metadata\"\n"])</script></body></html>
|
veadk/cli/studio/web/index.txt
DELETED
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
1:"$Sreact.fragment"
|
|
2
|
-
2:I[96159,["527","static/chunks/527-1c65afbb202752bd.js","4357","static/chunks/4357-39eb6b5934ac97db.js","261","static/chunks/261-19b52c2c85aefb5d.js","7177","static/chunks/app/layout-b0d50d105c55fd6d.js"],"Popover"]
|
|
3
|
-
3:I[96159,["527","static/chunks/527-1c65afbb202752bd.js","4357","static/chunks/4357-39eb6b5934ac97db.js","261","static/chunks/261-19b52c2c85aefb5d.js","7177","static/chunks/app/layout-b0d50d105c55fd6d.js"],"PopoverTrigger"]
|
|
4
|
-
4:I[96159,["527","static/chunks/527-1c65afbb202752bd.js","4357","static/chunks/4357-39eb6b5934ac97db.js","261","static/chunks/261-19b52c2c85aefb5d.js","7177","static/chunks/app/layout-b0d50d105c55fd6d.js"],"PopoverContent"]
|
|
5
|
-
5:I[61223,["527","static/chunks/527-1c65afbb202752bd.js","4357","static/chunks/4357-39eb6b5934ac97db.js","261","static/chunks/261-19b52c2c85aefb5d.js","7177","static/chunks/app/layout-b0d50d105c55fd6d.js"],"Root"]
|
|
6
|
-
6:I[61223,["527","static/chunks/527-1c65afbb202752bd.js","4357","static/chunks/4357-39eb6b5934ac97db.js","261","static/chunks/261-19b52c2c85aefb5d.js","7177","static/chunks/app/layout-b0d50d105c55fd6d.js"],"List"]
|
|
7
|
-
7:I[61223,["527","static/chunks/527-1c65afbb202752bd.js","4357","static/chunks/4357-39eb6b5934ac97db.js","261","static/chunks/261-19b52c2c85aefb5d.js","7177","static/chunks/app/layout-b0d50d105c55fd6d.js"],"Item"]
|
|
8
|
-
8:I[61223,["527","static/chunks/527-1c65afbb202752bd.js","4357","static/chunks/4357-39eb6b5934ac97db.js","261","static/chunks/261-19b52c2c85aefb5d.js","7177","static/chunks/app/layout-b0d50d105c55fd6d.js"],"Link"]
|
|
9
|
-
13:I[3343,[],""]
|
|
10
|
-
:HL["/_next/static/media/569ce4b8f30dc480-s.p.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
|
11
|
-
:HL["/_next/static/media/93f479601ee12b01-s.p.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
|
12
|
-
:HL["/_next/static/css/366cfdd7fdd8bcac.css","style"]
|
|
13
|
-
0:{"P":null,"b":"gvLvin_lQcpkhQupQqPu1","p":"","c":["",""],"i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/366cfdd7fdd8bcac.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"className":"__variable_5cfdac __variable_9a8899 antialiased flex flex-col min-h-dvh max-h-dvh w-full","children":[["$","div",null,{"className":"flex w-full","children":["$","header",null,{"className":"px-4 md:px-6 w-full","children":["$","div",null,{"className":"flex h-16 items-center justify-between gap-4","children":[["$","div",null,{"className":"flex flex-1 items-center gap-2","children":[["$","$L2",null,{"children":[["$","$L3",null,{"asChild":true,"children":["$","button",null,{"data-slot":"button","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 group size-8 md:hidden","children":["$","svg",null,{"className":"pointer-events-none","width":16,"height":16,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","xmlns":"http://www.w3.org/2000/svg","children":[["$","path",null,{"d":"M4 12L20 12","className":"origin-center -translate-y-[7px] transition-all duration-300 ease-[cubic-bezier(.5,.85,.25,1.1)] group-aria-expanded:translate-x-0 group-aria-expanded:translate-y-0 group-aria-expanded:rotate-[315deg]"}],["$","path",null,{"d":"M4 12H20","className":"origin-center transition-all duration-300 ease-[cubic-bezier(.5,.85,.25,1.8)] group-aria-expanded:rotate-45"}],["$","path",null,{"d":"M4 12H20","className":"origin-center translate-y-[7px] transition-all duration-300 ease-[cubic-bezier(.5,.85,.25,1.1)] group-aria-expanded:translate-y-0 group-aria-expanded:rotate-[135deg]"}]]}]}]}],["$","$L4",null,{"align":"start","className":"w-36 p-1 md:hidden","children":["$","$L5",null,{"data-slot":"navigation-menu","data-viewport":true,"className":"group/navigation-menu relative flex flex-1 items-center justify-center max-w-none *:w-full","children":[["$","$L6",null,{"data-slot":"navigation-menu-list","className":"group flex flex-1 list-none justify-center flex-col items-start gap-0 md:gap-2","children":[[["$","$L7","0",{"data-slot":"navigation-menu-item","className":"relative w-full","children":["$","$L8",null,{"data-slot":"navigation-menu-link","className":"data-[active]:focus:bg-accent data-[active]:hover:bg-accent data-[active]:bg-accent data-[active]:text-accent-foreground hover:bg-accent focus:bg-accent focus:text-accent-foreground focus-visible:ring-ring/50 [&_svg:not([class*='text-'])]:text-muted-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-all outline-none focus-visible:ring-[3px] focus-visible:outline-1 [&_svg:not([class*='size-'])]:size-4 py-1.5","href":"https://volcengine.github.io/veadk-python/","target":"_blank","children":"Documents"}]}],["$","$L7","1",{"data-slot":"navigation-menu-item","className":"relative w-full","children":["$","$L8",null,{"data-slot":"navigation-menu-link","className":"data-[active]:focus:bg-accent data-[active]:hover:bg-accent data-[active]:bg-accent data-[active]:text-accent-foreground hover:bg-accent focus:bg-accent focus:text-accent-foreground focus-visible:ring-ring/50 [&_svg:not([class*='text-'])]:text-muted-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-all outline-none focus-visible:ring-[3px] focus-visible:outline-1 [&_svg:not([class*='size-'])]:size-4 py-1.5","href":"/","target":"_blank","children":"Studio"}]}]],"$L9","$La","$Lb"]}],"$Lc"]}]}]]}],"$Ld"]}],"$Le"]}]}]}],"$Lf","$L10"]}]}]]}],{"children":["__PAGE__","$L11",{},null,false]},null,false],"$L12",false]],"m":"$undefined","G":["$13",[]],"s":false,"S":true}
|
|
14
|
-
14:I[61223,["527","static/chunks/527-1c65afbb202752bd.js","4357","static/chunks/4357-39eb6b5934ac97db.js","261","static/chunks/261-19b52c2c85aefb5d.js","7177","static/chunks/app/layout-b0d50d105c55fd6d.js"],"Viewport"]
|
|
15
|
-
15:I[92945,["527","static/chunks/527-1c65afbb202752bd.js","4357","static/chunks/4357-39eb6b5934ac97db.js","261","static/chunks/261-19b52c2c85aefb5d.js","7177","static/chunks/app/layout-b0d50d105c55fd6d.js"],"GithubIcon"]
|
|
16
|
-
16:I[17885,["527","static/chunks/527-1c65afbb202752bd.js","4357","static/chunks/4357-39eb6b5934ac97db.js","261","static/chunks/261-19b52c2c85aefb5d.js","7177","static/chunks/app/layout-b0d50d105c55fd6d.js"],"default"]
|
|
17
|
-
17:I[66093,[],""]
|
|
18
|
-
18:I[12537,[],""]
|
|
19
|
-
19:I[98099,["527","static/chunks/527-1c65afbb202752bd.js","4357","static/chunks/4357-39eb6b5934ac97db.js","261","static/chunks/261-19b52c2c85aefb5d.js","7177","static/chunks/app/layout-b0d50d105c55fd6d.js"],"Toaster"]
|
|
20
|
-
1a:I[87076,[],"ClientPageRoot"]
|
|
21
|
-
1b:I[60547,["527","static/chunks/527-1c65afbb202752bd.js","8974","static/chunks/app/page-7b51d29c96f44f61.js"],"default"]
|
|
22
|
-
1e:I[77939,[],"OutletBoundary"]
|
|
23
|
-
20:I[13737,[],"AsyncMetadataOutlet"]
|
|
24
|
-
22:I[77939,[],"ViewportBoundary"]
|
|
25
|
-
24:I[77939,[],"MetadataBoundary"]
|
|
26
|
-
25:"$Sreact.suspense"
|
|
27
|
-
9:["$","$L7",null,{"data-slot":"navigation-menu-item","className":"relative w-full","role":"presentation","aria-hidden":"true","children":["$","div",null,{"role":"separator","aria-orientation":"horizontal","className":"bg-border -mx-1 my-1 h-px"}]}]
|
|
28
|
-
a:["$","$L7",null,{"data-slot":"navigation-menu-item","className":"relative w-full","children":["$","$L8",null,{"data-slot":"navigation-menu-link","className":"data-[active]:focus:bg-accent data-[active]:hover:bg-accent data-[active]:bg-accent data-[active]:text-accent-foreground hover:bg-accent focus:bg-accent focus:text-accent-foreground focus-visible:ring-ring/50 [&_svg:not([class*='text-'])]:text-muted-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-all outline-none focus-visible:ring-[3px] focus-visible:outline-1 [&_svg:not([class*='size-'])]:size-4 py-1.5","href":"#","children":"Sign In"}]}]
|
|
29
|
-
b:["$","$L7",null,{"data-slot":"navigation-menu-item","className":"relative w-full","children":["$","span",null,{"className":"inline-flex items-center justify-center whitespace-nowrap font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive bg-primary text-primary-foreground shadow-xs hover:bg-primary/90 h-8 rounded-md gap-1.5 px-3 has-[>svg]:px-2.5 mt-0.5 w-full text-left text-sm flex items-baseline gap-2","children":["Cart",["$","span",null,{"className":"text-primary-foreground/60 text-xs","children":"2"}]],"data-slot":"button","ref":null}]}]
|
|
30
|
-
c:["$","div",null,{"className":"absolute top-full left-0 isolate z-50 flex justify-center","children":["$","$L14",null,{"data-slot":"navigation-menu-viewport","className":"origin-top-center bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-90 relative mt-1.5 h-[var(--radix-navigation-menu-viewport-height)] w-full overflow-hidden rounded-md border shadow md:w-[var(--radix-navigation-menu-viewport-width)]"}]}]
|
|
31
|
-
d:["$","div",null,{"className":"flex flex-1 items-center gap-6 max-md:justify-between","children":[["$","a",null,{"href":"#","className":"text-primary font-bold hover:text-primary/90","children":"VeADK Studio"}],["$","$L5",null,{"data-slot":"navigation-menu","data-viewport":true,"className":"group/navigation-menu relative flex max-w-max flex-1 items-center justify-center max-md:hidden","children":[["$","$L6",null,{"data-slot":"navigation-menu-list","className":"group flex flex-1 list-none items-center justify-center gap-2","children":[["$","$L7","0",{"data-slot":"navigation-menu-item","className":"relative","children":["$","$L8",null,{"data-slot":"navigation-menu-link","className":"data-[active]:focus:bg-accent data-[active]:hover:bg-accent data-[active]:bg-accent data-[active]:text-accent-foreground hover:bg-accent focus:bg-accent focus:text-accent-foreground focus-visible:ring-ring/50 [&_svg:not([class*='text-'])]:text-muted-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-all outline-none focus-visible:ring-[3px] focus-visible:outline-1 [&_svg:not([class*='size-'])]:size-4 text-muted-foreground hover:text-primary py-1.5 font-medium","href":"https://volcengine.github.io/veadk-python/","children":"Documents"}]}],["$","$L7","1",{"data-slot":"navigation-menu-item","className":"relative","children":["$","$L8",null,{"data-slot":"navigation-menu-link","className":"data-[active]:focus:bg-accent data-[active]:hover:bg-accent data-[active]:bg-accent data-[active]:text-accent-foreground hover:bg-accent focus:bg-accent focus:text-accent-foreground focus-visible:ring-ring/50 [&_svg:not([class*='text-'])]:text-muted-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-all outline-none focus-visible:ring-[3px] focus-visible:outline-1 [&_svg:not([class*='size-'])]:size-4 text-muted-foreground hover:text-primary py-1.5 font-medium","href":"/","children":"Studio"}]}]]}],["$","div",null,{"className":"absolute top-full left-0 isolate z-50 flex justify-center","children":["$","$L14",null,{"data-slot":"navigation-menu-viewport","className":"origin-top-center bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-90 relative mt-1.5 h-[var(--radix-navigation-menu-viewport-height)] w-full overflow-hidden rounded-md border shadow md:w-[var(--radix-navigation-menu-viewport-width)]"}]}]]}]]}]
|
|
32
|
-
e:["$","div",null,{"className":"flex items-center gap-2 max-md:hidden","children":[["$","a",null,{"href":"https://github.com/volcengine/veadk-python","target":"_blank","children":["$","$L15",null,{}],"data-slot":"button","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-10 rounded-md px-6 has-[>svg]:px-4 text-lg cursor-pointer","ref":null}],["$","$L16",null,{}]]}]
|
|
33
|
-
f:["$","div",null,{"className":"flex flex-1 w-full min-h-0 overflow-auto","children":["$","$L17",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L18",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]
|
|
34
|
-
10:["$","$L19",null,{"position":"top-center"}]
|
|
35
|
-
11:["$","$1","c",{"children":[["$","$L1a",null,{"Component":"$1b","searchParams":{},"params":{},"promises":["$@1c","$@1d"]}],null,["$","$L1e",null,{"children":["$L1f",["$","$L20",null,{"promise":"$@21"}]]}]]}]
|
|
36
|
-
12:["$","$1","h",{"children":[null,[["$","$L22",null,{"children":"$L23"}],["$","meta",null,{"name":"next-size-adjust","content":""}]],["$","$L24",null,{"children":["$","div",null,{"hidden":true,"children":["$","$25",null,{"fallback":null,"children":"$L26"}]}]}]]}]
|
|
37
|
-
1c:{}
|
|
38
|
-
1d:"$11:props:children:0:props:params"
|
|
39
|
-
23:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
40
|
-
1f:null
|
|
41
|
-
27:I[61257,[],"IconMark"]
|
|
42
|
-
21:{"metadata":[["$","title","0",{"children":"VeADK Studio - Volcengine Agent Development Kit Series"}],["$","meta","1",{"name":"description","content":"VeADK Studio is a web-based tool for developing and managing Volcengine agents."}],["$","link","2",{"rel":"shortcut icon","href":"/favicon.ico"}],["$","link","3",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"16x16"}],["$","link","4",{"rel":"icon","href":"/favicon.ico"}],["$","$L27","5",{}]],"error":null,"digest":"$undefined"}
|
|
43
|
-
26:"$21:metadata"
|
veadk/cli/studio/web/next.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 394 80"><path fill="#000" d="M262 0h68.5v12.7h-27.2v66.6h-13.6V12.7H262V0ZM149 0v12.7H94v20.4h44.3v12.6H94v21h55v12.6H80.5V0h68.7zm34.3 0h-17.8l63.8 79.4h17.9l-32-39.7 32-39.6h-17.9l-23 28.6-23-28.6zm18.3 56.7-9-11-27.1 33.7h17.8l18.3-22.7z"/><path fill="#000" d="M81 79.3 17 0H0v79.3h13.6V17l50.2 62.3H81Zm252.6-.4c-1 0-1.8-.4-2.5-1s-1.1-1.6-1.1-2.6.3-1.8 1-2.5 1.6-1 2.6-1 1.8.3 2.5 1a3.4 3.4 0 0 1 .6 4.3 3.7 3.7 0 0 1-3 1.8zm23.2-33.5h6v23.3c0 2.1-.4 4-1.3 5.5a9.1 9.1 0 0 1-3.8 3.5c-1.6.8-3.5 1.3-5.7 1.3-2 0-3.7-.4-5.3-1s-2.8-1.8-3.7-3.2c-.9-1.3-1.4-3-1.4-5h6c.1.8.3 1.6.7 2.2s1 1.2 1.6 1.5c.7.4 1.5.5 2.4.5 1 0 1.8-.2 2.4-.6a4 4 0 0 0 1.6-1.8c.3-.8.5-1.8.5-3V45.5zm30.9 9.1a4.4 4.4 0 0 0-2-3.3 7.5 7.5 0 0 0-4.3-1.1c-1.3 0-2.4.2-3.3.5-.9.4-1.6 1-2 1.6a3.5 3.5 0 0 0-.3 4c.3.5.7.9 1.3 1.2l1.8 1 2 .5 3.2.8c1.3.3 2.5.7 3.7 1.2a13 13 0 0 1 3.2 1.8 8.1 8.1 0 0 1 3 6.5c0 2-.5 3.7-1.5 5.1a10 10 0 0 1-4.4 3.5c-1.8.8-4.1 1.2-6.8 1.2-2.6 0-4.9-.4-6.8-1.2-2-.8-3.4-2-4.5-3.5a10 10 0 0 1-1.7-5.6h6a5 5 0 0 0 3.5 4.6c1 .4 2.2.6 3.4.6 1.3 0 2.5-.2 3.5-.6 1-.4 1.8-1 2.4-1.7a4 4 0 0 0 .8-2.4c0-.9-.2-1.6-.7-2.2a11 11 0 0 0-2.1-1.4l-3.2-1-3.8-1c-2.8-.7-5-1.7-6.6-3.2a7.2 7.2 0 0 1-2.4-5.7 8 8 0 0 1 1.7-5 10 10 0 0 1 4.3-3.5c2-.8 4-1.2 6.4-1.2 2.3 0 4.4.4 6.2 1.2 1.8.8 3.2 2 4.3 3.4 1 1.4 1.5 3 1.5 5h-5.8z"/></svg>
|
veadk/cli/studio/web/run.html
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html><!--gvLvin_lQcpkhQupQqPu1--><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="/_next/static/media/569ce4b8f30dc480-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" href="/_next/static/media/93f479601ee12b01-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" as="image" href="https://avatar.iran.liara.run/username?username="/><link rel="stylesheet" href="/_next/static/css/366cfdd7fdd8bcac.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-14afc8861a1fe293.js"/><script src="/_next/static/chunks/70207789-862965aac548ab2a.js" async=""></script><script src="/_next/static/chunks/7540-38c13446d29f43f2.js" async=""></script><script src="/_next/static/chunks/main-app-4a8ccba13aa7606b.js" async=""></script><script src="/_next/static/chunks/527-1c65afbb202752bd.js" async=""></script><script src="/_next/static/chunks/4357-39eb6b5934ac97db.js" async=""></script><script src="/_next/static/chunks/261-19b52c2c85aefb5d.js" async=""></script><script src="/_next/static/chunks/app/layout-b0d50d105c55fd6d.js" async=""></script><script src="/_next/static/chunks/63d31579-18fb2181524a9c6f.js" async=""></script><script src="/_next/static/chunks/6d60d248-1bbd761ee88ab2e4.js" async=""></script><script src="/_next/static/chunks/fc645be4-662fd2da08676daa.js" async=""></script><script src="/_next/static/chunks/2067-e02b0bc96d886930.js" async=""></script><script src="/_next/static/chunks/app/run/page-c2cd4dca690d6d29.js" async=""></script><meta name="next-size-adjust" content=""/><title>VeADK Studio - Volcengine Agent Development Kit Series</title><meta name="description" content="VeADK Studio is a web-based tool for developing and managing Volcengine agents."/><link rel="shortcut icon" href="/favicon.ico"/><link rel="icon" href="/favicon.ico" type="image/x-icon" sizes="16x16"/><link rel="icon" href="/favicon.ico"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="__variable_5cfdac __variable_9a8899 antialiased flex flex-col min-h-dvh max-h-dvh w-full"><div hidden=""><!--$--><!--/$--></div><div class="flex w-full"><header class="px-4 md:px-6 w-full"><div class="flex h-16 items-center justify-between gap-4"><div class="flex flex-1 items-center gap-2"><button data-slot="button" class="inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 group size-8 md:hidden" type="button" aria-haspopup="dialog" aria-expanded="false" aria-controls="radix-_R_1bb_" data-state="closed"><svg class="pointer-events-none" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><path d="M4 12L20 12" class="origin-center -translate-y-[7px] transition-all duration-300 ease-[cubic-bezier(.5,.85,.25,1.1)] group-aria-expanded:translate-x-0 group-aria-expanded:translate-y-0 group-aria-expanded:rotate-[315deg]"></path><path d="M4 12H20" class="origin-center transition-all duration-300 ease-[cubic-bezier(.5,.85,.25,1.8)] group-aria-expanded:rotate-45"></path><path d="M4 12H20" class="origin-center translate-y-[7px] transition-all duration-300 ease-[cubic-bezier(.5,.85,.25,1.1)] group-aria-expanded:translate-y-0 group-aria-expanded:rotate-[135deg]"></path></svg></button><div class="flex flex-1 items-center gap-6 max-md:justify-between"><a href="#" class="text-primary font-bold hover:text-primary/90">VeADK Studio</a><nav aria-label="Main" data-orientation="horizontal" dir="ltr" data-slot="navigation-menu" data-viewport="true" class="group/navigation-menu relative flex max-w-max flex-1 items-center justify-center max-md:hidden"><div style="position:relative"><ul data-orientation="horizontal" data-slot="navigation-menu-list" class="group flex flex-1 list-none items-center justify-center gap-2" dir="ltr"><li data-slot="navigation-menu-item" class="relative"><a data-slot="navigation-menu-link" class="data-[active]:focus:bg-accent data-[active]:hover:bg-accent data-[active]:bg-accent data-[active]:text-accent-foreground hover:bg-accent focus:bg-accent focus:text-accent-foreground focus-visible:ring-ring/50 [&_svg:not([class*='text-'])]:text-muted-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-all outline-none focus-visible:ring-[3px] focus-visible:outline-1 [&_svg:not([class*='size-'])]:size-4 text-muted-foreground hover:text-primary py-1.5 font-medium" href="https://volcengine.github.io/veadk-python/" data-radix-collection-item="">Documents</a></li><li data-slot="navigation-menu-item" class="relative"><a data-slot="navigation-menu-link" class="data-[active]:focus:bg-accent data-[active]:hover:bg-accent data-[active]:bg-accent data-[active]:text-accent-foreground hover:bg-accent focus:bg-accent focus:text-accent-foreground focus-visible:ring-ring/50 [&_svg:not([class*='text-'])]:text-muted-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-all outline-none focus-visible:ring-[3px] focus-visible:outline-1 [&_svg:not([class*='size-'])]:size-4 text-muted-foreground hover:text-primary py-1.5 font-medium" href="/" data-radix-collection-item="">Studio</a></li></ul></div><div class="absolute top-full left-0 isolate z-50 flex justify-center"></div></nav></div></div><div class="flex items-center gap-2 max-md:hidden"><a href="https://github.com/volcengine/veadk-python" target="_blank" data-slot="button" class="inline-flex items-center justify-center gap-2 whitespace-nowrap font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-10 rounded-md px-6 has-[>svg]:px-4 text-lg cursor-pointer"><div class=""><svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4" opacity="1" pathLength="1" stroke-dashoffset="0px" stroke-dasharray="1px 1px" style="transform:none;transform-origin:50% 50%;transform-box:fill-box"></path><path d="M9 18c-4.51 2-5-2-7-2" pathLength="1" stroke-dashoffset="0px" stroke-dasharray="1px 1px" style="transform:none;transform-origin:50% 50%;transform-box:fill-box"></path></svg></div></a><button data-slot="dialog-trigger" class="inline-flex items-center justify-center whitespace-nowrap font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive bg-primary text-primary-foreground shadow-xs hover:bg-primary/90 h-8 rounded-md gap-1.5 px-3 has-[>svg]:px-2.5 text-sm cursor-pointer" type="button" aria-haspopup="dialog" aria-expanded="false" aria-controls="radix-_R_2jb_" data-state="closed"><span class="flex items-baseline gap-2">Deploy to VeFaaS</span></button></div></div></header></div><div class="flex flex-1 w-full min-h-0 overflow-auto"><div class="flex flex-col min-w-3xl max-w-3xl mx-auto min-h-0 w-full px-4 md:px-6 pb-3 gap-3"><div class="flex flex-row gap-3 items-center"><div class="flex flex-1 mr-auto gap-3 border-r border-r-border items-center"><img src="https://avatar.iran.liara.run/username?username=" class="size-10 rounded-full shadow-md"/><div class="font-bold"></div></div><div class="flex ml-auto gap-3"><button data-slot="popover-trigger" class="inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive bg-secondary text-secondary-foreground shadow-xs hover:bg-secondary/80 size-9 cursor-pointer" type="button" aria-haspopup="dialog" aria-expanded="false" aria-controls="radix-_R_1ilubtb_" data-state="closed"><div class=""><svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z"></path><circle cx="12" cy="12" r="3"></circle></svg></div></button><button data-slot="popover-trigger" class="inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive bg-secondary text-secondary-foreground shadow-xs hover:bg-secondary/80 size-9 cursor-pointer" type="button" aria-haspopup="dialog" aria-expanded="false" aria-controls="radix-_R_2ilubtb_" data-state="closed"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 24 24" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg"><path d="M13.5 2C13.5 2.44425 13.3069 2.84339 13 3.11805V5H18C19.6569 5 21 6.34315 21 8V18C21 19.6569 19.6569 21 18 21H6C4.34315 21 3 19.6569 3 18V8C3 6.34315 4.34315 5 6 5H11V3.11805C10.6931 2.84339 10.5 2.44425 10.5 2C10.5 1.17157 11.1716 0.5 12 0.5C12.8284 0.5 13.5 1.17157 13.5 2ZM6 7C5.44772 7 5 7.44772 5 8V18C5 18.5523 5.44772 19 6 19H18C18.5523 19 19 18.5523 19 18V8C19 7.44772 18.5523 7 18 7H13H11H6ZM2 10H0V16H2V10ZM22 10H24V16H22V10ZM9 14.5C9.82843 14.5 10.5 13.8284 10.5 13C10.5 12.1716 9.82843 11.5 9 11.5C8.17157 11.5 7.5 12.1716 7.5 13C7.5 13.8284 8.17157 14.5 9 14.5ZM15 14.5C15.8284 14.5 16.5 13.8284 16.5 13C16.5 12.1716 15.8284 11.5 15 11.5C14.1716 11.5 13.5 12.1716 13.5 13C13.5 13.8284 14.1716 14.5 15 14.5Z"></path></svg></button><button data-slot="tooltip-trigger" class="inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive bg-secondary text-secondary-foreground shadow-xs hover:bg-secondary/80 size-9 cursor-pointer" type="button" aria-haspopup="dialog" aria-expanded="false" aria-controls="radix-_R_3ilubtb_" data-state="closed"><svg stroke="currentColor" fill="currentColor" stroke-width="0" viewBox="0 0 512 512" class="text-blue-500" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg"><path d="M250.53 22.03c-57.055 45.157-80.673 37.81-100.31.22 16.598 61.517 10.408 66.415-44.72 116.594 67.324-35.666 96.206-34.238 130.97 7.187-34.906-53.112-30.954-75.35 14.06-124zm18.407.126l11.688 114.938-99.875 58.094 97.75 21.093c-9.58 8.352-20.214 19.028-31.28 30.095l-.032.03L18.563 472.438v19.438h32.156L273.343 272.5c10.26-10.263 18.902-19.538 25.78-27.75l18.938 87.75 58.094-99.875 114.938 11.688-77.03-86.094 46.655-105.69-105.69 46.657-86.092-77.03zM26.875 55.938c33.765 27.66 35.21 42.767 30.75 87.78 18.975-53.73 27.964-67.297 64.5-82C82.972 71.094 66.21 73 26.875 55.94zm54.75 102.406c24.955 27.012 26.97 43.684 24.25 72.062 14.775-34.45 22.072-45.66 55.625-64.312-34.56 11.183-45.5 10.22-79.875-7.75zm325.594 95c9.27 51.694-4.61 73.708-32.845 106.687 43.3-37.043 57.852-44.284 96.844-38.75-38.597-11.457-47.426-20.624-64-67.936zm-55.658 72.812c-18.705 68.79-45.304 83.944-107.625 70.125 54.126 20.1 56.34 21.07 53.532 85.25 24.757-55.42 46.49-52.217 95.06-37.217-41.775-31.838-45.71-48.97-40.967-118.157zm109.344 55.97c-15.32 17.994-22.932 17.49-43.812 9.343 22.828 18.444 17.596 34.024 10.844 59.405 16.05-19.12 23.516-25.237 50.312-12.688-22.86-21.342-27.13-29.857-17.344-56.062z"></path></svg></button><button data-slot="tooltip-trigger" class="inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive bg-secondary text-secondary-foreground shadow-xs hover:bg-secondary/80 size-9 cursor-pointer" type="button" aria-haspopup="dialog" aria-expanded="false" aria-controls="radix-_R_4ilubtb_" data-state="closed"><div class="text-blue-500"><svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2" opacity="1" pathLength="1" stroke-dashoffset="0px" stroke-dasharray="1px 1px"></path></svg></div></button><button data-slot="tooltip-trigger" class="inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive bg-secondary text-secondary-foreground shadow-xs hover:bg-secondary/80 size-9 cursor-pointer" type="button" aria-haspopup="dialog" aria-expanded="false" aria-controls="radix-_R_5ilubtb_" data-state="closed"><div class="text-blue-500"><svg xmlns="http://www.w3.org/2000/svg" width="28" height="28" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 3v16a2 2 0 0 0 2 2h16"></path><path d="M7 16c.5-2 1.5-7 4-7 2 0 2 3 4 3 2.5 0 4.5-5 5-7"></path></svg></div></button><button data-slot="tooltip-trigger" class="inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive bg-secondary text-secondary-foreground shadow-xs hover:bg-secondary/80 size-9 cursor-pointer" disabled="" type="button" aria-haspopup="dialog" aria-expanded="false" aria-controls="radix-_R_6ilubtb_" data-state="closed"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-save size-5 text-blue-500" aria-hidden="true"><path d="M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z"></path><path d="M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7"></path><path d="M7 3v4a1 1 0 0 0 1 1h7"></path></svg></button></div></div><div class="flex flex-1 h-full w-full flex-col overflow-hidden relative"><div class="flex overflow-y-auto flex-1" role="log"><div style="height:100%;width:100%"><div class="flex w-full flex-col space-y-4 py-4 px-2"></div></div><div class="absolute right-7 bottom-4"><button data-slot="button" class="inline-flex items-center justify-center whitespace-nowrap text-sm font-medium disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive border bg-background hover:bg-accent hover:text-accent-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/50 gap-1.5 px-3 has-[>svg]:px-2.5 h-10 w-10 rounded-full transition-all duration-150 ease-out pointer-events-none translate-y-4 scale-95 opacity-0 shadow-sm"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-down h-5 w-5" aria-hidden="true"><path d="m6 9 6 6 6-6"></path></svg></button></div></div></div><div class="border-input bg-background cursor-text rounded-3xl border p-2 shadow-xs w-full"><textarea data-slot="textarea" class="border-input placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive dark:bg-input/30 flex field-sizing-content rounded-md border px-3 py-2 text-base transition-[color,box-shadow] disabled:cursor-not-allowed disabled:opacity-50 md:text-sm text-primary w-full resize-none border-none bg-transparent shadow-none outline-none focus-visible:ring-0 focus-visible:ring-offset-0 min-h-[66px]" rows="1" placeholder="Ask me anything..."></textarea><div class="items-center gap-2 flex pt-2 justify-between"><div class="flex items-center gap-2"><span data-slot="tooltip-trigger" class="justify-center rounded-md border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden border-transparent bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 flex items-center gap-2 group online" data-state="closed"><span class="relative flex h-2 w-2"><span class="absolute inline-flex h-full w-full animate-ping rounded-full opacity-75 group-[.online]:bg-emerald-500 group-[.offline]:bg-red-500 group-[.maintenance]:bg-blue-500 group-[.degraded]:bg-amber-500"></span><span class="relative inline-flex h-2 w-2 rounded-full group-[.online]:bg-emerald-500 group-[.offline]:bg-red-500 group-[.maintenance]:bg-blue-500 group-[.degraded]:bg-amber-500"></span></span><span class="text-muted-foreground"></span></span></div><button data-slot="tooltip-trigger" class="inline-flex items-center justify-center gap-2 whitespace-nowrap text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive bg-primary text-primary-foreground shadow-xs hover:bg-primary/90 size-9 h-8 w-8 rounded-full ml-auto cursor-pointer" data-state="closed"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-arrow-up size-5" aria-hidden="true"><path d="m5 12 7-7 7 7"></path><path d="M12 19V5"></path></svg></button></div></div></div><!--$--><!--/$--></div><section aria-label="Notifications alt+T" tabindex="-1" aria-live="polite" aria-relevant="additions text" aria-atomic="false"></section><script src="/_next/static/chunks/webpack-14afc8861a1fe293.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[96159,[\"527\",\"static/chunks/527-1c65afbb202752bd.js\",\"4357\",\"static/chunks/4357-39eb6b5934ac97db.js\",\"261\",\"static/chunks/261-19b52c2c85aefb5d.js\",\"7177\",\"static/chunks/app/layout-b0d50d105c55fd6d.js\"],\"Popover\"]\n3:I[96159,[\"527\",\"static/chunks/527-1c65afbb202752bd.js\",\"4357\",\"static/chunks/4357-39eb6b5934ac97db.js\",\"261\",\"static/chunks/261-19b52c2c85aefb5d.js\",\"7177\",\"static/chunks/app/layout-b0d50d105c55fd6d.js\"],\"PopoverTrigger\"]\n4:I[96159,[\"527\",\"static/chunks/527-1c65afbb202752bd.js\",\"4357\",\"static/chunks/4357-39eb6b5934ac97db.js\",\"261\",\"static/chunks/261-19b52c2c85aefb5d.js\",\"7177\",\"static/chunks/app/layout-b0d50d105c55fd6d.js\"],\"PopoverContent\"]\n5:I[61223,[\"527\",\"static/chunks/527-1c65afbb202752bd.js\",\"4357\",\"static/chunks/4357-39eb6b5934ac97db.js\",\"261\",\"static/chunks/261-19b52c2c85aefb5d.js\",\"7177\",\"static/chunks/app/layout-b0d50d105c55fd6d.js\"],\"Root\"]\n6:I[61223,[\"527\",\"static/chunks/527-1c65afbb202752bd.js\",\"4357\",\"static/chunks/4357-39eb6b5934ac97db.js\",\"261\",\"static/chunks/261-19b52c2c85aefb5d.js\",\"7177\",\"static/chunks/app/layout-b0d50d105c55fd6d.js\"],\"List\"]\n7:I[61223,[\"527\",\"static/chunks/527-1c65afbb202752bd.js\",\"4357\",\"static/chunks/4357-39eb6b5934ac97db.js\",\"261\",\"static/chunks/261-19b52c2c85aefb5d.js\",\"7177\",\"static/chunks/app/layout-b0d50d105c55fd6d.js\"],\"Item\"]\n8:I[61223,[\"527\",\"static/chunks/527-1c65afbb202752bd.js\",\"4357\",\"static/chunks/4357-39eb6b5934ac97db.js\",\"261\",\"static/chunks/261-19b52c2c85aefb5d.js\",\"7177\",\"static/chunks/app/layout-b0d50d105c55fd6d.js\"],\"Link\"]\n14:I[3343,[],\"\"]\n:HL[\"/_next/static/media/569ce4b8f30dc480-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/93f479601ee12b01-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/css/366cfdd7fdd8bcac.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"gvLvin_lQcpkhQupQqPu1\",\"p\":\"\",\"c\":[\"\",\"run\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"run\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/366cfdd7fdd8bcac.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"className\":\"__variable_5cfdac __variable_9a8899 antialiased flex flex-col min-h-dvh max-h-dvh w-full\",\"children\":[[\"$\",\"div\",null,{\"className\":\"flex w-full\",\"children\":[\"$\",\"header\",null,{\"className\":\"px-4 md:px-6 w-full\",\"children\":[\"$\",\"div\",null,{\"className\":\"flex h-16 items-center justify-between gap-4\",\"children\":[[\"$\",\"div\",null,{\"className\":\"flex flex-1 items-center gap-2\",\"children\":[[\"$\",\"$L2\",null,{\"children\":[[\"$\",\"$L3\",null,{\"asChild\":true,\"children\":[\"$\",\"button\",null,{\"data-slot\":\"button\",\"className\":\"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [\u0026_svg]:pointer-events-none [\u0026_svg:not([class*='size-'])]:size-4 shrink-0 [\u0026_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 group size-8 md:hidden\",\"children\":[\"$\",\"svg\",null,{\"className\":\"pointer-events-none\",\"width\":16,\"height\":16,\"viewBox\":\"0 0 24 24\",\"fill\":\"none\",\"stroke\":\"currentColor\",\"strokeWidth\":\"2\",\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"children\":[[\"$\",\"path\",null,{\"d\":\"M4 12L20 12\",\"className\":\"origin-center -translate-y-[7px] transition-all duration-300 ease-[cubic-bezier(.5,.85,.25,1.1)] group-aria-expanded:translate-x-0 group-aria-expanded:translate-y-0 group-aria-expanded:rotate-[315deg]\"}],[\"$\",\"path\",null,{\"d\":\"M4 12H20\",\"className\":\"origin-center transition-all duration-300 ease-[cubic-bezier(.5,.85,.25,1.8)] group-aria-expanded:rotate-45\"}],[\"$\",\"path\",null,{\"d\":\"M4 12H20\",\"className\":\"origin-center translate-y-[7px] transition-all duration-300 ease-[cubic-bezier(.5,.85,.25,1.1)] group-aria-expanded:translate-y-0 group-aria-expanded:rotate-[135deg]\"}]]}]}]}],[\"$\",\"$L4\",null,{\"align\":\"start\",\"className\":\"w-36 p-1 md:hidden\",\"children\":[\"$\",\"$L5\",null,{\"data-slot\":\"navigation-menu\",\"data-viewport\":true,\"className\":\"group/navigation-menu relative flex flex-1 items-center justify-center max-w-none *:w-full\",\"children\":[[\"$\",\"$L6\",null,{\"data-slot\":\"navigation-menu-list\",\"className\":\"group flex flex-1 list-none justify-center flex-col items-start gap-0 md:gap-2\",\"children\":[[[\"$\",\"$L7\",\"0\",{\"data-slot\":\"navigation-menu-item\",\"className\":\"relative w-full\",\"children\":[\"$\",\"$L8\",null,{\"data-slot\":\"navigation-menu-link\",\"className\":\"data-[active]:focus:bg-accent data-[active]:hover:bg-accent data-[active]:bg-accent data-[active]:text-accent-foreground hover:bg-accent focus:bg-accent focus:text-accent-foreground focus-visible:ring-ring/50 [\u0026_svg:not([class*='text-'])]:text-muted-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-all outline-none focus-visible:ring-[3px] focus-visible:outline-1 [\u0026_svg:not([class*='size-'])]:size-4 py-1.5\",\"href\":\"https://volcengine.github.io/veadk-python/\",\"target\":\"_blank\",\"children\":\"Documents\"}]}],[\"$\",\"$L7\",\"1\",{\"data-slot\":\"navigation-menu-item\",\"className\":\"relative w-full\",\"children\":[\"$\",\"$L8\",null,{\"data-slot\":\"navigation-menu-link\",\"className\":\"data-[active]:focus:bg-accent data-[active]:hover:bg-accent data-[active]:bg-accent data-[active]:text-accent-foreground hover:bg-accent focus:bg-accent focus:text-accent-foreground focus-visible:ring-ring/50 [\u0026_svg:not([class*='text-'])]:text-muted-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-all outline-none focus-visible:ring-[3px] focus-visible:outline-1 [\u0026_svg:not([class*='size-'])]:size-4 py-1.5\",\"href\":\"/\",\"target\":\"_blank\",\"children\":\"Studio\"}]}]],\"$L9\",\"$La\",\"$Lb\"]}],\"$Lc\"]}]}]]}],\"$Ld\"]}],\"$Le\"]}]}]}],\"$Lf\",\"$L10\"]}]}]]}],{\"children\":[\"run\",\"$L11\",{\"children\":[\"__PAGE__\",\"$L12\",{},null,false]},null,false]},null,false],\"$L13\",false]],\"m\":\"$undefined\",\"G\":[\"$14\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"15:I[61223,[\"527\",\"static/chunks/527-1c65afbb202752bd.js\",\"4357\",\"static/chunks/4357-39eb6b5934ac97db.js\",\"261\",\"static/chunks/261-19b52c2c85aefb5d.js\",\"7177\",\"static/chunks/app/layout-b0d50d105c55fd6d.js\"],\"Viewport\"]\n16:I[92945,[\"527\",\"static/chunks/527-1c65afbb202752bd.js\",\"4357\",\"static/chunks/4357-39eb6b5934ac97db.js\",\"261\",\"static/chunks/261-19b52c2c85aefb5d.js\",\"7177\",\"static/chunks/app/layout-b0d50d105c55fd6d.js\"],\"GithubIcon\"]\n17:I[17885,[\"527\",\"static/chunks/527-1c65afbb202752bd.js\",\"4357\",\"static/chunks/4357-39eb6b5934ac97db.js\",\"261\",\"static/chunks/261-19b52c2c85aefb5d.js\",\"7177\",\"static/chunks/app/layout-b0d50d105c55fd6d.js\"],\"default\"]\n18:I[66093,[],\"\"]\n19:I[12537,[],\"\"]\n1a:I[98099,[\"527\",\"static/chunks/527-1c65afbb202752bd.js\",\"4357\",\"static/chunks/4357-39eb6b5934ac97db.js\",\"261\",\"static/chunks/261-19b52c2c85aefb5d.js\",\"7177\",\"static/chunks/app/layout-b0d50d105c55fd6d.js\"],\"Toaster\"]\n1b:I[87076,[],\"ClientPageRoot\"]\n1c:I[94292,[\"5719\",\"static/chunks/63d31579-18fb2181524a9c6f.js\",\"3169\",\"static/chunks/6d60d248-1bbd761ee88ab2e4.js\",\"8358\",\"static/chunks/fc645be4-662fd2da08676daa.js\",\"527\",\"static/chunks/527-1c65afbb202752bd.js\",\"4357\",\"static/chunks/4357-39eb6b5934ac97db.js\",\"2067\",\"static/chunks/2067-e02b0bc96d886930.js\",\"6064\",\"static/chunks/app/run/page-c2cd4dca690d6d29.js\"],\"default\",1]\n1f:I[77939,[],\"OutletBoundary\"]\n21:I[13737,[],\"AsyncMetadataOutlet\"]\n23:I[77939,[],\"ViewportBoundary\"]\n25:I[77939,[],\"MetadataBoundary\"]\n26:\"$Sreact.suspense\"\n9:[\"$\",\"$L7\",null,{\"data-slot\":\"navigation-menu-item\",\"className\":\"relative w-full\",\"role\":\"presentation\",\"aria-hidden\":\"true\",\"children\":[\"$\",\"div\",null,{\"role\":\"separator\",\"aria-orientation\":\"horizontal\",\"className\":\"bg-border -mx-1 my-1 h-px\"}]}]\na:[\"$\",\"$L7\",null,{\"data-slot\":\"navigation-menu-item\",\"className\":\"relative w-full\",\"children\":[\"$\",\"$L8\",null,{\"data-slot\":\"navigation-menu-link\",\"className\":\"data-[active]:focus:bg-accent data-[active]:hover:bg-accent data-[active]:bg-accent data-[active]:text-accent-foreground hover:bg-accent focus:bg-accent fo"])</script><script>self.__next_f.push([1,"cus:text-accent-foreground focus-visible:ring-ring/50 [\u0026_svg:not([class*='text-'])]:text-muted-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-all outline-none focus-visible:ring-[3px] focus-visible:outline-1 [\u0026_svg:not([class*='size-'])]:size-4 py-1.5\",\"href\":\"#\",\"children\":\"Sign In\"}]}]\n"])</script><script>self.__next_f.push([1,"b:[\"$\",\"$L7\",null,{\"data-slot\":\"navigation-menu-item\",\"className\":\"relative w-full\",\"children\":[\"$\",\"span\",null,{\"className\":\"inline-flex items-center justify-center whitespace-nowrap font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [\u0026_svg]:pointer-events-none [\u0026_svg:not([class*='size-'])]:size-4 shrink-0 [\u0026_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive bg-primary text-primary-foreground shadow-xs hover:bg-primary/90 h-8 rounded-md gap-1.5 px-3 has-[\u003esvg]:px-2.5 mt-0.5 w-full text-left text-sm flex items-baseline gap-2\",\"children\":[\"Cart\",[\"$\",\"span\",null,{\"className\":\"text-primary-foreground/60 text-xs\",\"children\":\"2\"}]],\"data-slot\":\"button\",\"ref\":null}]}]\n"])</script><script>self.__next_f.push([1,"c:[\"$\",\"div\",null,{\"className\":\"absolute top-full left-0 isolate z-50 flex justify-center\",\"children\":[\"$\",\"$L15\",null,{\"data-slot\":\"navigation-menu-viewport\",\"className\":\"origin-top-center bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-90 relative mt-1.5 h-[var(--radix-navigation-menu-viewport-height)] w-full overflow-hidden rounded-md border shadow md:w-[var(--radix-navigation-menu-viewport-width)]\"}]}]\n"])</script><script>self.__next_f.push([1,"d:[\"$\",\"div\",null,{\"className\":\"flex flex-1 items-center gap-6 max-md:justify-between\",\"children\":[[\"$\",\"a\",null,{\"href\":\"#\",\"className\":\"text-primary font-bold hover:text-primary/90\",\"children\":\"VeADK Studio\"}],[\"$\",\"$L5\",null,{\"data-slot\":\"navigation-menu\",\"data-viewport\":true,\"className\":\"group/navigation-menu relative flex max-w-max flex-1 items-center justify-center max-md:hidden\",\"children\":[[\"$\",\"$L6\",null,{\"data-slot\":\"navigation-menu-list\",\"className\":\"group flex flex-1 list-none items-center justify-center gap-2\",\"children\":[[\"$\",\"$L7\",\"0\",{\"data-slot\":\"navigation-menu-item\",\"className\":\"relative\",\"children\":[\"$\",\"$L8\",null,{\"data-slot\":\"navigation-menu-link\",\"className\":\"data-[active]:focus:bg-accent data-[active]:hover:bg-accent data-[active]:bg-accent data-[active]:text-accent-foreground hover:bg-accent focus:bg-accent focus:text-accent-foreground focus-visible:ring-ring/50 [\u0026_svg:not([class*='text-'])]:text-muted-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-all outline-none focus-visible:ring-[3px] focus-visible:outline-1 [\u0026_svg:not([class*='size-'])]:size-4 text-muted-foreground hover:text-primary py-1.5 font-medium\",\"href\":\"https://volcengine.github.io/veadk-python/\",\"children\":\"Documents\"}]}],[\"$\",\"$L7\",\"1\",{\"data-slot\":\"navigation-menu-item\",\"className\":\"relative\",\"children\":[\"$\",\"$L8\",null,{\"data-slot\":\"navigation-menu-link\",\"className\":\"data-[active]:focus:bg-accent data-[active]:hover:bg-accent data-[active]:bg-accent data-[active]:text-accent-foreground hover:bg-accent focus:bg-accent focus:text-accent-foreground focus-visible:ring-ring/50 [\u0026_svg:not([class*='text-'])]:text-muted-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-all outline-none focus-visible:ring-[3px] focus-visible:outline-1 [\u0026_svg:not([class*='size-'])]:size-4 text-muted-foreground hover:text-primary py-1.5 font-medium\",\"href\":\"/\",\"children\":\"Studio\"}]}]]}],[\"$\",\"div\",null,{\"className\":\"absolute top-full left-0 isolate z-50 flex justify-center\",\"children\":[\"$\",\"$L15\",null,{\"data-slot\":\"navigation-menu-viewport\",\"className\":\"origin-top-center bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-90 relative mt-1.5 h-[var(--radix-navigation-menu-viewport-height)] w-full overflow-hidden rounded-md border shadow md:w-[var(--radix-navigation-menu-viewport-width)]\"}]}]]}]]}]\n"])</script><script>self.__next_f.push([1,"e:[\"$\",\"div\",null,{\"className\":\"flex items-center gap-2 max-md:hidden\",\"children\":[[\"$\",\"a\",null,{\"href\":\"https://github.com/volcengine/veadk-python\",\"target\":\"_blank\",\"children\":[\"$\",\"$L16\",null,{}],\"data-slot\":\"button\",\"className\":\"inline-flex items-center justify-center gap-2 whitespace-nowrap font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [\u0026_svg]:pointer-events-none [\u0026_svg:not([class*='size-'])]:size-4 shrink-0 [\u0026_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-10 rounded-md px-6 has-[\u003esvg]:px-4 text-lg cursor-pointer\",\"ref\":null}],[\"$\",\"$L17\",null,{}]]}]\n"])</script><script>self.__next_f.push([1,"f:[\"$\",\"div\",null,{\"className\":\"flex flex-1 w-full min-h-0 overflow-auto\",\"children\":[\"$\",\"$L18\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L19\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]\n"])</script><script>self.__next_f.push([1,"10:[\"$\",\"$L1a\",null,{\"position\":\"top-center\"}]\n11:[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L18\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L19\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}]\n12:[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"$L1b\",null,{\"Component\":\"$1c\",\"searchParams\":{},\"params\":{},\"promises\":[\"$@1d\",\"$@1e\"]}],null,[\"$\",\"$L1f\",null,{\"children\":[\"$L20\",[\"$\",\"$L21\",null,{\"promise\":\"$@22\"}]]}]]}]\n13:[\"$\",\"$1\",\"h\",{\"children\":[null,[[\"$\",\"$L23\",null,{\"children\":\"$L24\"}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]],[\"$\",\"$L25\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$26\",null,{\"fallback\":null,\"children\":\"$L27\"}]}]}]]}]\n"])</script><script>self.__next_f.push([1,"1d:{}\n1e:\"$12:props:children:0:props:params\"\n"])</script><script>self.__next_f.push([1,"24:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n20:null\n"])</script><script>self.__next_f.push([1,"28:I[61257,[],\"IconMark\"]\n22:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"VeADK Studio - Volcengine Agent Development Kit Series\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"VeADK Studio is a web-based tool for developing and managing Volcengine agents.\"}],[\"$\",\"link\",\"2\",{\"rel\":\"shortcut icon\",\"href\":\"/favicon.ico\"}],[\"$\",\"link\",\"3\",{\"rel\":\"icon\",\"href\":\"/favicon.ico\",\"type\":\"image/x-icon\",\"sizes\":\"16x16\"}],[\"$\",\"link\",\"4\",{\"rel\":\"icon\",\"href\":\"/favicon.ico\"}],[\"$\",\"$L28\",\"5\",{}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"27:\"$22:metadata\"\n"])</script></body></html>
|
veadk/cli/studio/web/run.txt
DELETED
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
1:"$Sreact.fragment"
|
|
2
|
-
2:I[96159,["527","static/chunks/527-1c65afbb202752bd.js","4357","static/chunks/4357-39eb6b5934ac97db.js","261","static/chunks/261-19b52c2c85aefb5d.js","7177","static/chunks/app/layout-b0d50d105c55fd6d.js"],"Popover"]
|
|
3
|
-
3:I[96159,["527","static/chunks/527-1c65afbb202752bd.js","4357","static/chunks/4357-39eb6b5934ac97db.js","261","static/chunks/261-19b52c2c85aefb5d.js","7177","static/chunks/app/layout-b0d50d105c55fd6d.js"],"PopoverTrigger"]
|
|
4
|
-
4:I[96159,["527","static/chunks/527-1c65afbb202752bd.js","4357","static/chunks/4357-39eb6b5934ac97db.js","261","static/chunks/261-19b52c2c85aefb5d.js","7177","static/chunks/app/layout-b0d50d105c55fd6d.js"],"PopoverContent"]
|
|
5
|
-
5:I[61223,["527","static/chunks/527-1c65afbb202752bd.js","4357","static/chunks/4357-39eb6b5934ac97db.js","261","static/chunks/261-19b52c2c85aefb5d.js","7177","static/chunks/app/layout-b0d50d105c55fd6d.js"],"Root"]
|
|
6
|
-
6:I[61223,["527","static/chunks/527-1c65afbb202752bd.js","4357","static/chunks/4357-39eb6b5934ac97db.js","261","static/chunks/261-19b52c2c85aefb5d.js","7177","static/chunks/app/layout-b0d50d105c55fd6d.js"],"List"]
|
|
7
|
-
7:I[61223,["527","static/chunks/527-1c65afbb202752bd.js","4357","static/chunks/4357-39eb6b5934ac97db.js","261","static/chunks/261-19b52c2c85aefb5d.js","7177","static/chunks/app/layout-b0d50d105c55fd6d.js"],"Item"]
|
|
8
|
-
8:I[61223,["527","static/chunks/527-1c65afbb202752bd.js","4357","static/chunks/4357-39eb6b5934ac97db.js","261","static/chunks/261-19b52c2c85aefb5d.js","7177","static/chunks/app/layout-b0d50d105c55fd6d.js"],"Link"]
|
|
9
|
-
14:I[3343,[],""]
|
|
10
|
-
:HL["/_next/static/media/569ce4b8f30dc480-s.p.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
|
11
|
-
:HL["/_next/static/media/93f479601ee12b01-s.p.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
|
|
12
|
-
:HL["/_next/static/css/366cfdd7fdd8bcac.css","style"]
|
|
13
|
-
0:{"P":null,"b":"gvLvin_lQcpkhQupQqPu1","p":"","c":["","run"],"i":false,"f":[[["",{"children":["run",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/366cfdd7fdd8bcac.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"className":"__variable_5cfdac __variable_9a8899 antialiased flex flex-col min-h-dvh max-h-dvh w-full","children":[["$","div",null,{"className":"flex w-full","children":["$","header",null,{"className":"px-4 md:px-6 w-full","children":["$","div",null,{"className":"flex h-16 items-center justify-between gap-4","children":[["$","div",null,{"className":"flex flex-1 items-center gap-2","children":[["$","$L2",null,{"children":[["$","$L3",null,{"asChild":true,"children":["$","button",null,{"data-slot":"button","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 group size-8 md:hidden","children":["$","svg",null,{"className":"pointer-events-none","width":16,"height":16,"viewBox":"0 0 24 24","fill":"none","stroke":"currentColor","strokeWidth":"2","strokeLinecap":"round","strokeLinejoin":"round","xmlns":"http://www.w3.org/2000/svg","children":[["$","path",null,{"d":"M4 12L20 12","className":"origin-center -translate-y-[7px] transition-all duration-300 ease-[cubic-bezier(.5,.85,.25,1.1)] group-aria-expanded:translate-x-0 group-aria-expanded:translate-y-0 group-aria-expanded:rotate-[315deg]"}],["$","path",null,{"d":"M4 12H20","className":"origin-center transition-all duration-300 ease-[cubic-bezier(.5,.85,.25,1.8)] group-aria-expanded:rotate-45"}],["$","path",null,{"d":"M4 12H20","className":"origin-center translate-y-[7px] transition-all duration-300 ease-[cubic-bezier(.5,.85,.25,1.1)] group-aria-expanded:translate-y-0 group-aria-expanded:rotate-[135deg]"}]]}]}]}],["$","$L4",null,{"align":"start","className":"w-36 p-1 md:hidden","children":["$","$L5",null,{"data-slot":"navigation-menu","data-viewport":true,"className":"group/navigation-menu relative flex flex-1 items-center justify-center max-w-none *:w-full","children":[["$","$L6",null,{"data-slot":"navigation-menu-list","className":"group flex flex-1 list-none justify-center flex-col items-start gap-0 md:gap-2","children":[[["$","$L7","0",{"data-slot":"navigation-menu-item","className":"relative w-full","children":["$","$L8",null,{"data-slot":"navigation-menu-link","className":"data-[active]:focus:bg-accent data-[active]:hover:bg-accent data-[active]:bg-accent data-[active]:text-accent-foreground hover:bg-accent focus:bg-accent focus:text-accent-foreground focus-visible:ring-ring/50 [&_svg:not([class*='text-'])]:text-muted-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-all outline-none focus-visible:ring-[3px] focus-visible:outline-1 [&_svg:not([class*='size-'])]:size-4 py-1.5","href":"https://volcengine.github.io/veadk-python/","target":"_blank","children":"Documents"}]}],["$","$L7","1",{"data-slot":"navigation-menu-item","className":"relative w-full","children":["$","$L8",null,{"data-slot":"navigation-menu-link","className":"data-[active]:focus:bg-accent data-[active]:hover:bg-accent data-[active]:bg-accent data-[active]:text-accent-foreground hover:bg-accent focus:bg-accent focus:text-accent-foreground focus-visible:ring-ring/50 [&_svg:not([class*='text-'])]:text-muted-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-all outline-none focus-visible:ring-[3px] focus-visible:outline-1 [&_svg:not([class*='size-'])]:size-4 py-1.5","href":"/","target":"_blank","children":"Studio"}]}]],"$L9","$La","$Lb"]}],"$Lc"]}]}]]}],"$Ld"]}],"$Le"]}]}]}],"$Lf","$L10"]}]}]]}],{"children":["run","$L11",{"children":["__PAGE__","$L12",{},null,false]},null,false]},null,false],"$L13",false]],"m":"$undefined","G":["$14",[]],"s":false,"S":true}
|
|
14
|
-
15:I[61223,["527","static/chunks/527-1c65afbb202752bd.js","4357","static/chunks/4357-39eb6b5934ac97db.js","261","static/chunks/261-19b52c2c85aefb5d.js","7177","static/chunks/app/layout-b0d50d105c55fd6d.js"],"Viewport"]
|
|
15
|
-
16:I[92945,["527","static/chunks/527-1c65afbb202752bd.js","4357","static/chunks/4357-39eb6b5934ac97db.js","261","static/chunks/261-19b52c2c85aefb5d.js","7177","static/chunks/app/layout-b0d50d105c55fd6d.js"],"GithubIcon"]
|
|
16
|
-
17:I[17885,["527","static/chunks/527-1c65afbb202752bd.js","4357","static/chunks/4357-39eb6b5934ac97db.js","261","static/chunks/261-19b52c2c85aefb5d.js","7177","static/chunks/app/layout-b0d50d105c55fd6d.js"],"default"]
|
|
17
|
-
18:I[66093,[],""]
|
|
18
|
-
19:I[12537,[],""]
|
|
19
|
-
1a:I[98099,["527","static/chunks/527-1c65afbb202752bd.js","4357","static/chunks/4357-39eb6b5934ac97db.js","261","static/chunks/261-19b52c2c85aefb5d.js","7177","static/chunks/app/layout-b0d50d105c55fd6d.js"],"Toaster"]
|
|
20
|
-
1b:I[87076,[],"ClientPageRoot"]
|
|
21
|
-
1c:I[94292,["5719","static/chunks/63d31579-18fb2181524a9c6f.js","3169","static/chunks/6d60d248-1bbd761ee88ab2e4.js","8358","static/chunks/fc645be4-662fd2da08676daa.js","527","static/chunks/527-1c65afbb202752bd.js","4357","static/chunks/4357-39eb6b5934ac97db.js","2067","static/chunks/2067-e02b0bc96d886930.js","6064","static/chunks/app/run/page-c2cd4dca690d6d29.js"],"default",1]
|
|
22
|
-
1f:I[77939,[],"OutletBoundary"]
|
|
23
|
-
21:I[13737,[],"AsyncMetadataOutlet"]
|
|
24
|
-
23:I[77939,[],"ViewportBoundary"]
|
|
25
|
-
25:I[77939,[],"MetadataBoundary"]
|
|
26
|
-
26:"$Sreact.suspense"
|
|
27
|
-
9:["$","$L7",null,{"data-slot":"navigation-menu-item","className":"relative w-full","role":"presentation","aria-hidden":"true","children":["$","div",null,{"role":"separator","aria-orientation":"horizontal","className":"bg-border -mx-1 my-1 h-px"}]}]
|
|
28
|
-
a:["$","$L7",null,{"data-slot":"navigation-menu-item","className":"relative w-full","children":["$","$L8",null,{"data-slot":"navigation-menu-link","className":"data-[active]:focus:bg-accent data-[active]:hover:bg-accent data-[active]:bg-accent data-[active]:text-accent-foreground hover:bg-accent focus:bg-accent focus:text-accent-foreground focus-visible:ring-ring/50 [&_svg:not([class*='text-'])]:text-muted-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-all outline-none focus-visible:ring-[3px] focus-visible:outline-1 [&_svg:not([class*='size-'])]:size-4 py-1.5","href":"#","children":"Sign In"}]}]
|
|
29
|
-
b:["$","$L7",null,{"data-slot":"navigation-menu-item","className":"relative w-full","children":["$","span",null,{"className":"inline-flex items-center justify-center whitespace-nowrap font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive bg-primary text-primary-foreground shadow-xs hover:bg-primary/90 h-8 rounded-md gap-1.5 px-3 has-[>svg]:px-2.5 mt-0.5 w-full text-left text-sm flex items-baseline gap-2","children":["Cart",["$","span",null,{"className":"text-primary-foreground/60 text-xs","children":"2"}]],"data-slot":"button","ref":null}]}]
|
|
30
|
-
c:["$","div",null,{"className":"absolute top-full left-0 isolate z-50 flex justify-center","children":["$","$L15",null,{"data-slot":"navigation-menu-viewport","className":"origin-top-center bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-90 relative mt-1.5 h-[var(--radix-navigation-menu-viewport-height)] w-full overflow-hidden rounded-md border shadow md:w-[var(--radix-navigation-menu-viewport-width)]"}]}]
|
|
31
|
-
d:["$","div",null,{"className":"flex flex-1 items-center gap-6 max-md:justify-between","children":[["$","a",null,{"href":"#","className":"text-primary font-bold hover:text-primary/90","children":"VeADK Studio"}],["$","$L5",null,{"data-slot":"navigation-menu","data-viewport":true,"className":"group/navigation-menu relative flex max-w-max flex-1 items-center justify-center max-md:hidden","children":[["$","$L6",null,{"data-slot":"navigation-menu-list","className":"group flex flex-1 list-none items-center justify-center gap-2","children":[["$","$L7","0",{"data-slot":"navigation-menu-item","className":"relative","children":["$","$L8",null,{"data-slot":"navigation-menu-link","className":"data-[active]:focus:bg-accent data-[active]:hover:bg-accent data-[active]:bg-accent data-[active]:text-accent-foreground hover:bg-accent focus:bg-accent focus:text-accent-foreground focus-visible:ring-ring/50 [&_svg:not([class*='text-'])]:text-muted-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-all outline-none focus-visible:ring-[3px] focus-visible:outline-1 [&_svg:not([class*='size-'])]:size-4 text-muted-foreground hover:text-primary py-1.5 font-medium","href":"https://volcengine.github.io/veadk-python/","children":"Documents"}]}],["$","$L7","1",{"data-slot":"navigation-menu-item","className":"relative","children":["$","$L8",null,{"data-slot":"navigation-menu-link","className":"data-[active]:focus:bg-accent data-[active]:hover:bg-accent data-[active]:bg-accent data-[active]:text-accent-foreground hover:bg-accent focus:bg-accent focus:text-accent-foreground focus-visible:ring-ring/50 [&_svg:not([class*='text-'])]:text-muted-foreground flex flex-col gap-1 rounded-sm p-2 text-sm transition-all outline-none focus-visible:ring-[3px] focus-visible:outline-1 [&_svg:not([class*='size-'])]:size-4 text-muted-foreground hover:text-primary py-1.5 font-medium","href":"/","children":"Studio"}]}]]}],["$","div",null,{"className":"absolute top-full left-0 isolate z-50 flex justify-center","children":["$","$L15",null,{"data-slot":"navigation-menu-viewport","className":"origin-top-center bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-90 relative mt-1.5 h-[var(--radix-navigation-menu-viewport-height)] w-full overflow-hidden rounded-md border shadow md:w-[var(--radix-navigation-menu-viewport-width)]"}]}]]}]]}]
|
|
32
|
-
e:["$","div",null,{"className":"flex items-center gap-2 max-md:hidden","children":[["$","a",null,{"href":"https://github.com/volcengine/veadk-python","target":"_blank","children":["$","$L16",null,{}],"data-slot":"button","className":"inline-flex items-center justify-center gap-2 whitespace-nowrap font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive hover:bg-accent hover:text-accent-foreground dark:hover:bg-accent/50 h-10 rounded-md px-6 has-[>svg]:px-4 text-lg cursor-pointer","ref":null}],["$","$L17",null,{}]]}]
|
|
33
|
-
f:["$","div",null,{"className":"flex flex-1 w-full min-h-0 overflow-auto","children":["$","$L18",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L19",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]
|
|
34
|
-
10:["$","$L1a",null,{"position":"top-center"}]
|
|
35
|
-
11:["$","$1","c",{"children":[null,["$","$L18",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L19",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}]
|
|
36
|
-
12:["$","$1","c",{"children":[["$","$L1b",null,{"Component":"$1c","searchParams":{},"params":{},"promises":["$@1d","$@1e"]}],null,["$","$L1f",null,{"children":["$L20",["$","$L21",null,{"promise":"$@22"}]]}]]}]
|
|
37
|
-
13:["$","$1","h",{"children":[null,[["$","$L23",null,{"children":"$L24"}],["$","meta",null,{"name":"next-size-adjust","content":""}]],["$","$L25",null,{"children":["$","div",null,{"hidden":true,"children":["$","$26",null,{"fallback":null,"children":"$L27"}]}]}]]}]
|
|
38
|
-
1d:{}
|
|
39
|
-
1e:"$12:props:children:0:props:params"
|
|
40
|
-
24:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
41
|
-
20:null
|
|
42
|
-
28:I[61257,[],"IconMark"]
|
|
43
|
-
22:{"metadata":[["$","title","0",{"children":"VeADK Studio - Volcengine Agent Development Kit Series"}],["$","meta","1",{"name":"description","content":"VeADK Studio is a web-based tool for developing and managing Volcengine agents."}],["$","link","2",{"rel":"shortcut icon","href":"/favicon.ico"}],["$","link","3",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"16x16"}],["$","link","4",{"rel":"icon","href":"/favicon.ico"}],["$","$L28","5",{}]],"error":null,"digest":"$undefined"}
|
|
44
|
-
27:"$22:metadata"
|
|
Binary file
|
veadk/cli/studio/web/vercel.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1155 1000"><path d="m577.3 0 577.4 1000H0z" fill="#fff"/></svg>
|
veadk/cli/studio/web/window.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.5 2.5h13v10a1 1 0 0 1-1 1h-11a1 1 0 0 1-1-1zM0 1h16v11.5a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 0 12.5zm3.75 4.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5M7 4.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m1.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5" fill="#666"/></svg>
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
# Copyright (c) 2025 Beijing Volcano Engine Technology Co., Ltd. and/or its affiliates.
|
|
2
|
-
#
|
|
3
|
-
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
-
# you may not use this file except in compliance with the License.
|
|
5
|
-
# You may obtain a copy of the License at
|
|
6
|
-
#
|
|
7
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
-
#
|
|
9
|
-
# Unless required by applicable law or agreed to in writing, software
|
|
10
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
-
# See the License for the specific language governing permissions and
|
|
13
|
-
# limitations under the License.
|
|
14
|
-
|
|
15
|
-
import typing
|
|
16
|
-
|
|
17
|
-
from opentelemetry.sdk.trace import ReadableSpan, export
|
|
18
|
-
from pydantic import BaseModel
|
|
19
|
-
from typing_extensions import override
|
|
20
|
-
|
|
21
|
-
from veadk.tracing.telemetry.exporters.base_exporter import BaseExporter
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
# ======== Adapted from Google ADK ========
|
|
25
|
-
class _ApiServerSpanExporter(export.SpanExporter):
|
|
26
|
-
def __init__(self, trace_dict):
|
|
27
|
-
self.trace_dict = trace_dict
|
|
28
|
-
self.trace_id = ""
|
|
29
|
-
|
|
30
|
-
def export(self, spans: typing.Sequence[ReadableSpan]) -> export.SpanExportResult:
|
|
31
|
-
for span in spans:
|
|
32
|
-
if (
|
|
33
|
-
span.name == "call_llm"
|
|
34
|
-
or span.name == "send_data"
|
|
35
|
-
or span.name.startswith("execute_tool")
|
|
36
|
-
):
|
|
37
|
-
attributes = dict(span.attributes)
|
|
38
|
-
attributes["trace_id"] = span.get_span_context().trace_id
|
|
39
|
-
attributes["span_id"] = span.get_span_context().span_id
|
|
40
|
-
if attributes.get("gcp.vertex.agent.event_id", None):
|
|
41
|
-
self.trace_dict[attributes["gcp.vertex.agent.event_id"]] = (
|
|
42
|
-
attributes
|
|
43
|
-
)
|
|
44
|
-
return export.SpanExportResult.SUCCESS
|
|
45
|
-
|
|
46
|
-
def force_flush(self, timeout_millis: int = 30000) -> bool:
|
|
47
|
-
return True
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
class ApiServerExporter(BaseModel, BaseExporter):
|
|
51
|
-
name: str = "apiserver_exporter"
|
|
52
|
-
trace_dict: dict = {}
|
|
53
|
-
|
|
54
|
-
def model_post_init(self, context) -> None:
|
|
55
|
-
self._exporter = _ApiServerSpanExporter(self.trace_dict)
|
|
56
|
-
|
|
57
|
-
@override
|
|
58
|
-
def get_processor(self):
|
|
59
|
-
processor = export.SimpleSpanProcessor(self._exporter)
|
|
60
|
-
return processor, None
|