agent-starter-pack 0.6.3__py3-none-any.whl → 0.7.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. {agent_starter_pack-0.6.3.dist-info → agent_starter_pack-0.7.0.dist-info}/METADATA +16 -12
  2. {agent_starter_pack-0.6.3.dist-info → agent_starter_pack-0.7.0.dist-info}/RECORD +41 -39
  3. agents/adk_base/app/agent.py +1 -1
  4. agents/adk_base/template/.templateconfig.yaml +1 -1
  5. agents/adk_gemini_fullstack/README.md +1 -4
  6. agents/adk_gemini_fullstack/app/agent.py +62 -8
  7. agents/adk_gemini_fullstack/template/.templateconfig.yaml +1 -1
  8. agents/agentic_rag/app/agent.py +1 -1
  9. agents/agentic_rag/template/.templateconfig.yaml +1 -1
  10. agents/crewai_coding_crew/app/agent.py +1 -1
  11. agents/langgraph_base_react/app/agent.py +1 -1
  12. agents/live_api/app/agent.py +8 -4
  13. llm.txt +290 -0
  14. src/base_template/.gitignore +2 -1
  15. src/base_template/GEMINI.md +5 -0
  16. src/base_template/Makefile +21 -6
  17. src/base_template/deployment/cd/deploy-to-prod.yaml +3 -3
  18. src/base_template/deployment/cd/staging.yaml +4 -4
  19. src/base_template/deployment/ci/pr_checks.yaml +1 -1
  20. src/base_template/pyproject.toml +2 -2
  21. src/cli/utils/template.py +22 -9
  22. src/data_ingestion/uv.lock +97 -0
  23. src/frontends/adk_gemini_fullstack/frontend/package-lock.json +276 -0
  24. src/frontends/adk_gemini_fullstack/frontend/package.json +1 -0
  25. src/frontends/adk_gemini_fullstack/frontend/src/components/ChatMessagesView.tsx +5 -4
  26. src/frontends/adk_gemini_fullstack/frontend/vite.config.ts +4 -0
  27. src/resources/docs/adk-cheatsheet.md +1224 -0
  28. src/resources/locks/uv-adk_base-agent_engine.lock +96 -60
  29. src/resources/locks/uv-adk_base-cloud_run.lock +137 -82
  30. src/resources/locks/uv-adk_gemini_fullstack-agent_engine.lock +96 -60
  31. src/resources/locks/uv-adk_gemini_fullstack-cloud_run.lock +137 -82
  32. src/resources/locks/uv-agentic_rag-agent_engine.lock +173 -142
  33. src/resources/locks/uv-agentic_rag-cloud_run.lock +246 -200
  34. src/resources/locks/uv-crewai_coding_crew-agent_engine.lock +493 -248
  35. src/resources/locks/uv-crewai_coding_crew-cloud_run.lock +585 -306
  36. src/resources/locks/uv-langgraph_base_react-agent_engine.lock +185 -154
  37. src/resources/locks/uv-langgraph_base_react-cloud_run.lock +258 -212
  38. src/resources/locks/uv-live_api-cloud_run.lock +228 -182
  39. src/frontends/adk_gemini_fullstack/frontend/public/vite.svg +0 -1
  40. {agent_starter_pack-0.6.3.dist-info → agent_starter_pack-0.7.0.dist-info}/WHEEL +0 -0
  41. {agent_starter_pack-0.6.3.dist-info → agent_starter_pack-0.7.0.dist-info}/entry_points.txt +0 -0
  42. {agent_starter_pack-0.6.3.dist-info → agent_starter_pack-0.7.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,4 +1,5 @@
1
1
  version = 1
2
+ revision = 1
2
3
  requires-python = ">=3.9, <=3.13"
3
4
  resolution-markers = [
4
5
  "python_full_version >= '3.13'",
@@ -135,12 +136,14 @@ version = "0.1.0"
135
136
  source = { editable = "." }
136
137
  dependencies = [
137
138
  { name = "google-cloud-aiplatform" },
139
+ { name = "google-cloud-pipeline-components" },
138
140
  { name = "kfp" },
139
141
  ]
140
142
 
141
143
  [package.metadata]
142
144
  requires-dist = [
143
145
  { name = "google-cloud-aiplatform", specifier = ">=1.80.0" },
146
+ { name = "google-cloud-pipeline-components", specifier = ">=2.19.0" },
144
147
  { name = "kfp", specifier = ">=1.4.0" },
145
148
  ]
146
149
 
@@ -243,6 +246,20 @@ wheels = [
243
246
  { url = "https://files.pythonhosted.org/packages/5e/0f/2e2061e3fbcb9d535d5da3f58cc8de4947df1786fe6a1355960feb05a681/google_cloud_core-2.4.1-py2.py3-none-any.whl", hash = "sha256:a9e6a4422b9ac5c29f79a0ede9485473338e2ce78d91f2370c01e730eab22e61", size = 29233 },
244
247
  ]
245
248
 
249
+ [[package]]
250
+ name = "google-cloud-pipeline-components"
251
+ version = "2.20.1"
252
+ source = { registry = "https://pypi.org/simple" }
253
+ dependencies = [
254
+ { name = "google-api-core" },
255
+ { name = "google-cloud-aiplatform" },
256
+ { name = "jinja2" },
257
+ { name = "kfp" },
258
+ ]
259
+ wheels = [
260
+ { url = "https://files.pythonhosted.org/packages/15/df/9840da02b887930783d23e7c966b3b1f8096f56c17ce52fa3d2682715da7/google_cloud_pipeline_components-2.20.1-py3-none-any.whl", hash = "sha256:77b3b735dc13f6868e3ed9281af3f195a1becbae0960755bb142286d784a06bd", size = 1471603 },
261
+ ]
262
+
246
263
  [[package]]
247
264
  name = "google-cloud-resource-manager"
248
265
  version = "1.14.0"
@@ -429,6 +446,18 @@ wheels = [
429
446
  { url = "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", size = 70442 },
430
447
  ]
431
448
 
449
+ [[package]]
450
+ name = "jinja2"
451
+ version = "3.1.6"
452
+ source = { registry = "https://pypi.org/simple" }
453
+ dependencies = [
454
+ { name = "markupsafe" },
455
+ ]
456
+ sdist = { url = "https://files.pythonhosted.org/packages/df/bf/f7da0350254c0ed7c72f3e33cef02e048281fec7ecec5f032d4aac52226b/jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d", size = 245115 }
457
+ wheels = [
458
+ { url = "https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67", size = 134899 },
459
+ ]
460
+
432
461
  [[package]]
433
462
  name = "kfp"
434
463
  version = "2.11.0"
@@ -494,6 +523,74 @@ wheels = [
494
523
  { url = "https://files.pythonhosted.org/packages/62/a1/2027ddede72d33be2effc087580aeba07e733a7360780ae87226f1f91bd8/kubernetes-30.1.0-py2.py3-none-any.whl", hash = "sha256:e212e8b7579031dd2e512168b617373bc1e03888d41ac4e04039240a292d478d", size = 1706042 },
495
524
  ]
496
525
 
526
+ [[package]]
527
+ name = "markupsafe"
528
+ version = "3.0.2"
529
+ source = { registry = "https://pypi.org/simple" }
530
+ sdist = { url = "https://files.pythonhosted.org/packages/b2/97/5d42485e71dfc078108a86d6de8fa46db44a1a9295e89c5d6d4a06e23a62/markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0", size = 20537 }
531
+ wheels = [
532
+ { url = "https://files.pythonhosted.org/packages/04/90/d08277ce111dd22f77149fd1a5d4653eeb3b3eaacbdfcbae5afb2600eebd/MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8", size = 14357 },
533
+ { url = "https://files.pythonhosted.org/packages/04/e1/6e2194baeae0bca1fae6629dc0cbbb968d4d941469cbab11a3872edff374/MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158", size = 12393 },
534
+ { url = "https://files.pythonhosted.org/packages/1d/69/35fa85a8ece0a437493dc61ce0bb6d459dcba482c34197e3efc829aa357f/MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579", size = 21732 },
535
+ { url = "https://files.pythonhosted.org/packages/22/35/137da042dfb4720b638d2937c38a9c2df83fe32d20e8c8f3185dbfef05f7/MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d", size = 20866 },
536
+ { url = "https://files.pythonhosted.org/packages/29/28/6d029a903727a1b62edb51863232152fd335d602def598dade38996887f0/MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb", size = 20964 },
537
+ { url = "https://files.pythonhosted.org/packages/cc/cd/07438f95f83e8bc028279909d9c9bd39e24149b0d60053a97b2bc4f8aa51/MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b", size = 21977 },
538
+ { url = "https://files.pythonhosted.org/packages/29/01/84b57395b4cc062f9c4c55ce0df7d3108ca32397299d9df00fedd9117d3d/MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c", size = 21366 },
539
+ { url = "https://files.pythonhosted.org/packages/bd/6e/61ebf08d8940553afff20d1fb1ba7294b6f8d279df9fd0c0db911b4bbcfd/MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171", size = 21091 },
540
+ { url = "https://files.pythonhosted.org/packages/11/23/ffbf53694e8c94ebd1e7e491de185124277964344733c45481f32ede2499/MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50", size = 15065 },
541
+ { url = "https://files.pythonhosted.org/packages/44/06/e7175d06dd6e9172d4a69a72592cb3f7a996a9c396eee29082826449bbc3/MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a", size = 15514 },
542
+ { url = "https://files.pythonhosted.org/packages/6b/28/bbf83e3f76936960b850435576dd5e67034e200469571be53f69174a2dfd/MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d", size = 14353 },
543
+ { url = "https://files.pythonhosted.org/packages/6c/30/316d194b093cde57d448a4c3209f22e3046c5bb2fb0820b118292b334be7/MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93", size = 12392 },
544
+ { url = "https://files.pythonhosted.org/packages/f2/96/9cdafba8445d3a53cae530aaf83c38ec64c4d5427d975c974084af5bc5d2/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832", size = 23984 },
545
+ { url = "https://files.pythonhosted.org/packages/f1/a4/aefb044a2cd8d7334c8a47d3fb2c9f328ac48cb349468cc31c20b539305f/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84", size = 23120 },
546
+ { url = "https://files.pythonhosted.org/packages/8d/21/5e4851379f88f3fad1de30361db501300d4f07bcad047d3cb0449fc51f8c/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca", size = 23032 },
547
+ { url = "https://files.pythonhosted.org/packages/00/7b/e92c64e079b2d0d7ddf69899c98842f3f9a60a1ae72657c89ce2655c999d/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798", size = 24057 },
548
+ { url = "https://files.pythonhosted.org/packages/f9/ac/46f960ca323037caa0a10662ef97d0a4728e890334fc156b9f9e52bcc4ca/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e", size = 23359 },
549
+ { url = "https://files.pythonhosted.org/packages/69/84/83439e16197337b8b14b6a5b9c2105fff81d42c2a7c5b58ac7b62ee2c3b1/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4", size = 23306 },
550
+ { url = "https://files.pythonhosted.org/packages/9a/34/a15aa69f01e2181ed8d2b685c0d2f6655d5cca2c4db0ddea775e631918cd/MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d", size = 15094 },
551
+ { url = "https://files.pythonhosted.org/packages/da/b8/3a3bd761922d416f3dc5d00bfbed11f66b1ab89a0c2b6e887240a30b0f6b/MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b", size = 15521 },
552
+ { url = "https://files.pythonhosted.org/packages/22/09/d1f21434c97fc42f09d290cbb6350d44eb12f09cc62c9476effdb33a18aa/MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf", size = 14274 },
553
+ { url = "https://files.pythonhosted.org/packages/6b/b0/18f76bba336fa5aecf79d45dcd6c806c280ec44538b3c13671d49099fdd0/MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225", size = 12348 },
554
+ { url = "https://files.pythonhosted.org/packages/e0/25/dd5c0f6ac1311e9b40f4af06c78efde0f3b5cbf02502f8ef9501294c425b/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028", size = 24149 },
555
+ { url = "https://files.pythonhosted.org/packages/f3/f0/89e7aadfb3749d0f52234a0c8c7867877876e0a20b60e2188e9850794c17/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8", size = 23118 },
556
+ { url = "https://files.pythonhosted.org/packages/d5/da/f2eeb64c723f5e3777bc081da884b414671982008c47dcc1873d81f625b6/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c", size = 22993 },
557
+ { url = "https://files.pythonhosted.org/packages/da/0e/1f32af846df486dce7c227fe0f2398dc7e2e51d4a370508281f3c1c5cddc/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557", size = 24178 },
558
+ { url = "https://files.pythonhosted.org/packages/c4/f6/bb3ca0532de8086cbff5f06d137064c8410d10779c4c127e0e47d17c0b71/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22", size = 23319 },
559
+ { url = "https://files.pythonhosted.org/packages/a2/82/8be4c96ffee03c5b4a034e60a31294daf481e12c7c43ab8e34a1453ee48b/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48", size = 23352 },
560
+ { url = "https://files.pythonhosted.org/packages/51/ae/97827349d3fcffee7e184bdf7f41cd6b88d9919c80f0263ba7acd1bbcb18/MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30", size = 15097 },
561
+ { url = "https://files.pythonhosted.org/packages/c1/80/a61f99dc3a936413c3ee4e1eecac96c0da5ed07ad56fd975f1a9da5bc630/MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87", size = 15601 },
562
+ { url = "https://files.pythonhosted.org/packages/83/0e/67eb10a7ecc77a0c2bbe2b0235765b98d164d81600746914bebada795e97/MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd", size = 14274 },
563
+ { url = "https://files.pythonhosted.org/packages/2b/6d/9409f3684d3335375d04e5f05744dfe7e9f120062c9857df4ab490a1031a/MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430", size = 12352 },
564
+ { url = "https://files.pythonhosted.org/packages/d2/f5/6eadfcd3885ea85fe2a7c128315cc1bb7241e1987443d78c8fe712d03091/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094", size = 24122 },
565
+ { url = "https://files.pythonhosted.org/packages/0c/91/96cf928db8236f1bfab6ce15ad070dfdd02ed88261c2afafd4b43575e9e9/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396", size = 23085 },
566
+ { url = "https://files.pythonhosted.org/packages/c2/cf/c9d56af24d56ea04daae7ac0940232d31d5a8354f2b457c6d856b2057d69/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79", size = 22978 },
567
+ { url = "https://files.pythonhosted.org/packages/2a/9f/8619835cd6a711d6272d62abb78c033bda638fdc54c4e7f4272cf1c0962b/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a", size = 24208 },
568
+ { url = "https://files.pythonhosted.org/packages/f9/bf/176950a1792b2cd2102b8ffeb5133e1ed984547b75db47c25a67d3359f77/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca", size = 23357 },
569
+ { url = "https://files.pythonhosted.org/packages/ce/4f/9a02c1d335caabe5c4efb90e1b6e8ee944aa245c1aaaab8e8a618987d816/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c", size = 23344 },
570
+ { url = "https://files.pythonhosted.org/packages/ee/55/c271b57db36f748f0e04a759ace9f8f759ccf22b4960c270c78a394f58be/MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1", size = 15101 },
571
+ { url = "https://files.pythonhosted.org/packages/29/88/07df22d2dd4df40aba9f3e402e6dc1b8ee86297dddbad4872bd5e7b0094f/MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f", size = 15603 },
572
+ { url = "https://files.pythonhosted.org/packages/62/6a/8b89d24db2d32d433dffcd6a8779159da109842434f1dd2f6e71f32f738c/MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c", size = 14510 },
573
+ { url = "https://files.pythonhosted.org/packages/7a/06/a10f955f70a2e5a9bf78d11a161029d278eeacbd35ef806c3fd17b13060d/MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb", size = 12486 },
574
+ { url = "https://files.pythonhosted.org/packages/34/cf/65d4a571869a1a9078198ca28f39fba5fbb910f952f9dbc5220afff9f5e6/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c", size = 25480 },
575
+ { url = "https://files.pythonhosted.org/packages/0c/e3/90e9651924c430b885468b56b3d597cabf6d72be4b24a0acd1fa0e12af67/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d", size = 23914 },
576
+ { url = "https://files.pythonhosted.org/packages/66/8c/6c7cf61f95d63bb866db39085150df1f2a5bd3335298f14a66b48e92659c/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe", size = 23796 },
577
+ { url = "https://files.pythonhosted.org/packages/bb/35/cbe9238ec3f47ac9a7c8b3df7a808e7cb50fe149dc7039f5f454b3fba218/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5", size = 25473 },
578
+ { url = "https://files.pythonhosted.org/packages/e6/32/7621a4382488aa283cc05e8984a9c219abad3bca087be9ec77e89939ded9/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a", size = 24114 },
579
+ { url = "https://files.pythonhosted.org/packages/0d/80/0985960e4b89922cb5a0bac0ed39c5b96cbc1a536a99f30e8c220a996ed9/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9", size = 24098 },
580
+ { url = "https://files.pythonhosted.org/packages/82/78/fedb03c7d5380df2427038ec8d973587e90561b2d90cd472ce9254cf348b/MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6", size = 15208 },
581
+ { url = "https://files.pythonhosted.org/packages/4f/65/6079a46068dfceaeabb5dcad6d674f5f5c61a6fa5673746f42a9f4c233b3/MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f", size = 15739 },
582
+ { url = "https://files.pythonhosted.org/packages/a7/ea/9b1530c3fdeeca613faeb0fb5cbcf2389d816072fab72a71b45749ef6062/MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a", size = 14344 },
583
+ { url = "https://files.pythonhosted.org/packages/4b/c2/fbdbfe48848e7112ab05e627e718e854d20192b674952d9042ebd8c9e5de/MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff", size = 12389 },
584
+ { url = "https://files.pythonhosted.org/packages/f0/25/7a7c6e4dbd4f867d95d94ca15449e91e52856f6ed1905d58ef1de5e211d0/MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13", size = 21607 },
585
+ { url = "https://files.pythonhosted.org/packages/53/8f/f339c98a178f3c1e545622206b40986a4c3307fe39f70ccd3d9df9a9e425/MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144", size = 20728 },
586
+ { url = "https://files.pythonhosted.org/packages/1a/03/8496a1a78308456dbd50b23a385c69b41f2e9661c67ea1329849a598a8f9/MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29", size = 20826 },
587
+ { url = "https://files.pythonhosted.org/packages/e6/cf/0a490a4bd363048c3022f2f475c8c05582179bb179defcee4766fb3dcc18/MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0", size = 21843 },
588
+ { url = "https://files.pythonhosted.org/packages/19/a3/34187a78613920dfd3cdf68ef6ce5e99c4f3417f035694074beb8848cd77/MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0", size = 21219 },
589
+ { url = "https://files.pythonhosted.org/packages/17/d8/5811082f85bb88410ad7e452263af048d685669bbbfb7b595e8689152498/MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178", size = 20946 },
590
+ { url = "https://files.pythonhosted.org/packages/7c/31/bd635fb5989440d9365c5e3c47556cfea121c7803f5034ac843e8f37c2f2/MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f", size = 15063 },
591
+ { url = "https://files.pythonhosted.org/packages/b3/73/085399401383ce949f727afec55ec3abd76648d04b9f22e1c0e99cb4bec3/MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a", size = 15506 },
592
+ ]
593
+
497
594
  [[package]]
498
595
  name = "numpy"
499
596
  version = "2.0.2"
@@ -23,6 +23,7 @@
23
23
  "react-dom": "^19.0.0",
24
24
  "react-markdown": "^9.0.3",
25
25
  "react-router-dom": "^7.5.3",
26
+ "remark-gfm": "^4.0.1",
26
27
  "tailwind-merge": "^3.2.0",
27
28
  "tailwindcss": "^4.1.5"
28
29
  },
@@ -3946,6 +3947,41 @@
3946
3947
  "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
3947
3948
  }
3948
3949
  },
3950
+ "node_modules/markdown-table": {
3951
+ "version": "3.0.4",
3952
+ "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz",
3953
+ "integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==",
3954
+ "funding": {
3955
+ "type": "github",
3956
+ "url": "https://github.com/sponsors/wooorm"
3957
+ }
3958
+ },
3959
+ "node_modules/mdast-util-find-and-replace": {
3960
+ "version": "3.0.2",
3961
+ "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz",
3962
+ "integrity": "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==",
3963
+ "dependencies": {
3964
+ "@types/mdast": "^4.0.0",
3965
+ "escape-string-regexp": "^5.0.0",
3966
+ "unist-util-is": "^6.0.0",
3967
+ "unist-util-visit-parents": "^6.0.0"
3968
+ },
3969
+ "funding": {
3970
+ "type": "opencollective",
3971
+ "url": "https://opencollective.com/unified"
3972
+ }
3973
+ },
3974
+ "node_modules/mdast-util-find-and-replace/node_modules/escape-string-regexp": {
3975
+ "version": "5.0.0",
3976
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
3977
+ "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
3978
+ "engines": {
3979
+ "node": ">=12"
3980
+ },
3981
+ "funding": {
3982
+ "url": "https://github.com/sponsors/sindresorhus"
3983
+ }
3984
+ },
3949
3985
  "node_modules/mdast-util-from-markdown": {
3950
3986
  "version": "2.0.2",
3951
3987
  "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz",
@@ -3970,6 +4006,101 @@
3970
4006
  "url": "https://opencollective.com/unified"
3971
4007
  }
3972
4008
  },
4009
+ "node_modules/mdast-util-gfm": {
4010
+ "version": "3.1.0",
4011
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz",
4012
+ "integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==",
4013
+ "dependencies": {
4014
+ "mdast-util-from-markdown": "^2.0.0",
4015
+ "mdast-util-gfm-autolink-literal": "^2.0.0",
4016
+ "mdast-util-gfm-footnote": "^2.0.0",
4017
+ "mdast-util-gfm-strikethrough": "^2.0.0",
4018
+ "mdast-util-gfm-table": "^2.0.0",
4019
+ "mdast-util-gfm-task-list-item": "^2.0.0",
4020
+ "mdast-util-to-markdown": "^2.0.0"
4021
+ },
4022
+ "funding": {
4023
+ "type": "opencollective",
4024
+ "url": "https://opencollective.com/unified"
4025
+ }
4026
+ },
4027
+ "node_modules/mdast-util-gfm-autolink-literal": {
4028
+ "version": "2.0.1",
4029
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz",
4030
+ "integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==",
4031
+ "dependencies": {
4032
+ "@types/mdast": "^4.0.0",
4033
+ "ccount": "^2.0.0",
4034
+ "devlop": "^1.0.0",
4035
+ "mdast-util-find-and-replace": "^3.0.0",
4036
+ "micromark-util-character": "^2.0.0"
4037
+ },
4038
+ "funding": {
4039
+ "type": "opencollective",
4040
+ "url": "https://opencollective.com/unified"
4041
+ }
4042
+ },
4043
+ "node_modules/mdast-util-gfm-footnote": {
4044
+ "version": "2.1.0",
4045
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz",
4046
+ "integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==",
4047
+ "dependencies": {
4048
+ "@types/mdast": "^4.0.0",
4049
+ "devlop": "^1.1.0",
4050
+ "mdast-util-from-markdown": "^2.0.0",
4051
+ "mdast-util-to-markdown": "^2.0.0",
4052
+ "micromark-util-normalize-identifier": "^2.0.0"
4053
+ },
4054
+ "funding": {
4055
+ "type": "opencollective",
4056
+ "url": "https://opencollective.com/unified"
4057
+ }
4058
+ },
4059
+ "node_modules/mdast-util-gfm-strikethrough": {
4060
+ "version": "2.0.0",
4061
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz",
4062
+ "integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==",
4063
+ "dependencies": {
4064
+ "@types/mdast": "^4.0.0",
4065
+ "mdast-util-from-markdown": "^2.0.0",
4066
+ "mdast-util-to-markdown": "^2.0.0"
4067
+ },
4068
+ "funding": {
4069
+ "type": "opencollective",
4070
+ "url": "https://opencollective.com/unified"
4071
+ }
4072
+ },
4073
+ "node_modules/mdast-util-gfm-table": {
4074
+ "version": "2.0.0",
4075
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz",
4076
+ "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==",
4077
+ "dependencies": {
4078
+ "@types/mdast": "^4.0.0",
4079
+ "devlop": "^1.0.0",
4080
+ "markdown-table": "^3.0.0",
4081
+ "mdast-util-from-markdown": "^2.0.0",
4082
+ "mdast-util-to-markdown": "^2.0.0"
4083
+ },
4084
+ "funding": {
4085
+ "type": "opencollective",
4086
+ "url": "https://opencollective.com/unified"
4087
+ }
4088
+ },
4089
+ "node_modules/mdast-util-gfm-task-list-item": {
4090
+ "version": "2.0.0",
4091
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz",
4092
+ "integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==",
4093
+ "dependencies": {
4094
+ "@types/mdast": "^4.0.0",
4095
+ "devlop": "^1.0.0",
4096
+ "mdast-util-from-markdown": "^2.0.0",
4097
+ "mdast-util-to-markdown": "^2.0.0"
4098
+ },
4099
+ "funding": {
4100
+ "type": "opencollective",
4101
+ "url": "https://opencollective.com/unified"
4102
+ }
4103
+ },
3973
4104
  "node_modules/mdast-util-mdx-expression": {
3974
4105
  "version": "2.0.1",
3975
4106
  "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz",
@@ -4178,6 +4309,120 @@
4178
4309
  "micromark-util-types": "^2.0.0"
4179
4310
  }
4180
4311
  },
4312
+ "node_modules/micromark-extension-gfm": {
4313
+ "version": "3.0.0",
4314
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz",
4315
+ "integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==",
4316
+ "dependencies": {
4317
+ "micromark-extension-gfm-autolink-literal": "^2.0.0",
4318
+ "micromark-extension-gfm-footnote": "^2.0.0",
4319
+ "micromark-extension-gfm-strikethrough": "^2.0.0",
4320
+ "micromark-extension-gfm-table": "^2.0.0",
4321
+ "micromark-extension-gfm-tagfilter": "^2.0.0",
4322
+ "micromark-extension-gfm-task-list-item": "^2.0.0",
4323
+ "micromark-util-combine-extensions": "^2.0.0",
4324
+ "micromark-util-types": "^2.0.0"
4325
+ },
4326
+ "funding": {
4327
+ "type": "opencollective",
4328
+ "url": "https://opencollective.com/unified"
4329
+ }
4330
+ },
4331
+ "node_modules/micromark-extension-gfm-autolink-literal": {
4332
+ "version": "2.1.0",
4333
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz",
4334
+ "integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==",
4335
+ "dependencies": {
4336
+ "micromark-util-character": "^2.0.0",
4337
+ "micromark-util-sanitize-uri": "^2.0.0",
4338
+ "micromark-util-symbol": "^2.0.0",
4339
+ "micromark-util-types": "^2.0.0"
4340
+ },
4341
+ "funding": {
4342
+ "type": "opencollective",
4343
+ "url": "https://opencollective.com/unified"
4344
+ }
4345
+ },
4346
+ "node_modules/micromark-extension-gfm-footnote": {
4347
+ "version": "2.1.0",
4348
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz",
4349
+ "integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==",
4350
+ "dependencies": {
4351
+ "devlop": "^1.0.0",
4352
+ "micromark-core-commonmark": "^2.0.0",
4353
+ "micromark-factory-space": "^2.0.0",
4354
+ "micromark-util-character": "^2.0.0",
4355
+ "micromark-util-normalize-identifier": "^2.0.0",
4356
+ "micromark-util-sanitize-uri": "^2.0.0",
4357
+ "micromark-util-symbol": "^2.0.0",
4358
+ "micromark-util-types": "^2.0.0"
4359
+ },
4360
+ "funding": {
4361
+ "type": "opencollective",
4362
+ "url": "https://opencollective.com/unified"
4363
+ }
4364
+ },
4365
+ "node_modules/micromark-extension-gfm-strikethrough": {
4366
+ "version": "2.1.0",
4367
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz",
4368
+ "integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==",
4369
+ "dependencies": {
4370
+ "devlop": "^1.0.0",
4371
+ "micromark-util-chunked": "^2.0.0",
4372
+ "micromark-util-classify-character": "^2.0.0",
4373
+ "micromark-util-resolve-all": "^2.0.0",
4374
+ "micromark-util-symbol": "^2.0.0",
4375
+ "micromark-util-types": "^2.0.0"
4376
+ },
4377
+ "funding": {
4378
+ "type": "opencollective",
4379
+ "url": "https://opencollective.com/unified"
4380
+ }
4381
+ },
4382
+ "node_modules/micromark-extension-gfm-table": {
4383
+ "version": "2.1.1",
4384
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz",
4385
+ "integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==",
4386
+ "dependencies": {
4387
+ "devlop": "^1.0.0",
4388
+ "micromark-factory-space": "^2.0.0",
4389
+ "micromark-util-character": "^2.0.0",
4390
+ "micromark-util-symbol": "^2.0.0",
4391
+ "micromark-util-types": "^2.0.0"
4392
+ },
4393
+ "funding": {
4394
+ "type": "opencollective",
4395
+ "url": "https://opencollective.com/unified"
4396
+ }
4397
+ },
4398
+ "node_modules/micromark-extension-gfm-tagfilter": {
4399
+ "version": "2.0.0",
4400
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz",
4401
+ "integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==",
4402
+ "dependencies": {
4403
+ "micromark-util-types": "^2.0.0"
4404
+ },
4405
+ "funding": {
4406
+ "type": "opencollective",
4407
+ "url": "https://opencollective.com/unified"
4408
+ }
4409
+ },
4410
+ "node_modules/micromark-extension-gfm-task-list-item": {
4411
+ "version": "2.1.0",
4412
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz",
4413
+ "integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==",
4414
+ "dependencies": {
4415
+ "devlop": "^1.0.0",
4416
+ "micromark-factory-space": "^2.0.0",
4417
+ "micromark-util-character": "^2.0.0",
4418
+ "micromark-util-symbol": "^2.0.0",
4419
+ "micromark-util-types": "^2.0.0"
4420
+ },
4421
+ "funding": {
4422
+ "type": "opencollective",
4423
+ "url": "https://opencollective.com/unified"
4424
+ }
4425
+ },
4181
4426
  "node_modules/micromark-factory-destination": {
4182
4427
  "version": "2.0.1",
4183
4428
  "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz",
@@ -5030,6 +5275,23 @@
5030
5275
  }
5031
5276
  }
5032
5277
  },
5278
+ "node_modules/remark-gfm": {
5279
+ "version": "4.0.1",
5280
+ "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz",
5281
+ "integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==",
5282
+ "dependencies": {
5283
+ "@types/mdast": "^4.0.0",
5284
+ "mdast-util-gfm": "^3.0.0",
5285
+ "micromark-extension-gfm": "^3.0.0",
5286
+ "remark-parse": "^11.0.0",
5287
+ "remark-stringify": "^11.0.0",
5288
+ "unified": "^11.0.0"
5289
+ },
5290
+ "funding": {
5291
+ "type": "opencollective",
5292
+ "url": "https://opencollective.com/unified"
5293
+ }
5294
+ },
5033
5295
  "node_modules/remark-parse": {
5034
5296
  "version": "11.0.0",
5035
5297
  "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz",
@@ -5063,6 +5325,20 @@
5063
5325
  "url": "https://opencollective.com/unified"
5064
5326
  }
5065
5327
  },
5328
+ "node_modules/remark-stringify": {
5329
+ "version": "11.0.0",
5330
+ "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz",
5331
+ "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==",
5332
+ "dependencies": {
5333
+ "@types/mdast": "^4.0.0",
5334
+ "mdast-util-to-markdown": "^2.0.0",
5335
+ "unified": "^11.0.0"
5336
+ },
5337
+ "funding": {
5338
+ "type": "opencollective",
5339
+ "url": "https://opencollective.com/unified"
5340
+ }
5341
+ },
5066
5342
  "node_modules/resolve-from": {
5067
5343
  "version": "4.0.0",
5068
5344
  "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
@@ -25,6 +25,7 @@
25
25
  "react-dom": "^19.0.0",
26
26
  "react-markdown": "^9.0.3",
27
27
  "react-router-dom": "^7.5.3",
28
+ "remark-gfm": "^4.0.1",
28
29
  "tailwind-merge": "^3.2.0",
29
30
  "tailwindcss": "^4.1.5"
30
31
  },
@@ -5,6 +5,7 @@ import { InputForm } from "@/components/InputForm";
5
5
  import { Button } from "@/components/ui/button";
6
6
  import { useState, ReactNode } from "react";
7
7
  import ReactMarkdown from "react-markdown";
8
+ import remarkGfm from 'remark-gfm';
8
9
  import { cn } from "@/utils";
9
10
  import { Badge } from "@/components/ui/badge";
10
11
  import { ActivityTimeline } from "@/components/ActivityTimeline";
@@ -148,7 +149,7 @@ const HumanMessageBubble: React.FC<HumanMessageBubbleProps> = ({
148
149
  }) => {
149
150
  return (
150
151
  <div className="text-white rounded-3xl break-words min-h-7 bg-neutral-700 max-w-[100%] sm:max-w-[90%] px-4 pt-3 rounded-br-lg">
151
- <ReactMarkdown components={mdComponents}>
152
+ <ReactMarkdown components={mdComponents} remarkPlugins={[remarkGfm]}>
152
153
  {message.content}
153
154
  </ReactMarkdown>
154
155
  </div>
@@ -204,7 +205,7 @@ const AiMessageBubble: React.FC<AiMessageBubbleProps> = ({
204
205
  )}
205
206
  <div className="flex items-start gap-3">
206
207
  <div className="flex-1">
207
- <ReactMarkdown components={mdComponents}>
208
+ <ReactMarkdown components={mdComponents} remarkPlugins={[remarkGfm]}>
208
209
  {message.content}
209
210
  </ReactMarkdown>
210
211
  </div>
@@ -236,7 +237,7 @@ const AiMessageBubble: React.FC<AiMessageBubbleProps> = ({
236
237
  {message.content && message.content.trim() && agent !== "interactive_planner_agent" && (
237
238
  <div className="flex items-start gap-3 mt-2">
238
239
  <div className="flex-1">
239
- <ReactMarkdown components={mdComponents}>
240
+ <ReactMarkdown components={mdComponents} remarkPlugins={[remarkGfm]}>
240
241
  {message.content}
241
242
  </ReactMarkdown>
242
243
  </div>
@@ -260,7 +261,7 @@ const AiMessageBubble: React.FC<AiMessageBubbleProps> = ({
260
261
  <div className="relative break-words flex flex-col w-full">
261
262
  <div className="flex items-start gap-3">
262
263
  <div className="flex-1">
263
- <ReactMarkdown components={mdComponents}>
264
+ <ReactMarkdown components={mdComponents} remarkPlugins={[remarkGfm]}>
264
265
  {message.content}
265
266
  </ReactMarkdown>
266
267
  </div>
@@ -13,6 +13,10 @@ export default defineConfig({
13
13
  },
14
14
  },
15
15
  server: {
16
+ // Makes the server accessible on the local network (e.g., for mobile testing)
17
+ host: true,
18
+ // Should be disabled or limited when deployed in untrusted network environments.
19
+ allowedHosts: true,
16
20
  proxy: {
17
21
  // Proxy API requests to the backend server
18
22
  "/api": {