langflow-base-nightly 0.5.0.dev37__py3-none-any.whl → 0.5.0.dev38__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 (335) hide show
  1. langflow/__main__.py +1 -1
  2. langflow/alembic/versions/4e5980a44eaa_fix_date_times_again.py +24 -30
  3. langflow/alembic/versions/58b28437a398_modify_nullable.py +6 -6
  4. langflow/alembic/versions/79e675cb6752_change_datetime_type.py +24 -30
  5. langflow/alembic/versions/b2fa308044b5_add_unique_constraints.py +12 -13
  6. langflow/api/build.py +21 -26
  7. langflow/api/health_check_router.py +3 -3
  8. langflow/api/utils.py +3 -3
  9. langflow/api/v1/callback.py +2 -2
  10. langflow/api/v1/chat.py +19 -31
  11. langflow/api/v1/endpoints.py +10 -10
  12. langflow/api/v1/flows.py +1 -1
  13. langflow/api/v1/knowledge_bases.py +3 -3
  14. langflow/api/v1/mcp.py +12 -12
  15. langflow/api/v1/mcp_projects.py +45 -81
  16. langflow/api/v1/mcp_utils.py +8 -8
  17. langflow/api/v1/schemas.py +1 -5
  18. langflow/api/v1/store.py +1 -1
  19. langflow/api/v1/validate.py +2 -2
  20. langflow/api/v1/voice_mode.py +58 -62
  21. langflow/api/v2/files.py +2 -2
  22. langflow/api/v2/mcp.py +10 -9
  23. langflow/base/composio/composio_base.py +21 -2
  24. langflow/base/data/docling_utils.py +194 -0
  25. langflow/base/embeddings/aiml_embeddings.py +1 -1
  26. langflow/base/flow_processing/utils.py +1 -2
  27. langflow/base/io/__init__.py +0 -1
  28. langflow/base/langwatch/utils.py +2 -1
  29. langflow/base/mcp/util.py +49 -47
  30. langflow/base/prompts/api_utils.py +1 -1
  31. langflow/base/tools/flow_tool.py +2 -2
  32. langflow/base/tools/run_flow.py +2 -6
  33. langflow/components/Notion/add_content_to_page.py +2 -2
  34. langflow/components/Notion/list_database_properties.py +2 -2
  35. langflow/components/Notion/list_pages.py +2 -2
  36. langflow/components/Notion/page_content_viewer.py +2 -2
  37. langflow/components/Notion/update_page_property.py +1 -1
  38. langflow/components/agentql/agentql_api.py +2 -10
  39. langflow/components/agents/agent.py +3 -3
  40. langflow/components/agents/mcp_component.py +14 -14
  41. langflow/components/anthropic/anthropic.py +5 -4
  42. langflow/components/assemblyai/assemblyai_get_subtitles.py +2 -2
  43. langflow/components/assemblyai/assemblyai_lemur.py +2 -2
  44. langflow/components/assemblyai/assemblyai_list_transcripts.py +2 -2
  45. langflow/components/assemblyai/assemblyai_poll_transcript.py +2 -2
  46. langflow/components/assemblyai/assemblyai_start_transcript.py +2 -2
  47. langflow/components/data/file.py +575 -55
  48. langflow/components/data/url.py +1 -1
  49. langflow/components/datastax/astra_assistant_manager.py +3 -3
  50. langflow/components/datastax/create_assistant.py +1 -2
  51. langflow/components/deactivated/merge_data.py +1 -2
  52. langflow/components/deactivated/sub_flow.py +6 -7
  53. langflow/components/deactivated/vectara_self_query.py +3 -3
  54. langflow/components/docling/__init__.py +0 -198
  55. langflow/components/docling/docling_inline.py +1 -1
  56. langflow/components/embeddings/text_embedder.py +3 -3
  57. langflow/components/firecrawl/firecrawl_extract_api.py +2 -9
  58. langflow/components/google/gmail.py +1 -1
  59. langflow/components/google/google_generative_ai.py +5 -11
  60. langflow/components/groq/groq.py +4 -3
  61. langflow/components/helpers/current_date.py +2 -3
  62. langflow/components/helpers/memory.py +1 -1
  63. langflow/components/ibm/watsonx.py +1 -1
  64. langflow/components/ibm/watsonx_embeddings.py +1 -1
  65. langflow/components/langwatch/langwatch.py +3 -3
  66. langflow/components/logic/flow_tool.py +2 -2
  67. langflow/components/logic/notify.py +1 -1
  68. langflow/components/logic/run_flow.py +2 -3
  69. langflow/components/logic/sub_flow.py +4 -5
  70. langflow/components/mem0/mem0_chat_memory.py +2 -8
  71. langflow/components/nvidia/nvidia.py +3 -3
  72. langflow/components/olivya/olivya.py +7 -7
  73. langflow/components/ollama/ollama.py +8 -6
  74. langflow/components/processing/batch_run.py +8 -8
  75. langflow/components/processing/data_operations.py +2 -2
  76. langflow/components/processing/merge_data.py +1 -2
  77. langflow/components/processing/message_to_data.py +2 -3
  78. langflow/components/processing/parse_json_data.py +1 -1
  79. langflow/components/prototypes/python_function.py +2 -3
  80. langflow/components/serpapi/serp.py +1 -1
  81. langflow/components/tavily/tavily_extract.py +1 -1
  82. langflow/components/tavily/tavily_search.py +1 -1
  83. langflow/components/tools/calculator.py +2 -2
  84. langflow/components/tools/python_code_structured_tool.py +3 -10
  85. langflow/components/tools/python_repl.py +2 -2
  86. langflow/components/tools/searxng.py +3 -3
  87. langflow/components/tools/serp_api.py +2 -2
  88. langflow/components/tools/tavily_search_tool.py +2 -2
  89. langflow/components/tools/yahoo_finance.py +1 -1
  90. langflow/components/twelvelabs/video_embeddings.py +4 -4
  91. langflow/components/vectorstores/local_db.py +1 -1
  92. langflow/components/yahoosearch/yahoo.py +1 -1
  93. langflow/components/youtube/trending.py +3 -4
  94. langflow/custom/attributes.py +2 -1
  95. langflow/custom/code_parser/code_parser.py +1 -1
  96. langflow/custom/custom_component/base_component.py +1 -1
  97. langflow/custom/custom_component/component.py +16 -2
  98. langflow/custom/directory_reader/directory_reader.py +7 -7
  99. langflow/custom/directory_reader/utils.py +1 -2
  100. langflow/custom/utils.py +30 -30
  101. langflow/events/event_manager.py +1 -1
  102. langflow/frontend/assets/{SlackIcon-CnvyOamQ.js → SlackIcon-BhW6H3JR.js} +1 -1
  103. langflow/frontend/assets/{Wikipedia-nyTEXdr2.js → Wikipedia-Dx5jbiy3.js} +1 -1
  104. langflow/frontend/assets/{Wolfram-BYMQkNSq.js → Wolfram-CIyonzwo.js} +1 -1
  105. langflow/frontend/assets/{index-HK3bVMYA.js → index-0XQqYgdG.js} +1 -1
  106. langflow/frontend/assets/{index-BZgXW854.js → index-1Q3VBqKn.js} +1 -1
  107. langflow/frontend/assets/{index-BQ6NUdMY.js → index-35sspuLu.js} +1 -1
  108. langflow/frontend/assets/{index-DPCzHdsC.js → index-7hzXChQz.js} +1 -1
  109. langflow/frontend/assets/{index-CFDvOtKC.js → index-8cuhogZP.js} +1 -1
  110. langflow/frontend/assets/{index-CYDAYm-i.js → index-B0m53xKd.js} +1 -1
  111. langflow/frontend/assets/{index-Q9vDw0Xl.js → index-B1XqWJhG.js} +1 -1
  112. langflow/frontend/assets/{index-Gkrq-vzm.js → index-B3KCdQ91.js} +1 -1
  113. langflow/frontend/assets/{index-DytJENYD.js → index-B7uEuOPK.js} +1 -1
  114. langflow/frontend/assets/{index-DkXy1WFo.js → index-B8UR8v-Q.js} +1 -1
  115. langflow/frontend/assets/{index-BChjg6Az.js → index-BD7Io1hL.js} +6 -6
  116. langflow/frontend/assets/{index-CyPvTB63.js → index-BDQrd7Tj.js} +1 -1
  117. langflow/frontend/assets/{index-BbJjt5m4.js → index-BDuk0d7P.js} +1 -1
  118. langflow/frontend/assets/{index-BBxAPk1y.js → index-BFQ8KFK0.js} +1 -1
  119. langflow/frontend/assets/{index-BqPpO6KG.js → index-BFf0HTFI.js} +1 -1
  120. langflow/frontend/assets/{index-yCHsaqs8.js → index-BHhnpSkW.js} +1 -1
  121. langflow/frontend/assets/{index-Bd6WtbKA.js → index-BKKrUElc.js} +1 -1
  122. langflow/frontend/assets/{index-DHq8TQPB.js → index-BKeZt2hQ.js} +1 -1
  123. langflow/frontend/assets/{index-BCCGvqay.js → index-BKlQbl-6.js} +1 -1
  124. langflow/frontend/assets/{index-Boso-xEw.js → index-BLYw9MK2.js} +1 -1
  125. langflow/frontend/assets/{index-DmMDPoi0.js → index-BLsVo9iW.js} +1 -1
  126. langflow/frontend/assets/{index-Car-zdor.js → index-BNQIbda3.js} +1 -1
  127. langflow/frontend/assets/{index-Dg-63Si_.js → index-BPR2mEFC.js} +1 -1
  128. langflow/frontend/assets/{index-CTrt1Q_j.js → index-BPfdqCc_.js} +1 -1
  129. langflow/frontend/assets/{index-CVQmT7ZL.js → index-BQrVDjR1.js} +1 -1
  130. langflow/frontend/assets/{index-BB15_iOb.js → index-BRmSeoWR.js} +1 -1
  131. langflow/frontend/assets/{index-BX5D-USa.js → index-BUse-kxM.js} +1 -1
  132. langflow/frontend/assets/{index-CaQ_H9ww.js → index-BVFaF7HW.js} +1 -1
  133. langflow/frontend/assets/{index-C26RqKWL.js → index-BWgIWfv2.js} +1 -1
  134. langflow/frontend/assets/{index-DbMFlnHE.js → index-BWt5xGeA.js} +1 -1
  135. langflow/frontend/assets/{index-Db71w3lq.js → index-BYhcGLTV.js} +1 -1
  136. langflow/frontend/assets/{index-DzW2mfkK.js → index-BYjw7Gk3.js} +1 -1
  137. langflow/frontend/assets/{index-DJB12jIC.js → index-BZFljdMa.js} +1 -1
  138. langflow/frontend/assets/{index-nVwHLjuV.js → index-BcAgItH4.js} +1 -1
  139. langflow/frontend/assets/{index-DkelbYy7.js → index-Bct1s6__.js} +1 -1
  140. langflow/frontend/assets/{index-ChXJpBz4.js → index-Bhv79Zso.js} +1 -1
  141. langflow/frontend/assets/{index-BxEuHa76.js → index-Bj3lSwvZ.js} +1 -1
  142. langflow/frontend/assets/{index-BkPYpfgw.js → index-Bk4mTwnI.js} +1 -1
  143. langflow/frontend/assets/{index-BvT7L317.js → index-BmIx1cws.js} +1 -1
  144. langflow/frontend/assets/{index-DIDDfmlJ.js → index-BmYJJ5YS.js} +1 -1
  145. langflow/frontend/assets/{index-C7QWbnLK.js → index-BnAFhkSN.js} +1 -1
  146. langflow/frontend/assets/{index-CJo_cyWW.js → index-Bo-ww0Bb.js} +1 -1
  147. langflow/frontend/assets/{index-DjQETUy8.js → index-BpmqDOeZ.js} +1 -1
  148. langflow/frontend/assets/{index-ya2uXE8v.js → index-BrVhdPZb.js} +1 -1
  149. langflow/frontend/assets/{index-DCRk27Tp.js → index-BvGQfVBD.js} +1 -1
  150. langflow/frontend/assets/{index-BTrsh9LS.js → index-Bwi4flFg.js} +1 -1
  151. langflow/frontend/assets/{index-BRxvproo.js → index-BzoRPtTY.js} +1 -1
  152. langflow/frontend/assets/{index-BIQQCMvz.js → index-C--IDAyc.js} +1 -1
  153. langflow/frontend/assets/{index-DfngcQxO.js → index-C0E3_MIK.js} +1 -1
  154. langflow/frontend/assets/{index-Bvxg4_ux.js → index-C27Jj_26.js} +1 -1
  155. langflow/frontend/assets/{index-D8lOi1GI.js → index-C2eQmQsn.js} +1 -1
  156. langflow/frontend/assets/{index-rXV1G1aB.js → index-C8K0r39B.js} +1 -1
  157. langflow/frontend/assets/{index-B3Sur4Z3.js → index-CEJNWPhA.js} +1 -1
  158. langflow/frontend/assets/{index-BR0bkVqX.js → index-CFNTYfFK.js} +1 -1
  159. langflow/frontend/assets/{index-Bnqod3vk.js → index-CMHpjHZl.js} +1 -1
  160. langflow/frontend/assets/{index-BLGYN-9b.js → index-CSu8KHOi.js} +1 -1
  161. langflow/frontend/assets/{index-BOB_zsjl.js → index-CUKmGsI6.js} +1 -1
  162. langflow/frontend/assets/{index-BzEUlaw_.js → index-CWYiSeWV.js} +1 -1
  163. langflow/frontend/assets/{index-DVlceYFD.js → index-CY7_TBTC.js} +1 -1
  164. langflow/frontend/assets/{index-D3DDfngy.js → index-CbnWRlYY.js} +1 -1
  165. langflow/frontend/assets/{index-cvZdgWHQ.js → index-CfPBgkqg.js} +1 -1
  166. langflow/frontend/assets/{index-Ui4xUImO.js → index-Cg53lrYh.js} +1 -1
  167. langflow/frontend/assets/{index-C6jri9Wm.js → index-CgU7KF4I.js} +1 -1
  168. langflow/frontend/assets/{index-BVEZDXxS.js → index-CgwykVGh.js} +1 -1
  169. langflow/frontend/assets/{index-BOeo01QB.js → index-Ch5r0oW6.js} +1 -1
  170. langflow/frontend/assets/{index-D6PSjHxP.js → index-CjsommIr.js} +1 -1
  171. langflow/frontend/assets/{index-pCQ_yw8m.js → index-CkK25zZO.js} +1 -1
  172. langflow/frontend/assets/{index-BFp_O-c9.js → index-CkjwSTSM.js} +1 -1
  173. langflow/frontend/assets/{index-Du_18NCU.js → index-CmSFKgiD.js} +1 -1
  174. langflow/frontend/assets/{index-BvwZfF2i.js → index-Cr5v2ave.js} +1 -1
  175. langflow/frontend/assets/{index-FUxmznS-.js → index-CrAF-31Y.js} +1 -1
  176. langflow/frontend/assets/{index-C-2hghRJ.js → index-CsLQiWNf.js} +1 -1
  177. langflow/frontend/assets/{index-C_TdzfAn.js → index-CuCM7Wu7.js} +1 -1
  178. langflow/frontend/assets/{index-D5_DsUJc.js → index-Cxy9sEpy.js} +1 -1
  179. langflow/frontend/assets/{index-C_veJlEb.js → index-CyP3py8K.js} +1 -1
  180. langflow/frontend/assets/{index-OazXJdEl.js → index-CzHzeZuA.js} +1 -1
  181. langflow/frontend/assets/{index-CvcEzq4x.js → index-D1oynC8a.js} +1 -1
  182. langflow/frontend/assets/{index-CZQ9rXNa.js → index-D4tjMhfY.js} +1 -1
  183. langflow/frontend/assets/{index-B1YN7oMV.js → index-D6CSIrp1.js} +1 -1
  184. langflow/frontend/assets/{index-DfxYyS3M.js → index-D9kwEzPB.js} +1 -1
  185. langflow/frontend/assets/{index-BbRm7beF.js → index-DDXsm8tz.js} +1 -1
  186. langflow/frontend/assets/{index-xuIrH2Dq.js → index-DDhJVVel.js} +1 -1
  187. langflow/frontend/assets/{index-CmplyEaa.js → index-DH6o91_s.js} +1 -1
  188. langflow/frontend/assets/{index-DnEGCgih.js → index-DHngW1k8.js} +1 -1
  189. langflow/frontend/assets/{index-ajRge-Mg.js → index-DIKUsGLF.js} +1 -1
  190. langflow/frontend/assets/{index-DpClkXIV.js → index-DJESSNJi.js} +1 -1
  191. langflow/frontend/assets/{index-8WdfSTTz.js → index-DMCWDJOl.js} +1 -1
  192. langflow/frontend/assets/{index-DZTC5pdT.js → index-DOEvKC2X.js} +1 -1
  193. langflow/frontend/assets/{index-DysKpOuj.js → index-DOQDkSoK.js} +1 -1
  194. langflow/frontend/assets/{index-C82JjCPD.js → index-DXAfIEvs.js} +1 -1
  195. langflow/frontend/assets/{index-D8GJngXa.js → index-DZP_SaHb.js} +1 -1
  196. langflow/frontend/assets/{index-DIkNW9Cd.js → index-DZxUIhWh.js} +1 -1
  197. langflow/frontend/assets/{index-DK1Ptcc4.js → index-Dda2u_yz.js} +1 -1
  198. langflow/frontend/assets/{index-BWmPX4iQ.js → index-Dg8N3NSO.js} +1 -1
  199. langflow/frontend/assets/{index-CWdkbVsd.js → index-DkGhPNeA.js} +1 -1
  200. langflow/frontend/assets/{index-DF5VwgU6.js → index-Dka_Rk4-.js} +1 -1
  201. langflow/frontend/assets/{index-Bsa0xZyL.js → index-DljpLeCW.js} +1 -1
  202. langflow/frontend/assets/{index-CLPdN-q6.js → index-DnVYJtVO.js} +1 -1
  203. langflow/frontend/assets/{index-CxvP91st.js → index-DqbzUcI5.js} +1 -1
  204. langflow/frontend/assets/{index-BIzTEqFh.js → index-Dr6pVDPI.js} +1 -1
  205. langflow/frontend/assets/{index-tVYiABdp.js → index-DsoX2o1S.js} +1 -1
  206. langflow/frontend/assets/{index-CCePCqkT.js → index-DwfHWnX7.js} +1 -1
  207. langflow/frontend/assets/{index-BEMw2Np8.js → index-Dx-Z87KT.js} +1 -1
  208. langflow/frontend/assets/{index-BRYjyhAd.js → index-DyqITq51.js} +1 -1
  209. langflow/frontend/assets/{index-l7bzB8Ex.js → index-DzIv3RyR.js} +1 -1
  210. langflow/frontend/assets/{index-D-9TI74R.js → index-G4ro0MjT.js} +1 -1
  211. langflow/frontend/assets/{index-CCxGSSTT.js → index-H7J7w7fa.js} +1 -1
  212. langflow/frontend/assets/{index-_UcqeEjm.js → index-KWY77KfV.js} +1 -1
  213. langflow/frontend/assets/{index-Dqd4RjYA.js → index-U9GWm1eH.js} +1 -1
  214. langflow/frontend/assets/{index-Dq5ilsem.js → index-Un9pWxnP.js} +1 -1
  215. langflow/frontend/assets/{index-BzL_EoKd.js → index-Xi4TplbI.js} +1 -1
  216. langflow/frontend/assets/{index-LbYjHKkn.js → index-_cbGmjF4.js} +1 -1
  217. langflow/frontend/assets/{index-DGRMNe9n.js → index-cEXY6V06.js} +1 -1
  218. langflow/frontend/assets/{index-8yMsjVV2.js → index-dyXKnkMi.js} +1 -1
  219. langflow/frontend/assets/{index-DKHNourL.js → index-eUkS6iJM.js} +1 -1
  220. langflow/frontend/assets/{index-Bv8h2Z-q.js → index-ekfMOqrF.js} +1 -1
  221. langflow/frontend/assets/{index-B748uLP1.js → index-gdb7XMS8.js} +1 -1
  222. langflow/frontend/assets/{index-CpvYQ0ug.js → index-hZUcL0MZ.js} +1 -1
  223. langflow/frontend/assets/{index-BIXaW2aY.js → index-kkA-qHB_.js} +1 -1
  224. langflow/frontend/assets/{index-BhIOhlCH.js → index-mzl9ULw5.js} +1 -1
  225. langflow/frontend/assets/{index-CYe8Ipef.js → index-oxHBZk2v.js} +1 -1
  226. langflow/frontend/assets/{index-WPFivmdQ.js → index-p2kStSPe.js} +1 -1
  227. langflow/frontend/assets/{index-BmX5CoED.js → index-paQEWYGT.js} +1 -1
  228. langflow/frontend/assets/{index-CpcbQZIF.js → index-r_8gs4nL.js} +1 -1
  229. langflow/frontend/assets/{index-dcnYpT9N.js → index-uiKla4UR.js} +1 -1
  230. langflow/frontend/assets/{index-BTEW9e8P.js → index-vJOO5U8M.js} +1 -1
  231. langflow/frontend/assets/{index-CQMoqLAu.js → index-w72fDjpG.js} +1 -1
  232. langflow/frontend/assets/{index-Dsps-jKu.js → index-zV82kQ6k.js} +1 -1
  233. langflow/frontend/assets/lazyIconImports-DTNgvPE-.js +2 -0
  234. langflow/frontend/assets/{use-post-add-user-BrBYH9eR.js → use-post-add-user-CvtuazTg.js} +1 -1
  235. langflow/frontend/index.html +1 -1
  236. langflow/graph/edge/base.py +2 -3
  237. langflow/graph/graph/base.py +14 -12
  238. langflow/graph/graph/constants.py +3 -0
  239. langflow/graph/utils.py +6 -6
  240. langflow/graph/vertex/base.py +4 -5
  241. langflow/graph/vertex/param_handler.py +1 -1
  242. langflow/graph/vertex/vertex_types.py +2 -2
  243. langflow/helpers/flow.py +1 -1
  244. langflow/initial_setup/setup.py +32 -30
  245. langflow/initial_setup/starter_projects/Blog Writer.json +2 -2
  246. langflow/initial_setup/starter_projects/Custom Component Generator.json +2 -2
  247. langflow/initial_setup/starter_projects/Document Q&A.json +1 -1
  248. langflow/initial_setup/starter_projects/Instagram Copywriter.json +3 -3
  249. langflow/initial_setup/starter_projects/Invoice Summarizer.json +1 -1
  250. langflow/initial_setup/starter_projects/Knowledge Ingestion.json +2 -2
  251. langflow/initial_setup/starter_projects/Market Research.json +3 -3
  252. langflow/initial_setup/starter_projects/Meeting Summary.json +6 -6
  253. langflow/initial_setup/starter_projects/Memory Chatbot.json +2 -2
  254. langflow/initial_setup/starter_projects/News Aggregator.json +3 -3
  255. langflow/initial_setup/starter_projects/Nvidia Remix.json +3 -3
  256. langflow/initial_setup/starter_projects/Pok/303/251dex Agent.json" +1 -1
  257. langflow/initial_setup/starter_projects/Portfolio Website Code Generator.json +1 -1
  258. langflow/initial_setup/starter_projects/Price Deal Finder.json +5 -5
  259. langflow/initial_setup/starter_projects/Research Agent.json +3 -3
  260. langflow/initial_setup/starter_projects/SaaS Pricing.json +1 -1
  261. langflow/initial_setup/starter_projects/Search agent.json +1 -1
  262. langflow/initial_setup/starter_projects/Sequential Tasks Agents.json +7 -7
  263. langflow/initial_setup/starter_projects/Simple Agent.json +3 -3
  264. langflow/initial_setup/starter_projects/Social Media Agent.json +1 -1
  265. langflow/initial_setup/starter_projects/Text Sentiment Analysis.json +1 -1
  266. langflow/initial_setup/starter_projects/Travel Planning Agents.json +3 -3
  267. langflow/initial_setup/starter_projects/Vector Store RAG.json +1 -1
  268. langflow/initial_setup/starter_projects/Youtube Analysis.json +3 -3
  269. langflow/interface/components.py +23 -22
  270. langflow/interface/initialize/loading.py +5 -5
  271. langflow/interface/run.py +1 -1
  272. langflow/interface/utils.py +1 -1
  273. langflow/io/__init__.py +0 -1
  274. langflow/langflow_launcher.py +1 -1
  275. langflow/load/load.py +2 -7
  276. langflow/logging/__init__.py +0 -1
  277. langflow/logging/logger.py +191 -115
  278. langflow/logging/setup.py +1 -1
  279. langflow/main.py +37 -52
  280. langflow/memory.py +7 -7
  281. langflow/middleware.py +1 -1
  282. langflow/processing/process.py +3 -3
  283. langflow/schema/artifact.py +2 -2
  284. langflow/schema/data.py +10 -2
  285. langflow/schema/dataframe.py +1 -1
  286. langflow/schema/message.py +1 -1
  287. langflow/serialization/serialization.py +1 -1
  288. langflow/services/auth/utils.py +2 -2
  289. langflow/services/cache/disk.py +1 -1
  290. langflow/services/cache/service.py +3 -3
  291. langflow/services/database/models/flow/model.py +2 -7
  292. langflow/services/database/models/transactions/crud.py +2 -2
  293. langflow/services/database/models/user/crud.py +2 -2
  294. langflow/services/database/service.py +8 -8
  295. langflow/services/database/utils.py +6 -5
  296. langflow/services/deps.py +2 -3
  297. langflow/services/factory.py +1 -1
  298. langflow/services/flow/flow_runner.py +7 -12
  299. langflow/services/job_queue/service.py +16 -15
  300. langflow/services/manager.py +3 -4
  301. langflow/services/settings/auth.py +1 -1
  302. langflow/services/settings/base.py +3 -8
  303. langflow/services/settings/manager.py +1 -1
  304. langflow/services/settings/utils.py +1 -1
  305. langflow/services/socket/__init__.py +0 -1
  306. langflow/services/socket/service.py +3 -3
  307. langflow/services/socket/utils.py +4 -4
  308. langflow/services/state/service.py +1 -2
  309. langflow/services/storage/factory.py +1 -1
  310. langflow/services/storage/local.py +9 -8
  311. langflow/services/storage/s3.py +11 -10
  312. langflow/services/store/service.py +3 -3
  313. langflow/services/store/utils.py +3 -2
  314. langflow/services/task/temp_flow_cleanup.py +7 -7
  315. langflow/services/telemetry/service.py +10 -10
  316. langflow/services/tracing/arize_phoenix.py +2 -2
  317. langflow/services/tracing/langfuse.py +1 -1
  318. langflow/services/tracing/langsmith.py +1 -1
  319. langflow/services/tracing/langwatch.py +1 -1
  320. langflow/services/tracing/opik.py +1 -1
  321. langflow/services/tracing/service.py +25 -6
  322. langflow/services/tracing/traceloop.py +245 -0
  323. langflow/services/utils.py +7 -7
  324. langflow/services/variable/kubernetes.py +3 -3
  325. langflow/services/variable/kubernetes_secrets.py +2 -1
  326. langflow/services/variable/service.py +5 -5
  327. langflow/utils/component_utils.py +9 -6
  328. langflow/utils/util.py +5 -5
  329. langflow/utils/validate.py +3 -3
  330. langflow/utils/voice_utils.py +2 -2
  331. {langflow_base_nightly-0.5.0.dev37.dist-info → langflow_base_nightly-0.5.0.dev38.dist-info}/METADATA +2 -1
  332. {langflow_base_nightly-0.5.0.dev37.dist-info → langflow_base_nightly-0.5.0.dev38.dist-info}/RECORD +334 -333
  333. langflow/frontend/assets/lazyIconImports-t6wEndt1.js +0 -2
  334. {langflow_base_nightly-0.5.0.dev37.dist-info → langflow_base_nightly-0.5.0.dev38.dist-info}/WHEEL +0 -0
  335. {langflow_base_nightly-0.5.0.dev37.dist-info → langflow_base_nightly-0.5.0.dev38.dist-info}/entry_points.txt +0 -0
@@ -1 +1 @@
1
- import{j as h,r as t}from"./index-BChjg6Az.js";const e=v=>h.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48",width:"23px",height:"23px",children:[h.jsx("path",{fill:"#43a047",d:"M37,45H11c-1.657,0-3-1.343-3-3V6c0-1.657,1.343-3,3-3h19l10,10v29C40,43.657,38.657,45,37,45z"}),h.jsx("path",{fill:"#c8e6c9",d:"M40 13L30 13 30 3z"}),h.jsx("path",{fill:"#2e7d32",d:"M30 13L40 23 40 13z"}),h.jsx("path",{fill:"#e8f5e9",d:"M31,23H17h-2v2v2v2v2v2v2v2h18v-2v-2v-2v-2v-2v-2v-2H31z M17,25h4v2h-4V25z M17,29h4v2h-4V29z M17,33h4v2h-4V33z M31,35h-8v-2h8V35z M31,31h-8v-2h8V31z M31,27h-8v-2h8V27z"})]}),r=t.forwardRef((v,s)=>h.jsx(e,{ref:s,...v}));export{r as GooglesheetsIcon};
1
+ import{j as h,r as t}from"./index-BD7Io1hL.js";const e=v=>h.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48",width:"23px",height:"23px",children:[h.jsx("path",{fill:"#43a047",d:"M37,45H11c-1.657,0-3-1.343-3-3V6c0-1.657,1.343-3,3-3h19l10,10v29C40,43.657,38.657,45,37,45z"}),h.jsx("path",{fill:"#c8e6c9",d:"M40 13L30 13 30 3z"}),h.jsx("path",{fill:"#2e7d32",d:"M30 13L40 23 40 13z"}),h.jsx("path",{fill:"#e8f5e9",d:"M31,23H17h-2v2v2v2v2v2v2v2h18v-2v-2v-2v-2v-2v-2v-2H31z M17,25h4v2h-4V25z M17,29h4v2h-4V29z M17,33h4v2h-4V33z M31,35h-8v-2h8V35z M31,31h-8v-2h8V31z M31,27h-8v-2h8V27z"})]}),r=t.forwardRef((v,s)=>h.jsx(e,{ref:s,...v}));export{r as GooglesheetsIcon};
@@ -1 +1 @@
1
- import{j as l,r as t}from"./index-BChjg6Az.js";const e=v=>l.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 509.64",width:"1em",height:"1em",...v,children:[l.jsx("path",{fill:"#1F1F1F",d:"M115.613 0h280.774C459.974 0 512 52.025 512 115.612v278.415c0 63.587-52.026 115.613-115.613 115.613H115.613C52.026 509.64 0 457.614 0 394.027V115.612C0 52.025 52.026 0 115.613 0z"}),l.jsx("path",{fill:"#fff",fillRule:"nonzero",d:"M348.851 128.063l-68.946 58.302h68.946v-58.302zm-83.908 48.709l100.931-85.349v94.942h32.244v143.421h-38.731v90.004l-94.442-86.662v83.946h-17.023v-83.906l-96.596 86.246v-89.628h-37.445V186.365h38.732V90.768l95.309 84.958v-83.16h17.023l-.002 84.206zm-29.209 26.616c-34.955.02-69.893 0-104.83 0v109.375h20.415v-27.121l84.415-82.254zm41.445 0l82.208 82.324v27.051h21.708V203.388c-34.617 0-69.274.02-103.916 0zm-42.874-17.023l-64.669-57.646v57.646h64.669zm13.617 124.076v-95.2l-79.573 77.516v88.731l79.573-71.047zm17.252-95.022v94.863l77.19 70.83c0-29.485-.012-58.943-.012-88.425l-77.178-77.268z"})]}),s=t.forwardRef((v,h)=>l.jsx(e,{ref:h,...v}));export{s as PerplexityIcon};
1
+ import{j as l,r as t}from"./index-BD7Io1hL.js";const e=v=>l.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 512 509.64",width:"1em",height:"1em",...v,children:[l.jsx("path",{fill:"#1F1F1F",d:"M115.613 0h280.774C459.974 0 512 52.025 512 115.612v278.415c0 63.587-52.026 115.613-115.613 115.613H115.613C52.026 509.64 0 457.614 0 394.027V115.612C0 52.025 52.026 0 115.613 0z"}),l.jsx("path",{fill:"#fff",fillRule:"nonzero",d:"M348.851 128.063l-68.946 58.302h68.946v-58.302zm-83.908 48.709l100.931-85.349v94.942h32.244v143.421h-38.731v90.004l-94.442-86.662v83.946h-17.023v-83.906l-96.596 86.246v-89.628h-37.445V186.365h38.732V90.768l95.309 84.958v-83.16h17.023l-.002 84.206zm-29.209 26.616c-34.955.02-69.893 0-104.83 0v109.375h20.415v-27.121l84.415-82.254zm41.445 0l82.208 82.324v27.051h21.708V203.388c-34.617 0-69.274.02-103.916 0zm-42.874-17.023l-64.669-57.646v57.646h64.669zm13.617 124.076v-95.2l-79.573 77.516v88.731l79.573-71.047zm17.252-95.022v94.863l77.19 70.83c0-29.485-.012-58.943-.012-88.425l-77.178-77.268z"})]}),s=t.forwardRef((v,h)=>l.jsx(e,{ref:h,...v}));export{s as PerplexityIcon};
@@ -1 +1 @@
1
- import{j as s,r as t}from"./index-BChjg6Az.js";const e=r=>s.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 16 16",...r,children:[s.jsxs("g",{stroke:"#059669",strokeLinecap:"round",strokeLinejoin:"round",clipPath:"url(#clip0_4380_58979)",children:[s.jsx("path",{d:"M14.666 8a6.667 6.667 0 11-6.667-6.667"}),s.jsx("path",{strokeWidth:"1.25",d:"M14.833 1.5l-3.666 3.667L9.5 3.5"}),s.jsx("path",{d:"M8 1.333a9.667 9.667 0 000 13.333A9.667 9.667 0 0010.665 8M14.666 8H1.333"})]}),s.jsx("defs",{children:s.jsx("clipPath",{id:"clip0_4380_58979",children:s.jsx("path",{fill:"#fff",d:"M0 0H16V16H0z"})})})]}),n=t.forwardRef((r,o)=>s.jsx(e,{ref:o,...r}));export{n as GlobeOkIcon};
1
+ import{j as s,r as t}from"./index-BD7Io1hL.js";const e=r=>s.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 16 16",...r,children:[s.jsxs("g",{stroke:"#059669",strokeLinecap:"round",strokeLinejoin:"round",clipPath:"url(#clip0_4380_58979)",children:[s.jsx("path",{d:"M14.666 8a6.667 6.667 0 11-6.667-6.667"}),s.jsx("path",{strokeWidth:"1.25",d:"M14.833 1.5l-3.666 3.667L9.5 3.5"}),s.jsx("path",{d:"M8 1.333a9.667 9.667 0 000 13.333A9.667 9.667 0 0010.665 8M14.666 8H1.333"})]}),s.jsx("defs",{children:s.jsx("clipPath",{id:"clip0_4380_58979",children:s.jsx("path",{fill:"#fff",d:"M0 0H16V16H0z"})})})]}),n=t.forwardRef((r,o)=>s.jsx(e,{ref:o,...r}));export{n as GlobeOkIcon};
@@ -1 +1 @@
1
- import{j as s,r as x}from"./index-BChjg6Az.js";function c(t){return s.jsx("svg",{viewBox:"0 0 126 127",preserveAspectRatio:"xMidYMid meet",xmlns:"http://www.w3.org/2000/svg",...t,children:s.jsxs("g",{transform:"translate(0.000000,127.000000) scale(0.100000,-0.100000)",fill:t.isDark?"#ffffff":"#000000",stroke:"none",children:[s.jsx("path",{d:"M648 1248 c-26 -22 -29 -47 -8 -68 25 -25 42 -25 63 -2 22 24 21 45 -1 65 -22 20 -33 21 -54 5z"}),s.jsx("path",{d:"M440 1201 c-16 -4 -32 -21 -44 -45 -19 -38 -19 -39 3 -82 30 -64 27 -79 -23 -113 -66 -46 -75 -93 -27 -142 35 -34 68 -37 105 -8 45 35 50 63 21 120 -30 57 -25 75 29 108 45 28 60 71 42 116 -8 18 -18 35 -22 37 -19 11 -60 15 -84 9z"}),s.jsx("path",{d:"M807 1160 c-15 -12 -29 -36 -33 -55 -10 -57 -48 -74 -106 -50 -9 4 -33 1 -53 -5 -89 -29 -64 -164 30 -164 29 0 43 7 61 28 13 15 24 35 24 44 0 10 7 28 16 41 15 21 21 23 79 16 57 -6 65 -4 91 18 82 71 -24 194 -109 127z"}),s.jsx("path",{d:"M231 1104 c-38 -27 -22 -84 25 -84 29 0 46 23 42 56 -4 34 -37 48 -67 28z"}),s.jsx("path",{d:"M1032 1048 c-28 -28 -7 -78 33 -78 12 0 26 5 33 12 7 7 12 21 12 33 0 12 -5 26 -12 33 -7 7 -21 12 -33 12 -12 0 -26 -5 -33 -12z"}),s.jsx("path",{d:"M841 946 c-55 -31 -65 -93 -22 -137 35 -35 73 -38 116 -9 42 28 59 25 89 -12 50 -64 55 -68 94 -68 78 0 113 93 56 145 -32 30 -55 31 -113 5 -55 -25 -75 -19 -107 31 -13 22 -36 44 -50 49 -32 12 -34 12 -63 -4z"}),s.jsx("path",{d:"M119 921 c-51 -52 -33 -119 39 -141 65 -21 73 -35 66 -106 -6 -58 -5 -64 19 -88 36 -36 80 -35 118 3 32 33 36 58 14 100 -10 21 -26 31 -59 40 -57 14 -68 33 -60 108 6 54 4 60 -21 86 -37 36 -78 36 -116 -2z"}),s.jsx("path",{d:"M592 783 c-36 -7 -89 -65 -101 -109 -17 -64 8 -132 62 -164 43 -26 121 -26 164 0 86 52 88 189 3 251 -26 19 -89 30 -128 22z"}),s.jsx("path",{d:"M26 699 c-20 -30 -6 -63 28 -67 49 -6 74 38 40 72 -22 22 -50 20 -68 -5z"}),s.jsx("path",{d:"M928 704 c-31 -16 -51 -62 -42 -98 7 -29 48 -66 73 -66 9 0 27 -7 39 -16 22 -15 23 -21 17 -78 -6 -53 -4 -64 15 -89 46 -58 150 -21 150 53 0 36 -46 90 -77 90 -10 0 -29 7 -41 16 -20 14 -22 21 -16 82 4 49 2 72 -8 85 -20 26 -79 37 -110 21z"}),s.jsx("path",{d:"M1177 632 c-22 -24 -21 -45 1 -65 25 -23 48 -21 66 5 20 29 20 34 -4 58 -25 25 -42 25 -63 2z"}),s.jsx("path",{d:"M113 550 c-47 -19 -59 -102 -21 -137 36 -32 57 -35 105 -13 60 26 78 25 100 -6 37 -55 62 -74 93 -74 37 0 90 47 90 80 0 35 -27 76 -58 89 -26 11 -36 9 -81 -14 -60 -30 -77 -25 -110 30 -28 48 -70 64 -118 45z"}),s.jsx("path",{d:"M806 454 c-32 -33 -34 -74 -5 -120 26 -43 18 -68 -31 -99 -47 -29 -52 -37 -53 -80 -2 -70 77 -109 138 -69 35 23 41 65 15 117 -28 56 -24 75 25 108 48 33 67 71 53 111 -22 61 -96 78 -142 32z"}),s.jsx("path",{d:"M572 370 c-12 -11 -26 -38 -32 -60 -13 -47 -43 -67 -87 -55 -93 26 -160 -53 -110 -129 39 -59 131 -38 152 36 18 62 30 70 101 63 58 -7 64 -5 88 18 42 42 34 107 -15 132 -39 21 -71 19 -97 -5z"}),s.jsx("path",{d:"M190 297 c-45 -22 -34 -87 14 -87 45 0 62 52 28 83 -15 13 -22 14 -42 4z"}),s.jsx("path",{d:"M987 242 c-32 -35 -15 -82 28 -82 44 0 61 52 27 83 -24 22 -35 21 -55 -1z"}),s.jsx("path",{d:"M566 94 c-33 -32 -13 -74 36 -74 38 0 55 33 33 66 -18 28 -46 31 -69 8z"})]})})}const e=x.forwardRef((t,a)=>s.jsx(c,{className:"icon",ref:a,...t}));export{e as Mem0};
1
+ import{j as s,r as x}from"./index-BD7Io1hL.js";function c(t){return s.jsx("svg",{viewBox:"0 0 126 127",preserveAspectRatio:"xMidYMid meet",xmlns:"http://www.w3.org/2000/svg",...t,children:s.jsxs("g",{transform:"translate(0.000000,127.000000) scale(0.100000,-0.100000)",fill:t.isDark?"#ffffff":"#000000",stroke:"none",children:[s.jsx("path",{d:"M648 1248 c-26 -22 -29 -47 -8 -68 25 -25 42 -25 63 -2 22 24 21 45 -1 65 -22 20 -33 21 -54 5z"}),s.jsx("path",{d:"M440 1201 c-16 -4 -32 -21 -44 -45 -19 -38 -19 -39 3 -82 30 -64 27 -79 -23 -113 -66 -46 -75 -93 -27 -142 35 -34 68 -37 105 -8 45 35 50 63 21 120 -30 57 -25 75 29 108 45 28 60 71 42 116 -8 18 -18 35 -22 37 -19 11 -60 15 -84 9z"}),s.jsx("path",{d:"M807 1160 c-15 -12 -29 -36 -33 -55 -10 -57 -48 -74 -106 -50 -9 4 -33 1 -53 -5 -89 -29 -64 -164 30 -164 29 0 43 7 61 28 13 15 24 35 24 44 0 10 7 28 16 41 15 21 21 23 79 16 57 -6 65 -4 91 18 82 71 -24 194 -109 127z"}),s.jsx("path",{d:"M231 1104 c-38 -27 -22 -84 25 -84 29 0 46 23 42 56 -4 34 -37 48 -67 28z"}),s.jsx("path",{d:"M1032 1048 c-28 -28 -7 -78 33 -78 12 0 26 5 33 12 7 7 12 21 12 33 0 12 -5 26 -12 33 -7 7 -21 12 -33 12 -12 0 -26 -5 -33 -12z"}),s.jsx("path",{d:"M841 946 c-55 -31 -65 -93 -22 -137 35 -35 73 -38 116 -9 42 28 59 25 89 -12 50 -64 55 -68 94 -68 78 0 113 93 56 145 -32 30 -55 31 -113 5 -55 -25 -75 -19 -107 31 -13 22 -36 44 -50 49 -32 12 -34 12 -63 -4z"}),s.jsx("path",{d:"M119 921 c-51 -52 -33 -119 39 -141 65 -21 73 -35 66 -106 -6 -58 -5 -64 19 -88 36 -36 80 -35 118 3 32 33 36 58 14 100 -10 21 -26 31 -59 40 -57 14 -68 33 -60 108 6 54 4 60 -21 86 -37 36 -78 36 -116 -2z"}),s.jsx("path",{d:"M592 783 c-36 -7 -89 -65 -101 -109 -17 -64 8 -132 62 -164 43 -26 121 -26 164 0 86 52 88 189 3 251 -26 19 -89 30 -128 22z"}),s.jsx("path",{d:"M26 699 c-20 -30 -6 -63 28 -67 49 -6 74 38 40 72 -22 22 -50 20 -68 -5z"}),s.jsx("path",{d:"M928 704 c-31 -16 -51 -62 -42 -98 7 -29 48 -66 73 -66 9 0 27 -7 39 -16 22 -15 23 -21 17 -78 -6 -53 -4 -64 15 -89 46 -58 150 -21 150 53 0 36 -46 90 -77 90 -10 0 -29 7 -41 16 -20 14 -22 21 -16 82 4 49 2 72 -8 85 -20 26 -79 37 -110 21z"}),s.jsx("path",{d:"M1177 632 c-22 -24 -21 -45 1 -65 25 -23 48 -21 66 5 20 29 20 34 -4 58 -25 25 -42 25 -63 2z"}),s.jsx("path",{d:"M113 550 c-47 -19 -59 -102 -21 -137 36 -32 57 -35 105 -13 60 26 78 25 100 -6 37 -55 62 -74 93 -74 37 0 90 47 90 80 0 35 -27 76 -58 89 -26 11 -36 9 -81 -14 -60 -30 -77 -25 -110 30 -28 48 -70 64 -118 45z"}),s.jsx("path",{d:"M806 454 c-32 -33 -34 -74 -5 -120 26 -43 18 -68 -31 -99 -47 -29 -52 -37 -53 -80 -2 -70 77 -109 138 -69 35 23 41 65 15 117 -28 56 -24 75 25 108 48 33 67 71 53 111 -22 61 -96 78 -142 32z"}),s.jsx("path",{d:"M572 370 c-12 -11 -26 -38 -32 -60 -13 -47 -43 -67 -87 -55 -93 26 -160 -53 -110 -129 39 -59 131 -38 152 36 18 62 30 70 101 63 58 -7 64 -5 88 18 42 42 34 107 -15 132 -39 21 -71 19 -97 -5z"}),s.jsx("path",{d:"M190 297 c-45 -22 -34 -87 14 -87 45 0 62 52 28 83 -15 13 -22 14 -42 4z"}),s.jsx("path",{d:"M987 242 c-32 -35 -15 -82 28 -82 44 0 61 52 27 83 -24 22 -35 21 -55 -1z"}),s.jsx("path",{d:"M566 94 c-33 -32 -13 -74 36 -74 38 0 55 33 33 66 -18 28 -46 31 -69 8z"})]})})}const e=x.forwardRef((t,a)=>s.jsx(c,{className:"icon",ref:a,...t}));export{e as Mem0};
@@ -1 +1 @@
1
- import{j as s,r as i}from"./index-BChjg6Az.js";const l=C=>s.jsxs("svg",{viewBox:"0 0 256 341",version:"1.1",xmlns:"http://www.w3.org/2000/svg",preserveAspectRatio:"xMidYMid",...C,children:[s.jsx("title",{children:"upstash"}),s.jsxs("g",{children:[s.jsx("path",{d:"M0,298.416784 C56.5542815,354.970323 148.246768,354.970323 204.801032,298.416784 C261.354571,241.86252 261.354571,150.170106 204.801032,93.6158424 L179.200462,119.215688 C221.61634,161.631567 221.61634,230.401059 179.200462,272.816213 C136.785307,315.232092 68.0157428,315.232092 25.5998642,272.816213 L0,298.416784 Z",fill:"#00C98D"}),s.jsx("path",{d:"M51.200362,247.216367 C79.4772765,275.493137 125.323122,275.493137 153.600615,247.216367 C181.877385,218.939598 181.877385,173.093028 153.600615,144.816259 L128.000769,170.416105 C142.139154,184.55449 142.139154,207.477412 128.000769,221.616521 C113.86166,235.754906 90.9387378,235.754906 76.800353,221.616521 L51.200362,247.216367 Z",fill:"#00C98D"}),s.jsx("path",{d:"M256,42.415426 C199.445737,-14.1384753 107.753322,-14.1384753 51.1994207,42.415426 C-5.35485714,98.9696894 -5.35485714,190.662104 51.1994207,247.216367 L76.7989048,221.616521 C34.3841124,179.200643 34.3841124,110.431151 76.7989048,68.0159962 C119.214783,25.6001177 187.984275,25.6001177 230.39943,68.0159962 L256,42.415426 Z",fill:"#00C98D"}),s.jsx("path",{d:"M204.800308,93.6158424 C176.523538,65.3390727 130.676245,65.3390727 102.399475,93.6158424 C74.1219813,121.893336 74.1219813,167.739181 102.399475,196.015951 L127.999321,170.416105 C113.860936,156.27772 113.860936,133.354797 127.999321,119.215688 C142.137706,105.077304 165.060629,105.077304 179.199738,119.215688 L204.800308,93.6158424 Z",fill:"#00C98D"}),s.jsx("path",{d:"M256,42.415426 C199.445737,-14.1384753 107.753322,-14.1384753 51.1994207,42.415426 C-5.35485714,98.9696894 -5.35485714,190.662104 51.1994207,247.216367 L76.7989048,221.616521 C34.3841124,179.200643 34.3841124,110.431151 76.7989048,68.0159962 C119.214783,25.6001177 187.984275,25.6001177 230.39943,68.0159962 L256,42.415426 Z",fillOpacity:"0.4",fill:"#FFFFFF"}),s.jsx("path",{d:"M204.800308,93.6158424 C176.523538,65.3390727 130.676245,65.3390727 102.399475,93.6158424 C74.1219813,121.893336 74.1219813,167.739181 102.399475,196.015951 L127.999321,170.416105 C113.860936,156.27772 113.860936,133.354797 127.999321,119.215688 C142.137706,105.077304 165.060629,105.077304 179.199738,119.215688 L204.800308,93.6158424 Z",fillOpacity:"0.4",fill:"#FFFFFF"})]})]}),r=i.forwardRef((C,t)=>s.jsx(l,{ref:t,...C}));export{r as UpstashSvgIcon};
1
+ import{j as s,r as i}from"./index-BD7Io1hL.js";const l=C=>s.jsxs("svg",{viewBox:"0 0 256 341",version:"1.1",xmlns:"http://www.w3.org/2000/svg",preserveAspectRatio:"xMidYMid",...C,children:[s.jsx("title",{children:"upstash"}),s.jsxs("g",{children:[s.jsx("path",{d:"M0,298.416784 C56.5542815,354.970323 148.246768,354.970323 204.801032,298.416784 C261.354571,241.86252 261.354571,150.170106 204.801032,93.6158424 L179.200462,119.215688 C221.61634,161.631567 221.61634,230.401059 179.200462,272.816213 C136.785307,315.232092 68.0157428,315.232092 25.5998642,272.816213 L0,298.416784 Z",fill:"#00C98D"}),s.jsx("path",{d:"M51.200362,247.216367 C79.4772765,275.493137 125.323122,275.493137 153.600615,247.216367 C181.877385,218.939598 181.877385,173.093028 153.600615,144.816259 L128.000769,170.416105 C142.139154,184.55449 142.139154,207.477412 128.000769,221.616521 C113.86166,235.754906 90.9387378,235.754906 76.800353,221.616521 L51.200362,247.216367 Z",fill:"#00C98D"}),s.jsx("path",{d:"M256,42.415426 C199.445737,-14.1384753 107.753322,-14.1384753 51.1994207,42.415426 C-5.35485714,98.9696894 -5.35485714,190.662104 51.1994207,247.216367 L76.7989048,221.616521 C34.3841124,179.200643 34.3841124,110.431151 76.7989048,68.0159962 C119.214783,25.6001177 187.984275,25.6001177 230.39943,68.0159962 L256,42.415426 Z",fill:"#00C98D"}),s.jsx("path",{d:"M204.800308,93.6158424 C176.523538,65.3390727 130.676245,65.3390727 102.399475,93.6158424 C74.1219813,121.893336 74.1219813,167.739181 102.399475,196.015951 L127.999321,170.416105 C113.860936,156.27772 113.860936,133.354797 127.999321,119.215688 C142.137706,105.077304 165.060629,105.077304 179.199738,119.215688 L204.800308,93.6158424 Z",fill:"#00C98D"}),s.jsx("path",{d:"M256,42.415426 C199.445737,-14.1384753 107.753322,-14.1384753 51.1994207,42.415426 C-5.35485714,98.9696894 -5.35485714,190.662104 51.1994207,247.216367 L76.7989048,221.616521 C34.3841124,179.200643 34.3841124,110.431151 76.7989048,68.0159962 C119.214783,25.6001177 187.984275,25.6001177 230.39943,68.0159962 L256,42.415426 Z",fillOpacity:"0.4",fill:"#FFFFFF"}),s.jsx("path",{d:"M204.800308,93.6158424 C176.523538,65.3390727 130.676245,65.3390727 102.399475,93.6158424 C74.1219813,121.893336 74.1219813,167.739181 102.399475,196.015951 L127.999321,170.416105 C113.860936,156.27772 113.860936,133.354797 127.999321,119.215688 C142.137706,105.077304 165.060629,105.077304 179.199738,119.215688 L204.800308,93.6158424 Z",fillOpacity:"0.4",fill:"#FFFFFF"})]})]}),r=i.forwardRef((C,t)=>s.jsx(l,{ref:t,...C}));export{r as UpstashSvgIcon};
@@ -1 +1 @@
1
- import{j as r,r as a}from"./index-BChjg6Az.js";const e=o=>r.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"none",...o,children:r.jsx("path",{d:"M31.349 14.191L17.451.293a1.938 1.938 0 0 0-2.738 0L11.618 3.39l3.47 3.47a2.311 2.311 0 0 1 2.377.554 2.31 2.31 0 0 1 .549 2.392l3.36 3.359a2.31 2.31 0 0 1 2.393.55 2.311 2.311 0 0 1 0 3.27 2.312 2.312 0 0 1-3.271 0 2.309 2.309 0 0 1-.501-2.511l-3.12-3.12V20.24a2.31 2.31 0 0 1 .611 3.701 2.31 2.31 0 0 1-3.27 0 2.31 2.31 0 0 1 0-3.27 2.324 2.324 0 0 1 .759-.509V11.925a2.35 2.35 0 0 1-1.27-3.082L9.747 4.741 1.73 12.758a1.938 1.938 0 0 0 0 2.737L14.628 28.393a1.938 1.938 0 0 0 2.737 0l13.372-13.371a1.938 1.938 0 0 0 0-2.738",style:{stroke:"none",fillRule:"nonzero",fill:"#f03c2e",fillOpacity:1}})}),s=a.forwardRef((o,t)=>r.jsx(e,{ref:t,...o}));export{s as GitLoaderIcon};
1
+ import{j as r,r as a}from"./index-BD7Io1hL.js";const e=o=>r.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"none",...o,children:r.jsx("path",{d:"M31.349 14.191L17.451.293a1.938 1.938 0 0 0-2.738 0L11.618 3.39l3.47 3.47a2.311 2.311 0 0 1 2.377.554 2.31 2.31 0 0 1 .549 2.392l3.36 3.359a2.31 2.31 0 0 1 2.393.55 2.311 2.311 0 0 1 0 3.27 2.312 2.312 0 0 1-3.271 0 2.309 2.309 0 0 1-.501-2.511l-3.12-3.12V20.24a2.31 2.31 0 0 1 .611 3.701 2.31 2.31 0 0 1-3.27 0 2.31 2.31 0 0 1 0-3.27 2.324 2.324 0 0 1 .759-.509V11.925a2.35 2.35 0 0 1-1.27-3.082L9.747 4.741 1.73 12.758a1.938 1.938 0 0 0 0 2.737L14.628 28.393a1.938 1.938 0 0 0 2.737 0l13.372-13.371a1.938 1.938 0 0 0 0-2.738",style:{stroke:"none",fillRule:"nonzero",fill:"#f03c2e",fillOpacity:1}})}),s=a.forwardRef((o,t)=>r.jsx(e,{ref:t,...o}));export{s as GitLoaderIcon};
@@ -1 +1 @@
1
- import{j as o,r as t}from"./index-BChjg6Az.js";const e=r=>o.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",className:"icon icon-tabler icon-tabler-brand-elastic",viewBox:"0 0 24 24",...r,children:[o.jsx("path",{stroke:"none",d:"M0 0h24v24H0z"}),o.jsx("path",{d:"M14 2a5 5 0 015 5c0 .712-.232 1.387-.5 2 1.894.042 3.5 1.595 3.5 3.5 0 1.869-1.656 3.4-3.5 3.5.333.625.5 1.125.5 1.5a2.5 2.5 0 01-2.5 2.5c-.787 0-1.542-.432-2-1-.786 1.73-2.476 3-4.5 3a5 5 0 01-4.583-7 3.5 3.5 0 01-.11-6.992h.195a2.5 2.5 0 012-4c.787 0 1.542.432 2 1 .786-1.73 2.476-3 4.5-3zM8.5 9l-3-1"}),o.jsx("path",{d:"M9.5 5l-1 4 1 2 5 2 4-4M18.499 16l-3-.5-1-2.5M14.5 19l1-3.5M5.417 15L9.5 11"})]}),n=t.forwardRef((r,s)=>o.jsx(e,{ref:s,...r}));export{n as ElasticsearchIcon};
1
+ import{j as o,r as t}from"./index-BD7Io1hL.js";const e=r=>o.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:"2",className:"icon icon-tabler icon-tabler-brand-elastic",viewBox:"0 0 24 24",...r,children:[o.jsx("path",{stroke:"none",d:"M0 0h24v24H0z"}),o.jsx("path",{d:"M14 2a5 5 0 015 5c0 .712-.232 1.387-.5 2 1.894.042 3.5 1.595 3.5 3.5 0 1.869-1.656 3.4-3.5 3.5.333.625.5 1.125.5 1.5a2.5 2.5 0 01-2.5 2.5c-.787 0-1.542-.432-2-1-.786 1.73-2.476 3-4.5 3a5 5 0 01-4.583-7 3.5 3.5 0 01-.11-6.992h.195a2.5 2.5 0 012-4c.787 0 1.542.432 2 1 .786-1.73 2.476-3 4.5-3zM8.5 9l-3-1"}),o.jsx("path",{d:"M9.5 5l-1 4 1 2 5 2 4-4M18.499 16l-3-.5-1-2.5M14.5 19l1-3.5M5.417 15L9.5 11"})]}),n=t.forwardRef((r,s)=>o.jsx(e,{ref:s,...r}));export{n as ElasticsearchIcon};
@@ -1 +1 @@
1
- import{j as c,r as l}from"./index-BChjg6Az.js";const o=s=>c.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48",width:"23px",height:"23px",children:[c.jsx("path",{fill:"#48b564",d:"M35.76,26.36h0.01c0,0-3.77,5.53-6.94,9.64c-2.74,3.55-3.54,6.59-3.77,8.06 C24.97,44.6,24.53,45,24,45s-0.97-0.4-1.06-0.94c-0.23-1.47-1.03-4.51-3.77-8.06c-0.42-0.55-0.85-1.12-1.28-1.7L28.24,22l8.33-9.88 C37.49,14.05,38,16.21,38,18.5C38,21.4,37.17,24.09,35.76,26.36z"}),c.jsx("path",{fill:"#fcc60e",d:"M28.24,22L17.89,34.3c-2.82-3.78-5.66-7.94-5.66-7.94h0.01c-0.3-0.48-0.57-0.97-0.8-1.48L19.76,15 c-0.79,0.95-1.26,2.17-1.26,3.5c0,3.04,2.46,5.5,5.5,5.5C25.71,24,27.24,23.22,28.24,22z"}),c.jsx("path",{fill:"#2c85eb",d:"M28.4,4.74l-8.57,10.18L13.27,9.2C15.83,6.02,19.69,4,24,4C25.54,4,27.02,4.26,28.4,4.74z"}),c.jsx("path",{fill:"#ed5748",d:"M19.83,14.92L19.76,15l-8.32,9.88C10.52,22.95,10,20.79,10,18.5c0-3.54,1.23-6.79,3.27-9.3 L19.83,14.92z"}),c.jsx("path",{fill:"#5695f6",d:"M28.24,22c0.79-0.95,1.26-2.17,1.26-3.5c0-3.04-2.46-5.5-5.5-5.5c-1.71,0-3.24,0.78-4.24,2L28.4,4.74 c3.59,1.22,6.53,3.91,8.17,7.38L28.24,22z"})]}),x=l.forwardRef((s,t)=>c.jsx(o,{ref:t,...s}));export{x as GooglemapsIcon};
1
+ import{j as c,r as l}from"./index-BD7Io1hL.js";const o=s=>c.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48",width:"23px",height:"23px",children:[c.jsx("path",{fill:"#48b564",d:"M35.76,26.36h0.01c0,0-3.77,5.53-6.94,9.64c-2.74,3.55-3.54,6.59-3.77,8.06 C24.97,44.6,24.53,45,24,45s-0.97-0.4-1.06-0.94c-0.23-1.47-1.03-4.51-3.77-8.06c-0.42-0.55-0.85-1.12-1.28-1.7L28.24,22l8.33-9.88 C37.49,14.05,38,16.21,38,18.5C38,21.4,37.17,24.09,35.76,26.36z"}),c.jsx("path",{fill:"#fcc60e",d:"M28.24,22L17.89,34.3c-2.82-3.78-5.66-7.94-5.66-7.94h0.01c-0.3-0.48-0.57-0.97-0.8-1.48L19.76,15 c-0.79,0.95-1.26,2.17-1.26,3.5c0,3.04,2.46,5.5,5.5,5.5C25.71,24,27.24,23.22,28.24,22z"}),c.jsx("path",{fill:"#2c85eb",d:"M28.4,4.74l-8.57,10.18L13.27,9.2C15.83,6.02,19.69,4,24,4C25.54,4,27.02,4.26,28.4,4.74z"}),c.jsx("path",{fill:"#ed5748",d:"M19.83,14.92L19.76,15l-8.32,9.88C10.52,22.95,10,20.79,10,18.5c0-3.54,1.23-6.79,3.27-9.3 L19.83,14.92z"}),c.jsx("path",{fill:"#5695f6",d:"M28.24,22c0.79-0.95,1.26-2.17,1.26-3.5c0-3.04-2.46-5.5-5.5-5.5c-1.71,0-3.24,0.78-4.24,2L28.4,4.74 c3.59,1.22,6.53,3.91,8.17,7.38L28.24,22z"})]}),x=l.forwardRef((s,t)=>c.jsx(o,{ref:t,...s}));export{x as GooglemapsIcon};
@@ -1 +1 @@
1
- import{j as t,r}from"./index-BChjg6Az.js";const l=s=>t.jsxs("svg",{width:"1em",height:"1em",viewBox:"0 0 1024 1024",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:1.5},...s,children:[t.jsxs("g",{id:"Docling",transform:"matrix(1.07666,0,0,1.07666,-35.9018,-84.1562)",children:[t.jsx("g",{id:"Outline",transform:"matrix(1,0,0,1,-0.429741,55.0879)",children:t.jsx("path",{d:"M394.709,69.09C417.34,35.077 467.97,30.178 478.031,55.609C486.35,55.043 494.726,54.701 503.158,54.589C533.157,45.238 560.496,47.419 584.65,60.732C800.941,96.66 966.069,284.814 966.069,511.232C966.069,763.284 761.435,967.918 509.383,967.918C433.692,967.918 362.277,949.464 299.385,916.808L242.3,931.993C203.092,943.242 187.715,928.369 208.575,891.871C208.935,891.24 216.518,879.37 223.997,867.677C119.604,783.975 52.698,655.355 52.698,511.232C52.698,298.778 198.086,120.013 394.709,69.09Z",style:{fill:"white"}})}),t.jsxs("g",{id:"Color",transform:"matrix(1.02317,0,0,1.02317,-11.55,-17.8333)",children:[t.jsx("path",{d:"M284.8,894.232L179.735,783.955L130.222,645.203L125.538,504.726L185.211,385.816C209.006,322.738 249.951,278.973 302.281,248.028L406.684,203.333L413.483,175.767L436.637,152.428L451.408,153.312L457.726,183.183L485.164,165.379L526.92,159.699L557.014,177.545L612.652,211.018C679.009,226.066 740.505,264.146 797.138,325.26L862.813,423.477L891.583,560.826L883.273,683.32L814.268,809.924L734.431,894.384L644.495,926.906L497.146,954.121L361.064,940.647L284.8,894.232Z",style:{fill:"url(#_Linear1)"}}),t.jsx("path",{d:"M699.932,887.255L634.427,825.291L597.884,782.352L594.906,738.956L610.14,709.396L643.207,699.954L685,710.111L730.425,736.425L765.204,778.79L775.166,849.531L719.381,894.082L699.932,887.255Z",style:{fill:"url(#_Linear2)"}}),t.jsxs("g",{transform:"matrix(-0.765945,0,0,1,839.727,5.47434)",children:[t.jsx("clipPath",{id:"_clip3",children:t.jsx("path",{d:"M699.932,887.255L634.427,825.291L597.884,782.352L594.906,738.956L610.14,709.396L643.207,699.954L685,710.111L730.425,736.425L765.204,778.79L775.166,849.531L719.381,894.082L699.932,887.255Z"})}),t.jsx("g",{clipPath:"url(#_clip3)",children:t.jsx("g",{transform:"matrix(-1.18516,0,0,0.907769,1039.04,88.3496)",children:t.jsx("use",{xlinkHref:"#_Image4",x:"223.969",y:"674.21",width:"152.098px",height:"213.852px",transform:"matrix(0.994105,0,0,0.999308,0,0)"})})})]}),t.jsx("path",{d:"M311.699,713.521C189.178,639.091 164.299,526.77 191.824,394.113L135.136,476.434L122.004,547.53C143.022,614.014 174.522,676.199 225.005,730.598C210.601,754.156 201.894,776.601 197.955,798.114L245.803,841.67C247.274,812.1 254.934,783.047 270.614,754.664L311.699,713.521Z",style:{fillOpacity:.22}}),t.jsx("g",{transform:"matrix(-1,0,0,1,1022.04,2.74442)",children:t.jsx("path",{d:"M311.699,713.521C189.178,639.091 164.299,526.77 191.824,394.113L135.136,476.434L122.004,547.53C143.022,614.014 174.522,676.199 225.005,730.598C210.601,754.156 201.894,776.601 197.955,798.114L245.803,841.67C247.274,812.1 254.934,783.047 270.614,754.664L311.699,713.521Z",style:{fillOpacity:.22}})}),t.jsx("path",{style:{fill:"url(#_Linear5)"},d:"M354.92,650.818L420.009,663.185L493.368,666.379L554.826,665.251L620.19,658.511L658.169,651.428L671.428,644.802L673.265,627.093L659.898,611.845L625.422,609.244L599.275,591.212L568.632,556.79L542.9,534.336L515.052,528.253L480.412,532.71L455.2,552.337L428.514,578.155L405.312,599.359L374.228,612.097L355.342,614.456L340.75,630.308L341.568,645.341L354.92,650.818Z"}),t.jsx("path",{style:{fill:"url(#_Linear6)"},d:"M257.168,949.32L317.434,876.747L364.928,810.6L384.1,743.934L378.759,714.719L376.844,685.849L374.836,659.954L448.734,664.2L511.462,667.602L571.339,665.091L632.796,658.836L648.232,656.882L649.937,697.808L608.105,717.702L598.45,738.594L592.286,761.642L604.743,796.309L639.595,825.803L649.872,840.757L558.219,895.152L502.124,907.569L425.781,923.496L333.29,931.298L286.269,936.907L257.168,949.32Z"}),t.jsx("g",{transform:"matrix(1,0,0,1.30081,-1.77636e-15,-196.488)",children:t.jsx("path",{d:"M374.165,685.268C463.946,706.599 553.728,707.491 643.51,688.593L641.903,653.199C549.263,671.731 459.645,672.22 373.059,654.611L374.165,685.268Z",style:{fillOpacity:.18}})}),t.jsx("path",{d:"M459.633,571.457C476.7,536.091 530.064,535.913 553.1,568.767C520.703,551.407 489.553,552.374 459.633,571.457Z",style:{fill:"white"}}),t.jsx("g",{transform:"matrix(1,0,0,1,0.223468,-2.61949)",children:t.jsx("path",{d:"M355.3,267.232C500.64,173.156 720.699,241.362 793.691,423.582C766.716,384.84 735.725,357.078 697.53,349.014L717.306,335.248C698.537,321.49 675.794,320.957 651.039,327.119C652.235,315.768 658.995,306.991 674.188,302.115C641.864,287.427 617.356,289.473 596.258,298.818C597.049,286.116 605.827,278.087 620.068,273.254C589.192,267.477 564.13,270.926 544.651,283.232C545.822,271.831 550.709,260.943 560.913,250.79C517.498,257.095 492.995,267.925 482.892,282.202C477.311,269.499 477.274,257.221 487.625,245.739C439.161,252.932 421.555,265.094 410.355,278.286C407.697,269.01 407.705,260.632 410.853,253.316C389.633,254.773 372.178,260.663 355.3,267.232Z",style:{fill:"rgb(255,213,95)"}})}),t.jsx("path",{d:"M475.656,209.175C479.639,175.037 503.437,173.299 532.412,180.026C507.242,183.404 486.969,195.251 473.705,219.215L475.656,209.175Z",style:{fill:"rgb(255,215,101)"}}),t.jsx("g",{transform:"matrix(0.114323,-0.655229,0.82741,0.144365,224.632,497.317)",children:t.jsx("path",{d:"M475.656,209.175C479.639,175.037 503.437,173.299 532.412,180.026C507.242,183.404 486.969,195.251 473.705,219.215L475.656,209.175Z",style:{fill:"rgb(255,215,101)"}})}),t.jsx("g",{transform:"matrix(1.6739,1.15217e-16,-1.15217e-16,-0.733075,-341.46,1039.77)",children:t.jsx("path",{d:"M447.449,560.911C468.179,536.963 546.237,539.305 565.638,560.831C533.166,555.541 477.296,553.494 447.449,560.911Z",style:{fill:"white"}})}),t.jsx("path",{d:"M348.201,622.341C395.549,653.534 622.351,660.854 661.936,616.729L677.568,633.834L667.044,650.308L557.802,667.518L498.074,670.562L446.718,666.416L391.404,658.406L348.154,652.501L340.161,637.119L348.201,622.341Z",style:{fill:"rgb(199,68,6)"}})]}),t.jsxs("g",{id:"Black-outline",transform:"matrix(1.02317,0,0,1.02317,-11.55,-17.8333)",children:[t.jsx("path",{d:"M373.389,657.919C376.285,676.334 377.04,695.016 375.326,714.008",style:{fill:"none",stroke:"black",strokeWidth:"15.73px"}}),t.jsx("path",{d:"M645.931,654.961C646.158,669.958 647.22,684.853 648.975,699.661",style:{fill:"none",stroke:"black",strokeWidth:"15.73px"}}),t.jsx("path",{d:"M290.084,534.662C276.554,533.535 264.892,530.024 254.279,525.175C276.732,555.341 305.316,569.76 338.631,572.029L290.084,534.662Z"}),t.jsx("g",{transform:"matrix(0.94177,0,0,0.94909,28.8868,3.79501)",children:t.jsx("ellipse",{cx:"338.022",cy:"510.34",rx:"88.911",ry:"89.412"})}),t.jsx("g",{transform:"matrix(0.112099,0.0552506,-0.0673118,0.136571,455.367,509.409)",children:t.jsx("ellipse",{cx:"338.022",cy:"510.34",rx:"88.911",ry:"89.412"})}),t.jsx("g",{transform:"matrix(-0.112099,0.0552506,0.0673118,0.136571,560.529,509.492)",children:t.jsx("ellipse",{cx:"338.022",cy:"510.34",rx:"88.911",ry:"89.412"})}),t.jsx("g",{transform:"matrix(-1,0,0,1,1013.33,-1.15187)",children:t.jsx("path",{d:"M290.084,534.662C276.554,533.535 264.892,530.024 254.279,525.175C276.732,555.341 305.316,569.76 338.631,572.029L290.084,534.662Z"})}),t.jsx("g",{transform:"matrix(-0.94177,0,0,0.94909,984.44,2.64314)",children:t.jsx("ellipse",{cx:"338.022",cy:"510.34",rx:"88.911",ry:"89.412"})}),t.jsx("g",{transform:"matrix(1,0,0,1,1.9047,-5.57346)",children:t.jsx("path",{d:"M277.021,489.604C279.828,554.545 355.855,583.508 405.306,537.851C354.458,599.537 263.881,560.914 277.021,489.604Z",style:{fill:"white"}})}),t.jsx("g",{transform:"matrix(-1,0,0,1,1011.43,-5.7284)",children:t.jsx("path",{d:"M277.021,489.604C279.828,554.545 355.855,583.508 405.306,537.851C354.458,599.537 263.881,560.914 277.021,489.604Z",style:{fill:"white"}})}),t.jsx("g",{transform:"matrix(0.973815,0,0,1.00246,4.71761,-0.508759)",children:t.jsx("path",{d:"M407.22,206.891C107.655,339.384 134.447,630.03 314.615,708.305",style:{fill:"none",stroke:"black",strokeWidth:"29.39px"}})}),t.jsx("g",{transform:"matrix(-0.973815,0,0,1.00246,1006.67,-1.31695)",children:t.jsx("path",{d:"M461.559,196.756C119.768,256.762 111.059,642.544 320.305,711.486",style:{fill:"none",stroke:"black",strokeWidth:"29.39px"}})}),t.jsxs("g",{id:"vector-duck",children:[t.jsx("path",{d:"M240.912,850.71C248.043,740.231 325.609,685.992 371.268,715.193C386.487,724.926 392.506,757.72 358.575,816.753C327.005,871.68 300.465,894.596 288.329,903.447",style:{fill:"none",stroke:"black",strokeWidth:"21.79px"}}),t.jsx("path",{d:"M638.382,843.426C427.991,964.695 389.022,902.942 251.512,947.641L307.759,889.573",style:{fill:"none",stroke:"black",strokeWidth:"15.73px"}}),t.jsx("path",{d:"M770.991,853.754C779.364,764.998 730.67,727.923 666.385,704.966C629.568,691.819 580.483,723.886 595.974,772.596C606.285,805.016 650.54,839.029 707.786,886.778",style:{fill:"none",stroke:"black",strokeWidth:"21.79px"}}),t.jsx("g",{transform:"matrix(1,0,0,1,-1.87208,0.908099)",children:t.jsx("path",{d:"M603.287,772.415C614.237,757.963 627.553,750.285 642.878,748.352C628.356,760.968 617.23,775.676 620.632,799.336C635.815,785.15 650.367,779.457 664.396,780.801C651.715,790.7 639.329,803.279 641.039,818.089C641.247,819.891 647.043,823.996 647.595,825.837C659.897,816.37 672.867,811.065 689.234,809.472C676.577,822.659 668.021,834.011 674.478,848.729L664.333,847.825L625.643,812.604L603.629,786.218L603.287,772.415Z"})}),t.jsx("g",{transform:"matrix(-0.969851,0.2437,0.2437,0.969851,773.329,-138.212)",children:t.jsx("path",{d:"M603.287,772.415C614.237,757.963 627.553,750.285 642.878,748.352C628.356,760.968 617.23,775.676 620.632,799.336C635.815,785.15 650.367,779.457 664.396,780.801C651.715,790.7 639.329,803.279 641.039,818.089C641.247,819.891 647.043,823.996 647.595,825.837C659.897,816.37 672.867,811.065 689.234,809.472C676.577,822.659 668.021,834.011 674.478,848.729L664.333,847.825L625.643,812.604L603.629,786.218L603.287,772.415Z"})}),t.jsx("path",{d:"M511.787,670.044C461.061,671.835 411.878,662.84 361.322,653.92C329.071,648.229 335.56,616.432 361.693,615.181C391.498,613.754 411.83,601.737 437.593,569.084C459.063,541.872 482.443,528.143 506.834,529.767",style:{fill:"none",stroke:"black",strokeWidth:"15.73px"}}),t.jsx("g",{transform:"matrix(-1,0,0,1,1014.44,-0.213451)",children:t.jsx("path",{d:"M511.787,670.044C461.061,671.835 411.878,662.84 361.322,653.92C329.071,648.229 335.56,616.432 361.693,615.181C391.498,613.754 411.83,601.737 437.593,569.084C459.063,541.872 482.443,528.143 506.834,529.767",style:{fill:"none",stroke:"black",strokeWidth:"15.73px"}})})]}),t.jsx("g",{transform:"matrix(2.4586,0,0,2.5497,-444.527,-690.434)",children:t.jsx("ellipse",{cx:"312.566",cy:"450.751",rx:"10.63",ry:"10.48",style:{fill:"white"}})}),t.jsx("g",{transform:"matrix(2.4586,0,0,2.5497,-127.75,-690.991)",children:t.jsx("ellipse",{cx:"312.566",cy:"450.751",rx:"10.63",ry:"10.48",style:{fill:"white"}})}),t.jsx("path",{d:"M505.738,698.061L578.879,713.989",style:{fill:"none",stroke:"black",strokeWidth:"12.1px"}}),t.jsx("path",{d:"M422.781,709.6L568.438,743.041",style:{fill:"none",stroke:"black",strokeWidth:"12.1px"}}),t.jsx("path",{d:"M419.941,738.409L565.688,772.989",style:{fill:"none",stroke:"black",strokeWidth:"12.1px"}}),t.jsx("path",{d:"M408.6,787.08L510.634,810.689",style:{fill:"none",stroke:"black",strokeWidth:"12.1px"}}),t.jsx("path",{d:"M397.571,815.956L500.93,840.219",style:{fill:"none",stroke:"black",strokeWidth:"12.1px"}}),t.jsx("path",{d:"M386.763,844.926L454.065,861.974",style:{fill:"none",stroke:"black",strokeWidth:"12.1px"}}),t.jsx("path",{d:"M459.169,919.169C512.194,898.262 539.171,867.298 535.241,824.402C568.052,818.31 598.499,817.058 625.84,822.165",style:{fill:"none",stroke:"black",strokeWidth:"16.95px"}}),t.jsx("path",{d:"M366.219,241.106C389.605,229.261 413.371,220.601 438.247,217.5C416.795,202.419 418.72,174.582 444.22,162.47C442.086,178.175 447.633,193.354 464.772,207.738C468.721,167.57 530.015,162.087 545.674,184.112C526.45,189.314 513.082,197.344 504.566,207.717C522.403,208.119 540.706,207.86 556.2,210.609L566.935,168.471C536.388,146.208 495.718,142.166 464.65,166.705C467.703,133.264 419.536,128.364 404.624,178.47L366.219,241.106Z"}),t.jsx("path",{d:"M392.617,924.576C428.953,936.938 467.84,943.636 508.258,943.636C708.944,943.636 871.876,778.49 871.876,575.076C871.876,382.463 725.788,224.162 539.898,207.895L554.137,173.696L554.485,168.187C757.218,191.602 914.895,366.003 914.895,577.383C914.895,804.698 732.549,989.249 507.949,989.249C435.381,989.249 367.223,969.983 308.199,936.232L392.617,924.576ZM279.206,917.988C171.663,843.819 101.002,718.887 101.002,577.383C101.002,383.006 234.333,219.898 413.398,176.712L424.375,216.389C264.082,254.803 144.64,400.913 144.64,575.076C144.64,703.735 209.822,817.086 308.514,883.023L279.206,917.988Z"}),t.jsx("path",{d:"M714.938,895.223L647.287,836.693L616.06,855.308L549.158,889.412L459.845,919.216L390.213,928.828L429.291,950.712L535.832,960.1L586.137,952.591L662.254,931.896L714.938,895.223Z"}),t.jsx("path",{style:{fill:"url(#_Linear7)"},d:"M423.538,929.39C509.164,917.593 580.815,890.465 640.827,850.566C635.677,886.828 622.639,918.218 594.006,939.977C530.254,930.953 474.955,928.632 423.538,929.39Z"})]})]}),t.jsxs("defs",{children:[t.jsxs("linearGradient",{id:"_Linear1",x1:"0",y1:"0",x2:"1",y2:"0",gradientUnits:"userSpaceOnUse",gradientTransform:"matrix(-52.3962,375.121,-375.121,-52.3962,471.134,384.463)",children:[t.jsx("stop",{offset:"0",style:{stopColor:"rgb(255,176,44)",stopOpacity:1}}),t.jsx("stop",{offset:"1",style:{stopColor:"rgb(255,73,2)",stopOpacity:1}})]}),t.jsxs("linearGradient",{id:"_Linear2",x1:"0",y1:"0",x2:"1",y2:"0",gradientUnits:"userSpaceOnUse",gradientTransform:"matrix(28.6198,-84.8913,84.8913,28.6198,647.831,831.55)",children:[t.jsx("stop",{offset:"0",style:{stopColor:"rgb(255,73,2)",stopOpacity:1}}),t.jsx("stop",{offset:"1",style:{stopColor:"rgb(255,176,44)",stopOpacity:1}})]}),t.jsx("image",{id:"_Image4",width:"153px",height:"214px",xlinkHref:"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAUDBAQEAwUEBAQFBQUGBwwIBwcHBw8LCwkMEQ8SEhEPERETFhwXExQaFRERGCEYGh0dHx8fExciJCIeJBweHx7/2wBDAQUFBQcGBw4ICA4eFBEUHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh7/wAARCADWAJkDAREAAhEBAxEB/8QAGQABAQEBAQEAAAAAAAAAAAAAAwACBwYF/8QAGBABAQEBAQAAAAAAAAAAAAAAAgABEhH/xAAbAQADAQADAQAAAAAAAAAAAAAAAQMCBAUGB//EABYRAQEBAAAAAAAAAAAAAAAAAAABEf/aAAwDAQACEQMRAD8A63fAX1BQFAUBQFAUBQFAUBQFAZShqQSUNyBSmpIJK0pIJqakgUptyCampIx1DWPS0XSqAoCgKAoCgKAoCgKAwlDUgkobkE1aVkClNuQbU1JAtTUkElNSQTU25GOptY9Vcd0KgKAoCgKAoCgKAoDDUNSCSmpIJqakgUptyCampIJKakgWpqSCSm3IJKakjHU2sewuM86oCgKAoCgKAoCgMJQ1IJqakgWpqSCSmpIJqbcgUpqSCSmpIJqbcgmpqSCSmpIx1PGse1uK8yoCgKAoCgKAoA2obkGlNuQLU1JBJTUkElPG5AtTUkElNSQSU1JBNTbkClNSQSU1JGOptY93cR5VQFAUBQFAUAbUNyCam3IJKakgmpqSBampIJKbcgmpqSBampIJKakgmptyBampINKakjHU8ax0C4byKgKAoCgLd8gDShuQTU25AtTVkElNuQTU1JBNTUkElNuQLU1JBNTUkElNSQLU25BJWlJBJTUkY6hrHRrhPGqAoCgLd8gDahuQSU1JAtTUkE1NuQSU1JBNTUkClNSQSU25BNTUkC1NSQSVpSQSUNyCatKSBSmpIx1DWOmXBeJUBQFu+QBtQ3IFqakgkpqSCam3IFqakgkpqSCampIJqbcgUpqSCampIJq0pIJKakgWptyCampIJKakjHU2sdRuveFUBbvkASUNyCSmpIJqakgkpqSBam3IJqakgkpqSCam3IFqakgmpqSCampIFq0pIJKbcgkpqSBSmpIJKakjHUNY6vde8Ct3yAJKG5BNTUkE1NSQLU1JBJTUkE1NuQLU1JBJWlJBJQpIJq03IFKakgkp4pIJqakgmptyBSmpIJqakgkpqSMdQeOt7vl1z5/INKG5BNTbkClPFJBJTUkE1NSQKU1JBJTbkE1NSQLU1JBtTbkC1aUkE1NSQSU1JAtTUkElNuQSU1JBJTUkC1NSRjqbWOupXWPnsgmpqSBSmpIJqbcgkpqSBampIJK0pIJKbcgWoUkE1aUkElNSQTU25ApTUkElNSQSU25AtTUkElNSQTU1JApTUkZ6g8dcautfPpBJTUkE1NSQLU25BJTUkE1aUkC1NuQSU1JBNTUkClNSQSU25BJTUkE1NSQSU1JAtTbkE1NSQSU8UkClNSQe77NtQHWErrXgJBJTUkE1NuQSU8UkClNSQTVpuQSU1JBJTUkC1NSQTU1JBJTbkE1NSQKU1JBJTUkElNuQLU1JBJTUkHu+zbUBQHU2rrnhJBJWlJAtTbkElNSQTU1JBJTbkC1NSQSU1JBNTUkElNuQKU1JBJTUkE1NSQSU1JAtTbkElNSQe77NtQFAUB01q694iQSU1JBNWm5BNTUkClNSQTU25BJTUkElNSQKU25BNTVkElNuQTU1JApTUkElNSQSU25B7vs21AUBQFAdIauC8ZIJKeNyCampIFKakgmp4pIJKbcgWpqSCSnikgmpqSCSm3IFKakgkpqSCampIFKakjG77NpQFAUBQFAdCauE8fIJKakgkpqSCampIFKakgkptyCSmpIFqakg0ptyBampIJqakgWpqSCSmpIxNpQFAUBQFAUB71q4bycgkpqSBampIJKakgmpqSCSm3IFqakgkpqSCSmpIJqbcgWrSkgkoUkYm0oCgKAoCgKAoD3CVxHl5AtTUkElNSQTU1JApTbkElNSQSU1JApTUkElNuQTU1JBJWlJGIaUBQFAUBQFAUBQHsmrivNyBSmpIJKakgkptyCatKyCSm3IFqFJBNWlJBJTUkElNuRiGlAUBQFAUBQFAUBQHrErjPPyCampIJKakgmpqSBatNyCShSQTU1JAtWlJBJQ3IzNpQFAUBQFAUBQFAUBQHp2rjujkElaUkClNSQTU25BJTUkElCkgWrSkgkpqSMwagKAoCgKAoCgKAoCgKA9ElQdPIFq0pIJKakgmobkC1aUkElNSQSU1JGYNQFAUBQFAUBQFAUBQFAUB9xqk6uQTU1JApTxSQTUNyBatKSDSmpIzBqAoCgKAoCgKAoCgKAoCgKA+u1TdfIFKcUkE1NuQTU1JBLZqSMwagKAoCgKAoCgKAoCgKAoCgKA/9k="}),t.jsxs("linearGradient",{id:"_Linear5",x1:"0",y1:"0",x2:"1",y2:"0",gradientUnits:"userSpaceOnUse",gradientTransform:"matrix(-39.3403,137.423,-137.423,-39.3403,545.523,573.246)",children:[t.jsx("stop",{offset:"0",style:{stopColor:"rgb(255,200,41)",stopOpacity:1}}),t.jsx("stop",{offset:"1",style:{stopColor:"rgb(255,73,2)",stopOpacity:1}})]}),t.jsxs("linearGradient",{id:"_Linear6",x1:"0",y1:"0",x2:"1",y2:"0",gradientUnits:"userSpaceOnUse",gradientTransform:"matrix(1.01113,-68.2054,68.2054,1.01113,482.996,741.463)",children:[t.jsx("stop",{offset:"0",style:{stopColor:"white",stopOpacity:1}}),t.jsx("stop",{offset:"1",style:{stopColor:"rgb(179,179,179)",stopOpacity:1}})]}),t.jsxs("linearGradient",{id:"_Linear7",x1:"0",y1:"0",x2:"1",y2:"0",gradientUnits:"userSpaceOnUse",gradientTransform:"matrix(-7.13599,-34.117,34.117,-7.13599,578.793,922.144)",children:[t.jsx("stop",{offset:"0",style:{stopColor:"rgb(164,164,164)",stopOpacity:1}}),t.jsx("stop",{offset:"1",style:{stopColor:"rgb(106,106,106)",stopOpacity:1}})]})]})]}),i=r.forwardRef((s,e)=>t.jsx(l,{ref:e,...s}));export{i as DoclingIcon};
1
+ import{j as t,r}from"./index-BD7Io1hL.js";const l=s=>t.jsxs("svg",{width:"1em",height:"1em",viewBox:"0 0 1024 1024",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinecap:"round",strokeLinejoin:"round",strokeMiterlimit:1.5},...s,children:[t.jsxs("g",{id:"Docling",transform:"matrix(1.07666,0,0,1.07666,-35.9018,-84.1562)",children:[t.jsx("g",{id:"Outline",transform:"matrix(1,0,0,1,-0.429741,55.0879)",children:t.jsx("path",{d:"M394.709,69.09C417.34,35.077 467.97,30.178 478.031,55.609C486.35,55.043 494.726,54.701 503.158,54.589C533.157,45.238 560.496,47.419 584.65,60.732C800.941,96.66 966.069,284.814 966.069,511.232C966.069,763.284 761.435,967.918 509.383,967.918C433.692,967.918 362.277,949.464 299.385,916.808L242.3,931.993C203.092,943.242 187.715,928.369 208.575,891.871C208.935,891.24 216.518,879.37 223.997,867.677C119.604,783.975 52.698,655.355 52.698,511.232C52.698,298.778 198.086,120.013 394.709,69.09Z",style:{fill:"white"}})}),t.jsxs("g",{id:"Color",transform:"matrix(1.02317,0,0,1.02317,-11.55,-17.8333)",children:[t.jsx("path",{d:"M284.8,894.232L179.735,783.955L130.222,645.203L125.538,504.726L185.211,385.816C209.006,322.738 249.951,278.973 302.281,248.028L406.684,203.333L413.483,175.767L436.637,152.428L451.408,153.312L457.726,183.183L485.164,165.379L526.92,159.699L557.014,177.545L612.652,211.018C679.009,226.066 740.505,264.146 797.138,325.26L862.813,423.477L891.583,560.826L883.273,683.32L814.268,809.924L734.431,894.384L644.495,926.906L497.146,954.121L361.064,940.647L284.8,894.232Z",style:{fill:"url(#_Linear1)"}}),t.jsx("path",{d:"M699.932,887.255L634.427,825.291L597.884,782.352L594.906,738.956L610.14,709.396L643.207,699.954L685,710.111L730.425,736.425L765.204,778.79L775.166,849.531L719.381,894.082L699.932,887.255Z",style:{fill:"url(#_Linear2)"}}),t.jsxs("g",{transform:"matrix(-0.765945,0,0,1,839.727,5.47434)",children:[t.jsx("clipPath",{id:"_clip3",children:t.jsx("path",{d:"M699.932,887.255L634.427,825.291L597.884,782.352L594.906,738.956L610.14,709.396L643.207,699.954L685,710.111L730.425,736.425L765.204,778.79L775.166,849.531L719.381,894.082L699.932,887.255Z"})}),t.jsx("g",{clipPath:"url(#_clip3)",children:t.jsx("g",{transform:"matrix(-1.18516,0,0,0.907769,1039.04,88.3496)",children:t.jsx("use",{xlinkHref:"#_Image4",x:"223.969",y:"674.21",width:"152.098px",height:"213.852px",transform:"matrix(0.994105,0,0,0.999308,0,0)"})})})]}),t.jsx("path",{d:"M311.699,713.521C189.178,639.091 164.299,526.77 191.824,394.113L135.136,476.434L122.004,547.53C143.022,614.014 174.522,676.199 225.005,730.598C210.601,754.156 201.894,776.601 197.955,798.114L245.803,841.67C247.274,812.1 254.934,783.047 270.614,754.664L311.699,713.521Z",style:{fillOpacity:.22}}),t.jsx("g",{transform:"matrix(-1,0,0,1,1022.04,2.74442)",children:t.jsx("path",{d:"M311.699,713.521C189.178,639.091 164.299,526.77 191.824,394.113L135.136,476.434L122.004,547.53C143.022,614.014 174.522,676.199 225.005,730.598C210.601,754.156 201.894,776.601 197.955,798.114L245.803,841.67C247.274,812.1 254.934,783.047 270.614,754.664L311.699,713.521Z",style:{fillOpacity:.22}})}),t.jsx("path",{style:{fill:"url(#_Linear5)"},d:"M354.92,650.818L420.009,663.185L493.368,666.379L554.826,665.251L620.19,658.511L658.169,651.428L671.428,644.802L673.265,627.093L659.898,611.845L625.422,609.244L599.275,591.212L568.632,556.79L542.9,534.336L515.052,528.253L480.412,532.71L455.2,552.337L428.514,578.155L405.312,599.359L374.228,612.097L355.342,614.456L340.75,630.308L341.568,645.341L354.92,650.818Z"}),t.jsx("path",{style:{fill:"url(#_Linear6)"},d:"M257.168,949.32L317.434,876.747L364.928,810.6L384.1,743.934L378.759,714.719L376.844,685.849L374.836,659.954L448.734,664.2L511.462,667.602L571.339,665.091L632.796,658.836L648.232,656.882L649.937,697.808L608.105,717.702L598.45,738.594L592.286,761.642L604.743,796.309L639.595,825.803L649.872,840.757L558.219,895.152L502.124,907.569L425.781,923.496L333.29,931.298L286.269,936.907L257.168,949.32Z"}),t.jsx("g",{transform:"matrix(1,0,0,1.30081,-1.77636e-15,-196.488)",children:t.jsx("path",{d:"M374.165,685.268C463.946,706.599 553.728,707.491 643.51,688.593L641.903,653.199C549.263,671.731 459.645,672.22 373.059,654.611L374.165,685.268Z",style:{fillOpacity:.18}})}),t.jsx("path",{d:"M459.633,571.457C476.7,536.091 530.064,535.913 553.1,568.767C520.703,551.407 489.553,552.374 459.633,571.457Z",style:{fill:"white"}}),t.jsx("g",{transform:"matrix(1,0,0,1,0.223468,-2.61949)",children:t.jsx("path",{d:"M355.3,267.232C500.64,173.156 720.699,241.362 793.691,423.582C766.716,384.84 735.725,357.078 697.53,349.014L717.306,335.248C698.537,321.49 675.794,320.957 651.039,327.119C652.235,315.768 658.995,306.991 674.188,302.115C641.864,287.427 617.356,289.473 596.258,298.818C597.049,286.116 605.827,278.087 620.068,273.254C589.192,267.477 564.13,270.926 544.651,283.232C545.822,271.831 550.709,260.943 560.913,250.79C517.498,257.095 492.995,267.925 482.892,282.202C477.311,269.499 477.274,257.221 487.625,245.739C439.161,252.932 421.555,265.094 410.355,278.286C407.697,269.01 407.705,260.632 410.853,253.316C389.633,254.773 372.178,260.663 355.3,267.232Z",style:{fill:"rgb(255,213,95)"}})}),t.jsx("path",{d:"M475.656,209.175C479.639,175.037 503.437,173.299 532.412,180.026C507.242,183.404 486.969,195.251 473.705,219.215L475.656,209.175Z",style:{fill:"rgb(255,215,101)"}}),t.jsx("g",{transform:"matrix(0.114323,-0.655229,0.82741,0.144365,224.632,497.317)",children:t.jsx("path",{d:"M475.656,209.175C479.639,175.037 503.437,173.299 532.412,180.026C507.242,183.404 486.969,195.251 473.705,219.215L475.656,209.175Z",style:{fill:"rgb(255,215,101)"}})}),t.jsx("g",{transform:"matrix(1.6739,1.15217e-16,-1.15217e-16,-0.733075,-341.46,1039.77)",children:t.jsx("path",{d:"M447.449,560.911C468.179,536.963 546.237,539.305 565.638,560.831C533.166,555.541 477.296,553.494 447.449,560.911Z",style:{fill:"white"}})}),t.jsx("path",{d:"M348.201,622.341C395.549,653.534 622.351,660.854 661.936,616.729L677.568,633.834L667.044,650.308L557.802,667.518L498.074,670.562L446.718,666.416L391.404,658.406L348.154,652.501L340.161,637.119L348.201,622.341Z",style:{fill:"rgb(199,68,6)"}})]}),t.jsxs("g",{id:"Black-outline",transform:"matrix(1.02317,0,0,1.02317,-11.55,-17.8333)",children:[t.jsx("path",{d:"M373.389,657.919C376.285,676.334 377.04,695.016 375.326,714.008",style:{fill:"none",stroke:"black",strokeWidth:"15.73px"}}),t.jsx("path",{d:"M645.931,654.961C646.158,669.958 647.22,684.853 648.975,699.661",style:{fill:"none",stroke:"black",strokeWidth:"15.73px"}}),t.jsx("path",{d:"M290.084,534.662C276.554,533.535 264.892,530.024 254.279,525.175C276.732,555.341 305.316,569.76 338.631,572.029L290.084,534.662Z"}),t.jsx("g",{transform:"matrix(0.94177,0,0,0.94909,28.8868,3.79501)",children:t.jsx("ellipse",{cx:"338.022",cy:"510.34",rx:"88.911",ry:"89.412"})}),t.jsx("g",{transform:"matrix(0.112099,0.0552506,-0.0673118,0.136571,455.367,509.409)",children:t.jsx("ellipse",{cx:"338.022",cy:"510.34",rx:"88.911",ry:"89.412"})}),t.jsx("g",{transform:"matrix(-0.112099,0.0552506,0.0673118,0.136571,560.529,509.492)",children:t.jsx("ellipse",{cx:"338.022",cy:"510.34",rx:"88.911",ry:"89.412"})}),t.jsx("g",{transform:"matrix(-1,0,0,1,1013.33,-1.15187)",children:t.jsx("path",{d:"M290.084,534.662C276.554,533.535 264.892,530.024 254.279,525.175C276.732,555.341 305.316,569.76 338.631,572.029L290.084,534.662Z"})}),t.jsx("g",{transform:"matrix(-0.94177,0,0,0.94909,984.44,2.64314)",children:t.jsx("ellipse",{cx:"338.022",cy:"510.34",rx:"88.911",ry:"89.412"})}),t.jsx("g",{transform:"matrix(1,0,0,1,1.9047,-5.57346)",children:t.jsx("path",{d:"M277.021,489.604C279.828,554.545 355.855,583.508 405.306,537.851C354.458,599.537 263.881,560.914 277.021,489.604Z",style:{fill:"white"}})}),t.jsx("g",{transform:"matrix(-1,0,0,1,1011.43,-5.7284)",children:t.jsx("path",{d:"M277.021,489.604C279.828,554.545 355.855,583.508 405.306,537.851C354.458,599.537 263.881,560.914 277.021,489.604Z",style:{fill:"white"}})}),t.jsx("g",{transform:"matrix(0.973815,0,0,1.00246,4.71761,-0.508759)",children:t.jsx("path",{d:"M407.22,206.891C107.655,339.384 134.447,630.03 314.615,708.305",style:{fill:"none",stroke:"black",strokeWidth:"29.39px"}})}),t.jsx("g",{transform:"matrix(-0.973815,0,0,1.00246,1006.67,-1.31695)",children:t.jsx("path",{d:"M461.559,196.756C119.768,256.762 111.059,642.544 320.305,711.486",style:{fill:"none",stroke:"black",strokeWidth:"29.39px"}})}),t.jsxs("g",{id:"vector-duck",children:[t.jsx("path",{d:"M240.912,850.71C248.043,740.231 325.609,685.992 371.268,715.193C386.487,724.926 392.506,757.72 358.575,816.753C327.005,871.68 300.465,894.596 288.329,903.447",style:{fill:"none",stroke:"black",strokeWidth:"21.79px"}}),t.jsx("path",{d:"M638.382,843.426C427.991,964.695 389.022,902.942 251.512,947.641L307.759,889.573",style:{fill:"none",stroke:"black",strokeWidth:"15.73px"}}),t.jsx("path",{d:"M770.991,853.754C779.364,764.998 730.67,727.923 666.385,704.966C629.568,691.819 580.483,723.886 595.974,772.596C606.285,805.016 650.54,839.029 707.786,886.778",style:{fill:"none",stroke:"black",strokeWidth:"21.79px"}}),t.jsx("g",{transform:"matrix(1,0,0,1,-1.87208,0.908099)",children:t.jsx("path",{d:"M603.287,772.415C614.237,757.963 627.553,750.285 642.878,748.352C628.356,760.968 617.23,775.676 620.632,799.336C635.815,785.15 650.367,779.457 664.396,780.801C651.715,790.7 639.329,803.279 641.039,818.089C641.247,819.891 647.043,823.996 647.595,825.837C659.897,816.37 672.867,811.065 689.234,809.472C676.577,822.659 668.021,834.011 674.478,848.729L664.333,847.825L625.643,812.604L603.629,786.218L603.287,772.415Z"})}),t.jsx("g",{transform:"matrix(-0.969851,0.2437,0.2437,0.969851,773.329,-138.212)",children:t.jsx("path",{d:"M603.287,772.415C614.237,757.963 627.553,750.285 642.878,748.352C628.356,760.968 617.23,775.676 620.632,799.336C635.815,785.15 650.367,779.457 664.396,780.801C651.715,790.7 639.329,803.279 641.039,818.089C641.247,819.891 647.043,823.996 647.595,825.837C659.897,816.37 672.867,811.065 689.234,809.472C676.577,822.659 668.021,834.011 674.478,848.729L664.333,847.825L625.643,812.604L603.629,786.218L603.287,772.415Z"})}),t.jsx("path",{d:"M511.787,670.044C461.061,671.835 411.878,662.84 361.322,653.92C329.071,648.229 335.56,616.432 361.693,615.181C391.498,613.754 411.83,601.737 437.593,569.084C459.063,541.872 482.443,528.143 506.834,529.767",style:{fill:"none",stroke:"black",strokeWidth:"15.73px"}}),t.jsx("g",{transform:"matrix(-1,0,0,1,1014.44,-0.213451)",children:t.jsx("path",{d:"M511.787,670.044C461.061,671.835 411.878,662.84 361.322,653.92C329.071,648.229 335.56,616.432 361.693,615.181C391.498,613.754 411.83,601.737 437.593,569.084C459.063,541.872 482.443,528.143 506.834,529.767",style:{fill:"none",stroke:"black",strokeWidth:"15.73px"}})})]}),t.jsx("g",{transform:"matrix(2.4586,0,0,2.5497,-444.527,-690.434)",children:t.jsx("ellipse",{cx:"312.566",cy:"450.751",rx:"10.63",ry:"10.48",style:{fill:"white"}})}),t.jsx("g",{transform:"matrix(2.4586,0,0,2.5497,-127.75,-690.991)",children:t.jsx("ellipse",{cx:"312.566",cy:"450.751",rx:"10.63",ry:"10.48",style:{fill:"white"}})}),t.jsx("path",{d:"M505.738,698.061L578.879,713.989",style:{fill:"none",stroke:"black",strokeWidth:"12.1px"}}),t.jsx("path",{d:"M422.781,709.6L568.438,743.041",style:{fill:"none",stroke:"black",strokeWidth:"12.1px"}}),t.jsx("path",{d:"M419.941,738.409L565.688,772.989",style:{fill:"none",stroke:"black",strokeWidth:"12.1px"}}),t.jsx("path",{d:"M408.6,787.08L510.634,810.689",style:{fill:"none",stroke:"black",strokeWidth:"12.1px"}}),t.jsx("path",{d:"M397.571,815.956L500.93,840.219",style:{fill:"none",stroke:"black",strokeWidth:"12.1px"}}),t.jsx("path",{d:"M386.763,844.926L454.065,861.974",style:{fill:"none",stroke:"black",strokeWidth:"12.1px"}}),t.jsx("path",{d:"M459.169,919.169C512.194,898.262 539.171,867.298 535.241,824.402C568.052,818.31 598.499,817.058 625.84,822.165",style:{fill:"none",stroke:"black",strokeWidth:"16.95px"}}),t.jsx("path",{d:"M366.219,241.106C389.605,229.261 413.371,220.601 438.247,217.5C416.795,202.419 418.72,174.582 444.22,162.47C442.086,178.175 447.633,193.354 464.772,207.738C468.721,167.57 530.015,162.087 545.674,184.112C526.45,189.314 513.082,197.344 504.566,207.717C522.403,208.119 540.706,207.86 556.2,210.609L566.935,168.471C536.388,146.208 495.718,142.166 464.65,166.705C467.703,133.264 419.536,128.364 404.624,178.47L366.219,241.106Z"}),t.jsx("path",{d:"M392.617,924.576C428.953,936.938 467.84,943.636 508.258,943.636C708.944,943.636 871.876,778.49 871.876,575.076C871.876,382.463 725.788,224.162 539.898,207.895L554.137,173.696L554.485,168.187C757.218,191.602 914.895,366.003 914.895,577.383C914.895,804.698 732.549,989.249 507.949,989.249C435.381,989.249 367.223,969.983 308.199,936.232L392.617,924.576ZM279.206,917.988C171.663,843.819 101.002,718.887 101.002,577.383C101.002,383.006 234.333,219.898 413.398,176.712L424.375,216.389C264.082,254.803 144.64,400.913 144.64,575.076C144.64,703.735 209.822,817.086 308.514,883.023L279.206,917.988Z"}),t.jsx("path",{d:"M714.938,895.223L647.287,836.693L616.06,855.308L549.158,889.412L459.845,919.216L390.213,928.828L429.291,950.712L535.832,960.1L586.137,952.591L662.254,931.896L714.938,895.223Z"}),t.jsx("path",{style:{fill:"url(#_Linear7)"},d:"M423.538,929.39C509.164,917.593 580.815,890.465 640.827,850.566C635.677,886.828 622.639,918.218 594.006,939.977C530.254,930.953 474.955,928.632 423.538,929.39Z"})]})]}),t.jsxs("defs",{children:[t.jsxs("linearGradient",{id:"_Linear1",x1:"0",y1:"0",x2:"1",y2:"0",gradientUnits:"userSpaceOnUse",gradientTransform:"matrix(-52.3962,375.121,-375.121,-52.3962,471.134,384.463)",children:[t.jsx("stop",{offset:"0",style:{stopColor:"rgb(255,176,44)",stopOpacity:1}}),t.jsx("stop",{offset:"1",style:{stopColor:"rgb(255,73,2)",stopOpacity:1}})]}),t.jsxs("linearGradient",{id:"_Linear2",x1:"0",y1:"0",x2:"1",y2:"0",gradientUnits:"userSpaceOnUse",gradientTransform:"matrix(28.6198,-84.8913,84.8913,28.6198,647.831,831.55)",children:[t.jsx("stop",{offset:"0",style:{stopColor:"rgb(255,73,2)",stopOpacity:1}}),t.jsx("stop",{offset:"1",style:{stopColor:"rgb(255,176,44)",stopOpacity:1}})]}),t.jsx("image",{id:"_Image4",width:"153px",height:"214px",xlinkHref:"data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAUDBAQEAwUEBAQFBQUGBwwIBwcHBw8LCwkMEQ8SEhEPERETFhwXExQaFRERGCEYGh0dHx8fExciJCIeJBweHx7/2wBDAQUFBQcGBw4ICA4eFBEUHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh4eHh7/wAARCADWAJkDAREAAhEBAxEB/8QAGQABAQEBAQEAAAAAAAAAAAAAAwACBwYF/8QAGBABAQEBAQAAAAAAAAAAAAAAAgABEhH/xAAbAQADAQADAQAAAAAAAAAAAAAAAQMCBAUGB//EABYRAQEBAAAAAAAAAAAAAAAAAAABEf/aAAwDAQACEQMRAD8A63fAX1BQFAUBQFAUBQFAUBQFAZShqQSUNyBSmpIJK0pIJqakgUptyCampIx1DWPS0XSqAoCgKAoCgKAoCgKAwlDUgkobkE1aVkClNuQbU1JAtTUkElNSQTU25GOptY9Vcd0KgKAoCgKAoCgKAoDDUNSCSmpIJqakgUptyCampIJKakgWpqSCSm3IJKakjHU2sewuM86oCgKAoCgKAoCgMJQ1IJqakgWpqSCSmpIJqbcgUpqSCSmpIJqbcgmpqSCSmpIx1PGse1uK8yoCgKAoCgKAoA2obkGlNuQLU1JBJTUkElPG5AtTUkElNSQSU1JBNTbkClNSQSU1JGOptY93cR5VQFAUBQFAUAbUNyCam3IJKakgmpqSBampIJKbcgmpqSBampIJKakgmptyBampINKakjHU8ax0C4byKgKAoCgLd8gDShuQTU25AtTVkElNuQTU1JBNTUkElNuQLU1JBNTUkElNSQLU25BJWlJBJTUkY6hrHRrhPGqAoCgLd8gDahuQSU1JAtTUkE1NuQSU1JBNTUkClNSQSU25BNTUkC1NSQSVpSQSUNyCatKSBSmpIx1DWOmXBeJUBQFu+QBtQ3IFqakgkpqSCam3IFqakgkpqSCampIJqbcgUpqSCampIJq0pIJKakgWptyCampIJKakjHU2sdRuveFUBbvkASUNyCSmpIJqakgkpqSBam3IJqakgkpqSCam3IFqakgmpqSCampIFq0pIJKbcgkpqSBSmpIJKakjHUNY6vde8Ct3yAJKG5BNTUkE1NSQLU1JBJTUkE1NuQLU1JBJWlJBJQpIJq03IFKakgkp4pIJqakgmptyBSmpIJqakgkpqSMdQeOt7vl1z5/INKG5BNTbkClPFJBJTUkE1NSQKU1JBJTbkE1NSQLU1JBtTbkC1aUkE1NSQSU1JAtTUkElNuQSU1JBJTUkC1NSRjqbWOupXWPnsgmpqSBSmpIJqbcgkpqSBampIJK0pIJKbcgWoUkE1aUkElNSQTU25ApTUkElNSQSU25AtTUkElNSQTU1JApTUkZ6g8dcautfPpBJTUkE1NSQLU25BJTUkE1aUkC1NuQSU1JBNTUkClNSQSU25BJTUkE1NSQSU1JAtTbkE1NSQSU8UkClNSQe77NtQHWErrXgJBJTUkE1NuQSU8UkClNSQTVpuQSU1JBJTUkC1NSQTU1JBJTbkE1NSQKU1JBJTUkElNuQLU1JBJTUkHu+zbUBQHU2rrnhJBJWlJAtTbkElNSQTU1JBJTbkC1NSQSU1JBNTUkElNuQKU1JBJTUkE1NSQSU1JAtTbkElNSQe77NtQFAUB01q694iQSU1JBNWm5BNTUkClNSQTU25BJTUkElNSQKU25BNTVkElNuQTU1JApTUkElNSQSU25B7vs21AUBQFAdIauC8ZIJKeNyCampIFKakgmp4pIJKbcgWpqSCSnikgmpqSCSm3IFKakgkpqSCampIFKakjG77NpQFAUBQFAdCauE8fIJKakgkpqSCampIFKakgkptyCSmpIFqakg0ptyBampIJqakgWpqSCSmpIxNpQFAUBQFAUB71q4bycgkpqSBampIJKakgmpqSCSm3IFqakgkpqSCSmpIJqbcgWrSkgkoUkYm0oCgKAoCgKAoD3CVxHl5AtTUkElNSQTU1JApTbkElNSQSU1JApTUkElNuQTU1JBJWlJGIaUBQFAUBQFAUBQHsmrivNyBSmpIJKakgkptyCatKyCSm3IFqFJBNWlJBJTUkElNuRiGlAUBQFAUBQFAUBQHrErjPPyCampIJKakgmpqSBatNyCShSQTU1JAtWlJBJQ3IzNpQFAUBQFAUBQFAUBQHp2rjujkElaUkClNSQTU25BJTUkElCkgWrSkgkpqSMwagKAoCgKAoCgKAoCgKA9ElQdPIFq0pIJKakgmobkC1aUkElNSQSU1JGYNQFAUBQFAUBQFAUBQFAUB9xqk6uQTU1JApTxSQTUNyBatKSDSmpIzBqAoCgKAoCgKAoCgKAoCgKA+u1TdfIFKcUkE1NuQTU1JBLZqSMwagKAoCgKAoCgKAoCgKAoCgKA/9k="}),t.jsxs("linearGradient",{id:"_Linear5",x1:"0",y1:"0",x2:"1",y2:"0",gradientUnits:"userSpaceOnUse",gradientTransform:"matrix(-39.3403,137.423,-137.423,-39.3403,545.523,573.246)",children:[t.jsx("stop",{offset:"0",style:{stopColor:"rgb(255,200,41)",stopOpacity:1}}),t.jsx("stop",{offset:"1",style:{stopColor:"rgb(255,73,2)",stopOpacity:1}})]}),t.jsxs("linearGradient",{id:"_Linear6",x1:"0",y1:"0",x2:"1",y2:"0",gradientUnits:"userSpaceOnUse",gradientTransform:"matrix(1.01113,-68.2054,68.2054,1.01113,482.996,741.463)",children:[t.jsx("stop",{offset:"0",style:{stopColor:"white",stopOpacity:1}}),t.jsx("stop",{offset:"1",style:{stopColor:"rgb(179,179,179)",stopOpacity:1}})]}),t.jsxs("linearGradient",{id:"_Linear7",x1:"0",y1:"0",x2:"1",y2:"0",gradientUnits:"userSpaceOnUse",gradientTransform:"matrix(-7.13599,-34.117,34.117,-7.13599,578.793,922.144)",children:[t.jsx("stop",{offset:"0",style:{stopColor:"rgb(164,164,164)",stopOpacity:1}}),t.jsx("stop",{offset:"1",style:{stopColor:"rgb(106,106,106)",stopOpacity:1}})]})]})]}),i=r.forwardRef((s,e)=>t.jsx(l,{ref:e,...s}));export{i as DoclingIcon};
@@ -1 +1 @@
1
- import{j as c,r as l}from"./index-BChjg6Az.js";const r=e=>c.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",id:"Layer_1",style:{enableBackground:"new 0 0 304 182"},viewBox:"0 0 304 182",...e,children:[c.jsx("style",{children:".st1{fill-rule:evenodd;clip-rule:evenodd;fill:#f90}"}),c.jsx("path",{d:"M86.4 66.4c0 3.7.4 6.7 1.1 8.9.8 2.2 1.8 4.6 3.2 7.2.5.8.7 1.6.7 2.3 0 1-.6 2-1.9 3L83.2 92c-.9.6-1.8.9-2.6.9-1 0-2-.5-3-1.4-1.4-1.5-2.6-3.1-3.6-4.7-1-1.7-2-3.6-3.1-5.9-7.8 9.2-17.6 13.8-29.4 13.8-8.4 0-15.1-2.4-20-7.2-4.9-4.8-7.4-11.2-7.4-19.2 0-8.5 3-15.4 9.1-20.6 6.1-5.2 14.2-7.8 24.5-7.8 3.4 0 6.9.3 10.6.8 3.7.5 7.5 1.3 11.5 2.2v-7.3c0-7.6-1.6-12.9-4.7-16-3.2-3.1-8.6-4.6-16.3-4.6-3.5 0-7.1.4-10.8 1.3-3.7.9-7.3 2-10.8 3.4-1.6.7-2.8 1.1-3.5 1.3-.7.2-1.2.3-1.6.3-1.4 0-2.1-1-2.1-3.1v-4.9c0-1.6.2-2.8.7-3.5.5-.7 1.4-1.4 2.8-2.1 3.5-1.8 7.7-3.3 12.6-4.5C41 1.9 46.2 1.3 51.7 1.3c11.9 0 20.6 2.7 26.2 8.1 5.5 5.4 8.3 13.6 8.3 24.6v32.4zM45.8 81.6c3.3 0 6.7-.6 10.3-1.8 3.6-1.2 6.8-3.4 9.5-6.4 1.6-1.9 2.8-4 3.4-6.4.6-2.4 1-5.3 1-8.7v-4.2c-2.9-.7-6-1.3-9.2-1.7-3.2-.4-6.3-.6-9.4-.6-6.7 0-11.6 1.3-14.9 4-3.3 2.7-4.9 6.5-4.9 11.5 0 4.7 1.2 8.2 3.7 10.6 2.4 2.5 5.9 3.7 10.5 3.7zm80.3 10.8c-1.8 0-3-.3-3.8-1-.8-.6-1.5-2-2.1-3.9L96.7 10.2c-.6-2-.9-3.3-.9-4 0-1.6.8-2.5 2.4-2.5h9.8c1.9 0 3.2.3 3.9 1 .8.6 1.4 2 2 3.9l16.8 66.2 15.6-66.2c.5-2 1.1-3.3 1.9-3.9.8-.6 2.2-1 4-1h8c1.9 0 3.2.3 4 1 .8.6 1.5 2 1.9 3.9l15.8 67 17.3-67c.6-2 1.3-3.3 2-3.9.8-.6 2.1-1 3.9-1h9.3c1.6 0 2.5.8 2.5 2.5 0 .5-.1 1-.2 1.6-.1.6-.3 1.4-.7 2.5l-24.1 77.3c-.6 2-1.3 3.3-2.1 3.9-.8.6-2.1 1-3.8 1h-8.6c-1.9 0-3.2-.3-4-1-.8-.7-1.5-2-1.9-4L156 23l-15.4 64.4c-.5 2-1.1 3.3-1.9 4-.8.7-2.2 1-4 1h-8.6zm128.5 2.7c-5.2 0-10.4-.6-15.4-1.8-5-1.2-8.9-2.5-11.5-4-1.6-.9-2.7-1.9-3.1-2.8-.4-.9-.6-1.9-.6-2.8v-5.1c0-2.1.8-3.1 2.3-3.1.6 0 1.2.1 1.8.3.6.2 1.5.6 2.5 1 3.4 1.5 7.1 2.7 11 3.5 4 .8 7.9 1.2 11.9 1.2 6.3 0 11.2-1.1 14.6-3.3 3.4-2.2 5.2-5.4 5.2-9.5 0-2.8-.9-5.1-2.7-7-1.8-1.9-5.2-3.6-10.1-5.2L246 52c-7.3-2.3-12.7-5.7-16-10.2-3.3-4.4-5-9.3-5-14.5 0-4.2.9-7.9 2.7-11.1 1.8-3.2 4.2-6 7.2-8.2 3-2.3 6.4-4 10.4-5.2 4-1.2 8.2-1.7 12.6-1.7 2.2 0 4.5.1 6.7.4 2.3.3 4.4.7 6.5 1.1 2 .5 3.9 1 5.7 1.6 1.8.6 3.2 1.2 4.2 1.8 1.4.8 2.4 1.6 3 2.5.6.8.9 1.9.9 3.3v4.7c0 2.1-.8 3.2-2.3 3.2-.8 0-2.1-.4-3.8-1.2-5.7-2.6-12.1-3.9-19.2-3.9-5.7 0-10.2.9-13.3 2.8-3.1 1.9-4.7 4.8-4.7 8.9 0 2.8 1 5.2 3 7.1 2 1.9 5.7 3.8 11 5.5l14.2 4.5c7.2 2.3 12.4 5.5 15.5 9.6 3.1 4.1 4.6 8.8 4.6 14 0 4.3-.9 8.2-2.6 11.6-1.8 3.4-4.2 6.4-7.3 8.8-3.1 2.5-6.8 4.3-11.1 5.6-4.5 1.4-9.2 2.1-14.3 2.1z",fill:e.isDark?"#ffffff":"#252f3e"}),c.jsx("path",{d:"M273.5 143.7c-32.9 24.3-80.7 37.2-121.8 37.2-57.6 0-109.5-21.3-148.7-56.7-3.1-2.8-.3-6.6 3.4-4.4 42.4 24.6 94.7 39.5 148.8 39.5 36.5 0 76.6-7.6 113.5-23.2 5.5-2.5 10.2 3.6 4.8 7.6z",className:"st1"}),c.jsx("path",{d:"M287.2 128.1c-4.2-5.4-27.8-2.6-38.5-1.3-3.2.4-3.7-2.4-.8-4.5 18.8-13.2 49.7-9.4 53.3-5 3.6 4.5-1 35.4-18.6 50.2-2.7 2.3-5.3 1.1-4.1-1.9 4-9.9 12.9-32.2 8.7-37.5z",className:"st1"})]}),a=l.forwardRef((e,s)=>c.jsx(r,{ref:s,...e}));export{a as AWSIcon};
1
+ import{j as c,r as l}from"./index-BD7Io1hL.js";const r=e=>c.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",id:"Layer_1",style:{enableBackground:"new 0 0 304 182"},viewBox:"0 0 304 182",...e,children:[c.jsx("style",{children:".st1{fill-rule:evenodd;clip-rule:evenodd;fill:#f90}"}),c.jsx("path",{d:"M86.4 66.4c0 3.7.4 6.7 1.1 8.9.8 2.2 1.8 4.6 3.2 7.2.5.8.7 1.6.7 2.3 0 1-.6 2-1.9 3L83.2 92c-.9.6-1.8.9-2.6.9-1 0-2-.5-3-1.4-1.4-1.5-2.6-3.1-3.6-4.7-1-1.7-2-3.6-3.1-5.9-7.8 9.2-17.6 13.8-29.4 13.8-8.4 0-15.1-2.4-20-7.2-4.9-4.8-7.4-11.2-7.4-19.2 0-8.5 3-15.4 9.1-20.6 6.1-5.2 14.2-7.8 24.5-7.8 3.4 0 6.9.3 10.6.8 3.7.5 7.5 1.3 11.5 2.2v-7.3c0-7.6-1.6-12.9-4.7-16-3.2-3.1-8.6-4.6-16.3-4.6-3.5 0-7.1.4-10.8 1.3-3.7.9-7.3 2-10.8 3.4-1.6.7-2.8 1.1-3.5 1.3-.7.2-1.2.3-1.6.3-1.4 0-2.1-1-2.1-3.1v-4.9c0-1.6.2-2.8.7-3.5.5-.7 1.4-1.4 2.8-2.1 3.5-1.8 7.7-3.3 12.6-4.5C41 1.9 46.2 1.3 51.7 1.3c11.9 0 20.6 2.7 26.2 8.1 5.5 5.4 8.3 13.6 8.3 24.6v32.4zM45.8 81.6c3.3 0 6.7-.6 10.3-1.8 3.6-1.2 6.8-3.4 9.5-6.4 1.6-1.9 2.8-4 3.4-6.4.6-2.4 1-5.3 1-8.7v-4.2c-2.9-.7-6-1.3-9.2-1.7-3.2-.4-6.3-.6-9.4-.6-6.7 0-11.6 1.3-14.9 4-3.3 2.7-4.9 6.5-4.9 11.5 0 4.7 1.2 8.2 3.7 10.6 2.4 2.5 5.9 3.7 10.5 3.7zm80.3 10.8c-1.8 0-3-.3-3.8-1-.8-.6-1.5-2-2.1-3.9L96.7 10.2c-.6-2-.9-3.3-.9-4 0-1.6.8-2.5 2.4-2.5h9.8c1.9 0 3.2.3 3.9 1 .8.6 1.4 2 2 3.9l16.8 66.2 15.6-66.2c.5-2 1.1-3.3 1.9-3.9.8-.6 2.2-1 4-1h8c1.9 0 3.2.3 4 1 .8.6 1.5 2 1.9 3.9l15.8 67 17.3-67c.6-2 1.3-3.3 2-3.9.8-.6 2.1-1 3.9-1h9.3c1.6 0 2.5.8 2.5 2.5 0 .5-.1 1-.2 1.6-.1.6-.3 1.4-.7 2.5l-24.1 77.3c-.6 2-1.3 3.3-2.1 3.9-.8.6-2.1 1-3.8 1h-8.6c-1.9 0-3.2-.3-4-1-.8-.7-1.5-2-1.9-4L156 23l-15.4 64.4c-.5 2-1.1 3.3-1.9 4-.8.7-2.2 1-4 1h-8.6zm128.5 2.7c-5.2 0-10.4-.6-15.4-1.8-5-1.2-8.9-2.5-11.5-4-1.6-.9-2.7-1.9-3.1-2.8-.4-.9-.6-1.9-.6-2.8v-5.1c0-2.1.8-3.1 2.3-3.1.6 0 1.2.1 1.8.3.6.2 1.5.6 2.5 1 3.4 1.5 7.1 2.7 11 3.5 4 .8 7.9 1.2 11.9 1.2 6.3 0 11.2-1.1 14.6-3.3 3.4-2.2 5.2-5.4 5.2-9.5 0-2.8-.9-5.1-2.7-7-1.8-1.9-5.2-3.6-10.1-5.2L246 52c-7.3-2.3-12.7-5.7-16-10.2-3.3-4.4-5-9.3-5-14.5 0-4.2.9-7.9 2.7-11.1 1.8-3.2 4.2-6 7.2-8.2 3-2.3 6.4-4 10.4-5.2 4-1.2 8.2-1.7 12.6-1.7 2.2 0 4.5.1 6.7.4 2.3.3 4.4.7 6.5 1.1 2 .5 3.9 1 5.7 1.6 1.8.6 3.2 1.2 4.2 1.8 1.4.8 2.4 1.6 3 2.5.6.8.9 1.9.9 3.3v4.7c0 2.1-.8 3.2-2.3 3.2-.8 0-2.1-.4-3.8-1.2-5.7-2.6-12.1-3.9-19.2-3.9-5.7 0-10.2.9-13.3 2.8-3.1 1.9-4.7 4.8-4.7 8.9 0 2.8 1 5.2 3 7.1 2 1.9 5.7 3.8 11 5.5l14.2 4.5c7.2 2.3 12.4 5.5 15.5 9.6 3.1 4.1 4.6 8.8 4.6 14 0 4.3-.9 8.2-2.6 11.6-1.8 3.4-4.2 6.4-7.3 8.8-3.1 2.5-6.8 4.3-11.1 5.6-4.5 1.4-9.2 2.1-14.3 2.1z",fill:e.isDark?"#ffffff":"#252f3e"}),c.jsx("path",{d:"M273.5 143.7c-32.9 24.3-80.7 37.2-121.8 37.2-57.6 0-109.5-21.3-148.7-56.7-3.1-2.8-.3-6.6 3.4-4.4 42.4 24.6 94.7 39.5 148.8 39.5 36.5 0 76.6-7.6 113.5-23.2 5.5-2.5 10.2 3.6 4.8 7.6z",className:"st1"}),c.jsx("path",{d:"M287.2 128.1c-4.2-5.4-27.8-2.6-38.5-1.3-3.2.4-3.7-2.4-.8-4.5 18.8-13.2 49.7-9.4 53.3-5 3.6 4.5-1 35.4-18.6 50.2-2.7 2.3-5.3 1.1-4.1-1.9 4-9.9 12.9-32.2 8.7-37.5z",className:"st1"})]}),a=l.forwardRef((e,s)=>c.jsx(r,{ref:s,...e}));export{a as AWSIcon};
@@ -1 +1 @@
1
- import{j as o,r as s}from"./index-BChjg6Az.js";const a=({...r})=>o.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg","aria-label":"groq logo",role:"img",viewBox:"0 0 24 24",fill:"none",className:"fill-foreground",...r,children:[o.jsx("path",{fill:"#F55036",d:"M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12Z"}),o.jsx("path",{fill:"#fff",d:"M12.002 6a4.118 4.118 0 0 0-4.118 4.108 4.118 4.118 0 0 0 4.118 4.109h1.354v-1.541h-1.354a2.574 2.574 0 0 1-2.574-2.568 2.574 2.574 0 0 1 2.574-2.568c1.42 0 2.58 1.152 2.58 2.568v3.784a2.58 2.58 0 0 1-2.555 2.567 2.558 2.558 0 0 1-1.791-.752l-1.092 1.09a4.095 4.095 0 0 0 2.855 1.202l.028.001h.029a4.118 4.118 0 0 0 4.061-4.09l.002-3.903A4.119 4.119 0 0 0 12.002 6Z"})]}),e=s.forwardRef((r,l)=>o.jsx(a,{ref:l,...r}));export{e as GroqIcon};
1
+ import{j as o,r as s}from"./index-BD7Io1hL.js";const a=({...r})=>o.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg","aria-label":"groq logo",role:"img",viewBox:"0 0 24 24",fill:"none",className:"fill-foreground",...r,children:[o.jsx("path",{fill:"#F55036",d:"M24 12c0 6.627-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0s12 5.373 12 12Z"}),o.jsx("path",{fill:"#fff",d:"M12.002 6a4.118 4.118 0 0 0-4.118 4.108 4.118 4.118 0 0 0 4.118 4.109h1.354v-1.541h-1.354a2.574 2.574 0 0 1-2.574-2.568 2.574 2.574 0 0 1 2.574-2.568c1.42 0 2.58 1.152 2.58 2.568v3.784a2.58 2.58 0 0 1-2.555 2.567 2.558 2.558 0 0 1-1.791-.752l-1.092 1.09a4.095 4.095 0 0 0 2.855 1.202l.028.001h.029a4.118 4.118 0 0 0 4.061-4.09l.002-3.903A4.119 4.119 0 0 0 12.002 6Z"})]}),e=s.forwardRef((r,l)=>o.jsx(a,{ref:l,...r}));export{e as GroqIcon};
@@ -1 +1 @@
1
- import{j as s,r as l}from"./index-BChjg6Az.js";const f=o=>s.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"-29.622 0.1 574.392 799.81",...o,children:[s.jsxs("linearGradient",{id:"bing_svg__a",x1:286.383,x2:542.057,y1:284.169,y2:569.112,gradientUnits:"userSpaceOnUse",children:[s.jsx("stop",{offset:0,stopColor:"#37bdff"}),s.jsx("stop",{offset:.25,stopColor:"#26c6f4"}),s.jsx("stop",{offset:.5,stopColor:"#15d0e9"}),s.jsx("stop",{offset:.75,stopColor:"#3bd6df"}),s.jsx("stop",{offset:1,stopColor:"#62dcd4"})]}),s.jsxs("linearGradient",{id:"bing_svg__b",x1:108.979,x2:100.756,y1:675.98,y2:43.669,gradientUnits:"userSpaceOnUse",children:[s.jsx("stop",{offset:0,stopColor:"#1b48ef"}),s.jsx("stop",{offset:.5,stopColor:"#2080f1"}),s.jsx("stop",{offset:1,stopColor:"#26b8f4"})]}),s.jsxs("linearGradient",{id:"bing_svg__c",x1:256.823,x2:875.632,y1:649.719,y2:649.719,gradientUnits:"userSpaceOnUse",children:[s.jsx("stop",{offset:0,stopColor:"#39d2ff"}),s.jsx("stop",{offset:.5,stopColor:"#248ffa"}),s.jsx("stop",{offset:1,stopColor:"#104cf5"})]}),s.jsxs("linearGradient",{id:"bing_svg__d",x1:256.823,x2:875.632,y1:649.719,y2:649.719,gradientUnits:"userSpaceOnUse",children:[s.jsx("stop",{offset:0,stopColor:"#fff"}),s.jsx("stop",{offset:1})]}),s.jsx("path",{fill:"#7f7f7f",d:"M249.97 277.48c-.12.96-.12 2.05-.12 3.12 0 4.16.83 8.16 2.33 11.84l1.34 2.76 5.3 13.56 27.53 70.23 24.01 61.33c6.85 12.38 17.82 22.1 31.05 27.28l4.11 1.51c.16.05.43.05.65.11l65.81 22.63v.05l25.16 8.64 1.72.58c.06 0 .16.06.22.06 4.96 1.25 9.82 2.93 14.46 4.98 10.73 4.63 20.46 11.23 28.77 19.28 3.35 3.2 6.43 6.65 9.28 10.33a88.64 88.64 0 0 1 6.64 9.72c8.78 14.58 13.82 31.72 13.82 49.97 0 3.26-.16 6.41-.49 9.61-.11 1.41-.28 2.77-.49 4.12v.11c-.22 1.43-.49 2.91-.76 4.36-.28 1.41-.54 2.81-.86 4.21-.05.16-.11.33-.17.49-.3 1.42-.68 2.82-1.07 4.23-.35 1.33-.79 2.7-1.28 3.99a42.96 42.96 0 0 1-1.51 4.16c-.49 1.4-1.07 2.82-1.72 4.16-1.78 4.11-3.9 8.06-6.28 11.83a97.889 97.889 0 0 1-10.47 13.95c30.88-33.2 51.41-76.07 56.52-123.51.86-7.78 1.3-15.67 1.3-23.61 0-5.07-.22-10.09-.55-15.13-3.89-56.89-29.79-107.77-69.32-144.08-10.9-10.09-22.81-19.07-35.62-26.69l-24.2-12.37-122.63-62.93a30.15 30.15 0 0 0-11.93-2.44c-15.88 0-28.99 12.11-30.55 27.56z"}),s.jsx("path",{fill:"url(#bing_svg__a)",d:"M249.97 277.48c-.12.96-.12 2.05-.12 3.12 0 4.16.83 8.16 2.33 11.84l1.34 2.76 5.3 13.56 27.53 70.23 24.01 61.33c6.85 12.38 17.82 22.1 31.05 27.28l4.11 1.51c.16.05.43.05.65.11l65.81 22.63v.05l25.16 8.64 1.72.58c.06 0 .16.06.22.06 4.96 1.25 9.82 2.93 14.46 4.98 10.73 4.63 20.46 11.23 28.77 19.28 3.35 3.2 6.43 6.65 9.28 10.33a88.64 88.64 0 0 1 6.64 9.72c8.78 14.58 13.82 31.72 13.82 49.97 0 3.26-.16 6.41-.49 9.61-.11 1.41-.28 2.77-.49 4.12v.11c-.22 1.43-.49 2.91-.76 4.36-.28 1.41-.54 2.81-.86 4.21-.05.16-.11.33-.17.49-.3 1.42-.68 2.82-1.07 4.23-.35 1.33-.79 2.7-1.28 3.99a42.96 42.96 0 0 1-1.51 4.16c-.49 1.4-1.07 2.82-1.72 4.16-1.78 4.11-3.9 8.06-6.28 11.83a97.889 97.889 0 0 1-10.47 13.95c30.88-33.2 51.41-76.07 56.52-123.51.86-7.78 1.3-15.67 1.3-23.61 0-5.07-.22-10.09-.55-15.13-3.89-56.89-29.79-107.77-69.32-144.08-10.9-10.09-22.81-19.07-35.62-26.69l-24.2-12.37-122.63-62.93a30.15 30.15 0 0 0-11.93-2.44c-15.88 0-28.99 12.11-30.55 27.56z"}),s.jsx("path",{fill:"#7f7f7f",d:"M31.62.1C14.17.41.16 14.69.16 32.15v559.06c.07 3.9.29 7.75.57 11.66.25 2.06.52 4.2.9 6.28 7.97 44.87 47.01 78.92 94.15 78.92 16.53 0 32.03-4.21 45.59-11.53.08-.06.22-.14.29-.14l4.88-2.95 19.78-11.64 25.16-14.93.06-496.73c0-33.01-16.52-62.11-41.81-79.4-.6-.36-1.18-.74-1.71-1.17L50.12 5.56C45.16 2.28 39.18.22 32.77.1z"}),s.jsx("path",{fill:"url(#bing_svg__b)",d:"M31.62.1C14.17.41.16 14.69.16 32.15v559.06c.07 3.9.29 7.75.57 11.66.25 2.06.52 4.2.9 6.28 7.97 44.87 47.01 78.92 94.15 78.92 16.53 0 32.03-4.21 45.59-11.53.08-.06.22-.14.29-.14l4.88-2.95 19.78-11.64 25.16-14.93.06-496.73c0-33.01-16.52-62.11-41.81-79.4-.6-.36-1.18-.74-1.71-1.17L50.12 5.56C45.16 2.28 39.18.22 32.77.1z"}),s.jsx("path",{fill:"#7f7f7f",d:"M419.81 510.84 194.72 644.26l-3.24 1.95v.71l-25.16 14.9-19.77 11.67-4.85 2.93-.33.16c-13.53 7.35-29.04 11.51-45.56 11.51-47.13 0-86.22-34.03-94.16-78.92 3.77 32.84 14.96 63.41 31.84 90.04 34.76 54.87 93.54 93.04 161.54 99.67h41.58c36.78-3.84 67.49-18.57 99.77-38.46l49.64-30.36c22.36-14.33 83.05-49.58 100.93-69.36 3.89-4.33 7.4-8.97 10.47-13.94 2.38-3.78 4.5-7.73 6.28-11.84.6-1.4 1.17-2.76 1.72-4.15.52-1.38 1.01-2.77 1.51-4.18.93-2.7 1.67-5.41 2.38-8.2.36-1.59.69-3.16 1.02-4.72 1.08-5.89 1.67-11.94 1.67-18.21 0-18.25-5.04-35.39-13.77-49.95-2-3.4-4.2-6.65-6.64-9.72-2.85-3.7-5.93-7.13-9.28-10.33-8.31-8.05-18.01-14.65-28.77-19.29-4.64-2.05-9.48-3.74-14.46-4.97-.06 0-.16-.06-.22-.06l-1.72-.58z"}),s.jsx("path",{fill:"url(#bing_svg__c)",d:"M419.81 510.84 194.72 644.26l-3.24 1.95v.71l-25.16 14.9-19.77 11.67-4.85 2.93-.33.16c-13.53 7.35-29.04 11.51-45.56 11.51-47.13 0-86.22-34.03-94.16-78.92 3.77 32.84 14.96 63.41 31.84 90.04 34.76 54.87 93.54 93.04 161.54 99.67h41.58c36.78-3.84 67.49-18.57 99.77-38.46l49.64-30.36c22.36-14.33 83.05-49.58 100.93-69.36 3.89-4.33 7.4-8.97 10.47-13.94 2.38-3.78 4.5-7.73 6.28-11.84.6-1.4 1.17-2.76 1.72-4.15.52-1.38 1.01-2.77 1.51-4.18.93-2.7 1.67-5.41 2.38-8.2.36-1.59.69-3.16 1.02-4.72 1.08-5.89 1.67-11.94 1.67-18.21 0-18.25-5.04-35.39-13.77-49.95-2-3.4-4.2-6.65-6.64-9.72-2.85-3.7-5.93-7.13-9.28-10.33-8.31-8.05-18.01-14.65-28.77-19.29-4.64-2.05-9.48-3.74-14.46-4.97-.06 0-.16-.06-.22-.06l-1.72-.58z"}),s.jsx("path",{fill:"#7f7f7f",d:"M512 595.46c0 6.27-.59 12.33-1.68 18.22-.32 1.56-.65 3.12-1.02 4.7-.7 2.8-1.44 5.51-2.37 8.22-.49 1.4-.99 2.8-1.51 4.16-.54 1.4-1.12 2.76-1.73 4.16a87.873 87.873 0 0 1-6.26 11.83 96.567 96.567 0 0 1-10.48 13.94c-17.88 19.79-78.57 55.04-100.93 69.37l-49.64 30.36c-36.39 22.42-70.77 38.29-114.13 39.38-2.05.06-4.06.11-6.05.11-2.8 0-5.56-.05-8.33-.16-73.42-2.8-137.45-42.25-174.38-100.54a213.368 213.368 0 0 1-31.84-90.04c7.94 44.89 47.03 78.92 94.16 78.92 16.52 0 32.03-4.17 45.56-11.51l.33-.17 4.85-2.92 19.77-11.67 25.16-14.9v-.71l3.24-1.95 225.09-133.43 17.33-10.27 1.72.58c.05 0 .16.06.22.06 4.98 1.23 9.83 2.92 14.46 4.97 10.76 4.64 20.45 11.24 28.77 19.29a92.13 92.13 0 0 1 9.28 10.33c2.44 3.07 4.64 6.32 6.64 9.72 8.73 14.56 13.77 31.7 13.77 49.95z",opacity:.15}),s.jsx("path",{fill:"url(#bing_svg__d)",d:"M512 595.46c0 6.27-.59 12.33-1.68 18.22-.32 1.56-.65 3.12-1.02 4.7-.7 2.8-1.44 5.51-2.37 8.22-.49 1.4-.99 2.8-1.51 4.16-.54 1.4-1.12 2.76-1.73 4.16a87.873 87.873 0 0 1-6.26 11.83 96.567 96.567 0 0 1-10.48 13.94c-17.88 19.79-78.57 55.04-100.93 69.37l-49.64 30.36c-36.39 22.42-70.77 38.29-114.13 39.38-2.05.06-4.06.11-6.05.11-2.8 0-5.56-.05-8.33-.16-73.42-2.8-137.45-42.25-174.38-100.54a213.368 213.368 0 0 1-31.84-90.04c7.94 44.89 47.03 78.92 94.16 78.92 16.52 0 32.03-4.17 45.56-11.51l.33-.17 4.85-2.92 19.77-11.67 25.16-14.9v-.71l3.24-1.95 225.09-133.43 17.33-10.27 1.72.58c.05 0 .16.06.22.06 4.98 1.23 9.83 2.92 14.46 4.97 10.76 4.64 20.45 11.24 28.77 19.29a92.13 92.13 0 0 1 9.28 10.33c2.44 3.07 4.64 6.32 6.64 9.72 8.73 14.56 13.77 31.7 13.77 49.95z",opacity:.15})]}),e=l.forwardRef((o,t)=>s.jsx(f,{ref:t,...o}));export{e as BingIcon};
1
+ import{j as s,r as l}from"./index-BD7Io1hL.js";const f=o=>s.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"-29.622 0.1 574.392 799.81",...o,children:[s.jsxs("linearGradient",{id:"bing_svg__a",x1:286.383,x2:542.057,y1:284.169,y2:569.112,gradientUnits:"userSpaceOnUse",children:[s.jsx("stop",{offset:0,stopColor:"#37bdff"}),s.jsx("stop",{offset:.25,stopColor:"#26c6f4"}),s.jsx("stop",{offset:.5,stopColor:"#15d0e9"}),s.jsx("stop",{offset:.75,stopColor:"#3bd6df"}),s.jsx("stop",{offset:1,stopColor:"#62dcd4"})]}),s.jsxs("linearGradient",{id:"bing_svg__b",x1:108.979,x2:100.756,y1:675.98,y2:43.669,gradientUnits:"userSpaceOnUse",children:[s.jsx("stop",{offset:0,stopColor:"#1b48ef"}),s.jsx("stop",{offset:.5,stopColor:"#2080f1"}),s.jsx("stop",{offset:1,stopColor:"#26b8f4"})]}),s.jsxs("linearGradient",{id:"bing_svg__c",x1:256.823,x2:875.632,y1:649.719,y2:649.719,gradientUnits:"userSpaceOnUse",children:[s.jsx("stop",{offset:0,stopColor:"#39d2ff"}),s.jsx("stop",{offset:.5,stopColor:"#248ffa"}),s.jsx("stop",{offset:1,stopColor:"#104cf5"})]}),s.jsxs("linearGradient",{id:"bing_svg__d",x1:256.823,x2:875.632,y1:649.719,y2:649.719,gradientUnits:"userSpaceOnUse",children:[s.jsx("stop",{offset:0,stopColor:"#fff"}),s.jsx("stop",{offset:1})]}),s.jsx("path",{fill:"#7f7f7f",d:"M249.97 277.48c-.12.96-.12 2.05-.12 3.12 0 4.16.83 8.16 2.33 11.84l1.34 2.76 5.3 13.56 27.53 70.23 24.01 61.33c6.85 12.38 17.82 22.1 31.05 27.28l4.11 1.51c.16.05.43.05.65.11l65.81 22.63v.05l25.16 8.64 1.72.58c.06 0 .16.06.22.06 4.96 1.25 9.82 2.93 14.46 4.98 10.73 4.63 20.46 11.23 28.77 19.28 3.35 3.2 6.43 6.65 9.28 10.33a88.64 88.64 0 0 1 6.64 9.72c8.78 14.58 13.82 31.72 13.82 49.97 0 3.26-.16 6.41-.49 9.61-.11 1.41-.28 2.77-.49 4.12v.11c-.22 1.43-.49 2.91-.76 4.36-.28 1.41-.54 2.81-.86 4.21-.05.16-.11.33-.17.49-.3 1.42-.68 2.82-1.07 4.23-.35 1.33-.79 2.7-1.28 3.99a42.96 42.96 0 0 1-1.51 4.16c-.49 1.4-1.07 2.82-1.72 4.16-1.78 4.11-3.9 8.06-6.28 11.83a97.889 97.889 0 0 1-10.47 13.95c30.88-33.2 51.41-76.07 56.52-123.51.86-7.78 1.3-15.67 1.3-23.61 0-5.07-.22-10.09-.55-15.13-3.89-56.89-29.79-107.77-69.32-144.08-10.9-10.09-22.81-19.07-35.62-26.69l-24.2-12.37-122.63-62.93a30.15 30.15 0 0 0-11.93-2.44c-15.88 0-28.99 12.11-30.55 27.56z"}),s.jsx("path",{fill:"url(#bing_svg__a)",d:"M249.97 277.48c-.12.96-.12 2.05-.12 3.12 0 4.16.83 8.16 2.33 11.84l1.34 2.76 5.3 13.56 27.53 70.23 24.01 61.33c6.85 12.38 17.82 22.1 31.05 27.28l4.11 1.51c.16.05.43.05.65.11l65.81 22.63v.05l25.16 8.64 1.72.58c.06 0 .16.06.22.06 4.96 1.25 9.82 2.93 14.46 4.98 10.73 4.63 20.46 11.23 28.77 19.28 3.35 3.2 6.43 6.65 9.28 10.33a88.64 88.64 0 0 1 6.64 9.72c8.78 14.58 13.82 31.72 13.82 49.97 0 3.26-.16 6.41-.49 9.61-.11 1.41-.28 2.77-.49 4.12v.11c-.22 1.43-.49 2.91-.76 4.36-.28 1.41-.54 2.81-.86 4.21-.05.16-.11.33-.17.49-.3 1.42-.68 2.82-1.07 4.23-.35 1.33-.79 2.7-1.28 3.99a42.96 42.96 0 0 1-1.51 4.16c-.49 1.4-1.07 2.82-1.72 4.16-1.78 4.11-3.9 8.06-6.28 11.83a97.889 97.889 0 0 1-10.47 13.95c30.88-33.2 51.41-76.07 56.52-123.51.86-7.78 1.3-15.67 1.3-23.61 0-5.07-.22-10.09-.55-15.13-3.89-56.89-29.79-107.77-69.32-144.08-10.9-10.09-22.81-19.07-35.62-26.69l-24.2-12.37-122.63-62.93a30.15 30.15 0 0 0-11.93-2.44c-15.88 0-28.99 12.11-30.55 27.56z"}),s.jsx("path",{fill:"#7f7f7f",d:"M31.62.1C14.17.41.16 14.69.16 32.15v559.06c.07 3.9.29 7.75.57 11.66.25 2.06.52 4.2.9 6.28 7.97 44.87 47.01 78.92 94.15 78.92 16.53 0 32.03-4.21 45.59-11.53.08-.06.22-.14.29-.14l4.88-2.95 19.78-11.64 25.16-14.93.06-496.73c0-33.01-16.52-62.11-41.81-79.4-.6-.36-1.18-.74-1.71-1.17L50.12 5.56C45.16 2.28 39.18.22 32.77.1z"}),s.jsx("path",{fill:"url(#bing_svg__b)",d:"M31.62.1C14.17.41.16 14.69.16 32.15v559.06c.07 3.9.29 7.75.57 11.66.25 2.06.52 4.2.9 6.28 7.97 44.87 47.01 78.92 94.15 78.92 16.53 0 32.03-4.21 45.59-11.53.08-.06.22-.14.29-.14l4.88-2.95 19.78-11.64 25.16-14.93.06-496.73c0-33.01-16.52-62.11-41.81-79.4-.6-.36-1.18-.74-1.71-1.17L50.12 5.56C45.16 2.28 39.18.22 32.77.1z"}),s.jsx("path",{fill:"#7f7f7f",d:"M419.81 510.84 194.72 644.26l-3.24 1.95v.71l-25.16 14.9-19.77 11.67-4.85 2.93-.33.16c-13.53 7.35-29.04 11.51-45.56 11.51-47.13 0-86.22-34.03-94.16-78.92 3.77 32.84 14.96 63.41 31.84 90.04 34.76 54.87 93.54 93.04 161.54 99.67h41.58c36.78-3.84 67.49-18.57 99.77-38.46l49.64-30.36c22.36-14.33 83.05-49.58 100.93-69.36 3.89-4.33 7.4-8.97 10.47-13.94 2.38-3.78 4.5-7.73 6.28-11.84.6-1.4 1.17-2.76 1.72-4.15.52-1.38 1.01-2.77 1.51-4.18.93-2.7 1.67-5.41 2.38-8.2.36-1.59.69-3.16 1.02-4.72 1.08-5.89 1.67-11.94 1.67-18.21 0-18.25-5.04-35.39-13.77-49.95-2-3.4-4.2-6.65-6.64-9.72-2.85-3.7-5.93-7.13-9.28-10.33-8.31-8.05-18.01-14.65-28.77-19.29-4.64-2.05-9.48-3.74-14.46-4.97-.06 0-.16-.06-.22-.06l-1.72-.58z"}),s.jsx("path",{fill:"url(#bing_svg__c)",d:"M419.81 510.84 194.72 644.26l-3.24 1.95v.71l-25.16 14.9-19.77 11.67-4.85 2.93-.33.16c-13.53 7.35-29.04 11.51-45.56 11.51-47.13 0-86.22-34.03-94.16-78.92 3.77 32.84 14.96 63.41 31.84 90.04 34.76 54.87 93.54 93.04 161.54 99.67h41.58c36.78-3.84 67.49-18.57 99.77-38.46l49.64-30.36c22.36-14.33 83.05-49.58 100.93-69.36 3.89-4.33 7.4-8.97 10.47-13.94 2.38-3.78 4.5-7.73 6.28-11.84.6-1.4 1.17-2.76 1.72-4.15.52-1.38 1.01-2.77 1.51-4.18.93-2.7 1.67-5.41 2.38-8.2.36-1.59.69-3.16 1.02-4.72 1.08-5.89 1.67-11.94 1.67-18.21 0-18.25-5.04-35.39-13.77-49.95-2-3.4-4.2-6.65-6.64-9.72-2.85-3.7-5.93-7.13-9.28-10.33-8.31-8.05-18.01-14.65-28.77-19.29-4.64-2.05-9.48-3.74-14.46-4.97-.06 0-.16-.06-.22-.06l-1.72-.58z"}),s.jsx("path",{fill:"#7f7f7f",d:"M512 595.46c0 6.27-.59 12.33-1.68 18.22-.32 1.56-.65 3.12-1.02 4.7-.7 2.8-1.44 5.51-2.37 8.22-.49 1.4-.99 2.8-1.51 4.16-.54 1.4-1.12 2.76-1.73 4.16a87.873 87.873 0 0 1-6.26 11.83 96.567 96.567 0 0 1-10.48 13.94c-17.88 19.79-78.57 55.04-100.93 69.37l-49.64 30.36c-36.39 22.42-70.77 38.29-114.13 39.38-2.05.06-4.06.11-6.05.11-2.8 0-5.56-.05-8.33-.16-73.42-2.8-137.45-42.25-174.38-100.54a213.368 213.368 0 0 1-31.84-90.04c7.94 44.89 47.03 78.92 94.16 78.92 16.52 0 32.03-4.17 45.56-11.51l.33-.17 4.85-2.92 19.77-11.67 25.16-14.9v-.71l3.24-1.95 225.09-133.43 17.33-10.27 1.72.58c.05 0 .16.06.22.06 4.98 1.23 9.83 2.92 14.46 4.97 10.76 4.64 20.45 11.24 28.77 19.29a92.13 92.13 0 0 1 9.28 10.33c2.44 3.07 4.64 6.32 6.64 9.72 8.73 14.56 13.77 31.7 13.77 49.95z",opacity:.15}),s.jsx("path",{fill:"url(#bing_svg__d)",d:"M512 595.46c0 6.27-.59 12.33-1.68 18.22-.32 1.56-.65 3.12-1.02 4.7-.7 2.8-1.44 5.51-2.37 8.22-.49 1.4-.99 2.8-1.51 4.16-.54 1.4-1.12 2.76-1.73 4.16a87.873 87.873 0 0 1-6.26 11.83 96.567 96.567 0 0 1-10.48 13.94c-17.88 19.79-78.57 55.04-100.93 69.37l-49.64 30.36c-36.39 22.42-70.77 38.29-114.13 39.38-2.05.06-4.06.11-6.05.11-2.8 0-5.56-.05-8.33-.16-73.42-2.8-137.45-42.25-174.38-100.54a213.368 213.368 0 0 1-31.84-90.04c7.94 44.89 47.03 78.92 94.16 78.92 16.52 0 32.03-4.17 45.56-11.51l.33-.17 4.85-2.92 19.77-11.67 25.16-14.9v-.71l3.24-1.95 225.09-133.43 17.33-10.27 1.72.58c.05 0 .16.06.22.06 4.98 1.23 9.83 2.92 14.46 4.97 10.76 4.64 20.45 11.24 28.77 19.29a92.13 92.13 0 0 1 9.28 10.33c2.44 3.07 4.64 6.32 6.64 9.72 8.73 14.56 13.77 31.7 13.77 49.95z",opacity:.15})]}),e=l.forwardRef((o,t)=>s.jsx(f,{ref:t,...o}));export{e as BingIcon};
@@ -1 +1 @@
1
- import{j as e,c as l,r as s}from"./index-BChjg6Az.js";const t=({className:r,...i})=>e.jsxs("svg",{className:l("dark:invert",r),width:"225",height:"225",viewBox:"0 0 225 225",fill:"none",xmlns:"http://www.w3.org/2000/svg",...i,children:[e.jsx("mask",{id:"mask0_13070_4340",style:{maskType:"alpha"},maskUnits:"userSpaceOnUse",x:"0",y:"12",width:"225",height:"201",children:e.jsx("path",{d:"M221.23 100.528C225.475 107.88 225.475 116.937 221.23 124.289L177.213 200.528C172.969 207.88 165.125 212.408 156.636 212.408H68.6026C60.1138 212.408 52.2698 207.88 48.0254 200.528L4.00849 124.289C-0.235924 116.937 -0.235893 107.88 4.00852 100.528L48.0254 24.2887C52.2698 16.9372 60.1138 12.4084 68.6026 12.4084L156.636 12.4085C165.125 12.4085 172.969 16.9372 177.213 24.2887L221.23 100.528Z",fill:"#D9D9D9"})}),e.jsxs("g",{mask:"url(#mask0_13070_4340)",children:[e.jsx("g",{filter:"url(#filter0_f_13070_4340)",children:e.jsx("path",{d:"M165.65 134.568C255.877 91.3794 93.882 -221.746 120.117 -119.206C137.15 -52.6304 77.7037 -62.5848 83.7299 -25.8396C87.9511 -0.101322 88.9044 19.4797 85.795 34.529C82.048 52.6636 80.9887 83.384 89.784 99.6795C104.975 127.824 115.931 158.366 165.65 134.568Z",fill:"#D6FFF4"})}),e.jsx("g",{filter:"url(#filter1_f_13070_4340)",children:e.jsx("path",{d:"M-42.7886 -29.6695C-26.1866 -27.9249 -3.61291 -21.6434 28.8941 -7.51849C106.528 26.215 114.949 160.877 67.7629 202.317C22.3388 242.209 -288.768 175.806 -249.16 172.629C-56.6506 157.189 5.60256 124.472 -60.9868 48.8517C-77.0297 30.6332 -66.9309 -32.2064 -42.7886 -29.6695Z",fill:"#84DBFF"})}),e.jsx("g",{filter:"url(#filter2_f_13070_4340)",children:e.jsx("path",{d:"M211.54 319.622C294.158 280.076 145.824 -6.64398 169.846 87.2493C185.443 148.21 131.01 139.095 136.528 172.742C140.074 194.365 141.101 211.242 139.048 224.523C136.218 242.823 135.097 274.442 143.746 290.816C156.852 315.632 167.858 340.531 211.54 319.622Z",fill:"#FFBDF7"})}),e.jsx("g",{filter:"url(#filter3_f_13070_4340)",children:e.jsx("path",{d:"M235.875 39.3835C200.055 -8.7256 51.8499 113.382 104.046 88.866C137.935 72.949 140.641 108.159 159.807 101.321C164.007 99.8228 167.922 98.5641 171.584 97.5545C190.109 92.4472 233.488 87.3544 242.919 70.612C247.043 63.29 246.735 53.9698 235.875 39.3835Z",fill:"#FF4CE9"})}),e.jsx("g",{filter:"url(#filter4_f_13070_4340)",children:e.jsx("path",{d:"M202.147 159.126C168.49 102.066 -113.331 257.654 -22.2837 225.406C36.8296 204.469 25.3558 247.288 57.8261 238.086C79.9207 231.825 96.7819 228.505 109.681 228.432C125.904 228.34 150.315 227.197 164.296 218.969C190.597 203.492 221.619 192.136 202.147 159.126Z",fill:"#1C38FF"})}),e.jsx("path",{d:"M-16.6948 6.97169C-16.6948 -6.15092 -6.05688 -16.7888 7.06569 -16.7888H204.33C217.452 -16.7888 228.09 -6.15092 228.09 6.9717V215.178C228.09 228.301 217.452 238.939 204.33 238.939H7.0657C-6.05688 238.939 -16.6948 228.301 -16.6948 215.178V6.97169Z",fill:"white"})]}),e.jsx("mask",{id:"mask1_13070_4340",style:{maskType:"alpha"},maskUnits:"userSpaceOnUse",x:"0",y:"12",width:"225",height:"201",children:e.jsx("path",{d:"M221.23 100.528C225.475 107.88 225.475 116.937 221.23 124.289L177.213 200.528C172.969 207.88 165.125 212.408 156.636 212.408H68.6026C60.1138 212.408 52.2698 207.88 48.0254 200.528L4.00849 124.289C-0.235924 116.937 -0.235893 107.88 4.00852 100.528L48.0254 24.2887C52.2698 16.9372 60.1138 12.4084 68.6026 12.4084L156.636 12.4085C165.125 12.4085 172.969 16.9372 177.213 24.2887L221.23 100.528Z",fill:"#D9D9D9"})}),e.jsxs("g",{mask:"url(#mask1_13070_4340)",children:[e.jsx("g",{filter:"url(#filter5_f_13070_4340)",children:e.jsx("path",{d:"M165.65 134.568C255.877 91.3794 93.8815 -221.746 120.116 -119.206C137.15 -52.6303 77.7031 -62.5847 83.7294 -25.8395C92.2696 26.2346 87.4336 53.1043 62.6367 68.2335C102.986 89.1354 93.4683 169.118 165.65 134.568Z",fill:"#D6FFF4"})}),e.jsx("g",{filter:"url(#filter6_f_13070_4340)",children:e.jsx("path",{d:"M-126.644 -9.89283C-75.224 -3.16423 -93.0002 -60.4838 28.8942 -7.51843C106.528 26.215 114.949 160.877 67.7629 202.317C22.3388 242.209 -288.768 175.806 -249.16 172.629C-12.7415 153.667 27.2247 108.648 -126.644 -9.89283Z",fill:"#3CC6FF"})}),e.jsx("g",{filter:"url(#filter7_f_13070_4340)",children:e.jsx("path",{d:"M211.541 319.622C294.159 280.076 145.825 -6.64398 169.848 87.2493C185.445 148.21 131.011 139.095 136.529 172.742C144.349 220.425 139.921 245.028 117.215 258.882C154.162 278.021 145.447 351.259 211.541 319.622Z",fill:"#FFBDF7"})}),e.jsx("g",{filter:"url(#filter8_f_13070_4340)",children:e.jsx("path",{d:"M235.875 39.3835C200.055 -8.7256 51.8498 113.382 104.046 88.8661C137.935 72.9491 140.641 108.159 159.807 101.321C186.968 91.6309 202.245 91.9637 213.862 104.887C219.721 79.6947 264.53 77.8708 235.875 39.3835Z",fill:"#F900DA"})}),e.jsx("g",{filter:"url(#filter9_f_13070_4340)",children:e.jsx("path",{d:"M202.147 159.126C168.49 102.066 -113.331 257.654 -22.2837 225.406C36.8295 204.469 25.3557 247.288 57.8261 238.086C103.842 225.046 127.157 224.764 139.263 240.002C159.443 209.014 229.073 204.773 202.147 159.126Z",fill:"#1C38FF"})}),e.jsx("path",{d:"M229.228 -54.4146H-72.6978V254.311H229.228V-54.4146Z",fill:"#090F1D"})]}),e.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M64.3116 145.981C62.6561 145.981 60.9903 145.454 59.5831 144.377C56.1893 141.76 55.5478 136.886 58.1656 133.493L89.1338 93.2431C90.3961 91.598 92.2689 90.5322 94.3176 90.2736C96.4077 90.0045 98.4564 90.584 100.081 91.8773L129.259 114.796L154.785 81.8615C157.413 78.4574 162.276 77.8263 165.67 80.4751C169.064 83.1032 169.684 87.9766 167.056 91.36L136.74 130.471C135.478 132.106 133.615 133.172 131.566 133.42C129.497 133.699 127.448 133.099 125.814 131.827L96.656 108.919L70.468 142.95C68.9367 144.936 66.6397 145.981 64.3116 145.981Z",fill:"white"}),e.jsxs("defs",{children:[e.jsxs("filter",{id:"filter0_f_13070_4340",x:"-9.69949",y:"-232.433",width:"295.688",height:"468.268",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"46.36",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter1_f_13070_4340",x:"-393.791",y:"-170.9",width:"631.774",height:"527.092",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"70.5779",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter2_f_13070_4340",x:"51.233",y:"-16.4296",width:"270.498",height:"428.779",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"42.4504",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter3_f_13070_4340",x:"8.12459",y:"-56.8542",width:"322.143",height:"243.969",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"42.4504",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter4_f_13070_4340",x:"-125.207",y:"61.5247",width:"418.363",height:"262.778",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"42.4504",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter5_f_13070_4340",x:"-30.0833",y:"-232.433",width:"316.072",height:"468.268",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"46.36",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter6_f_13070_4340",x:"-393.791",y:"-171.355",width:"631.774",height:"527.546",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"70.5779",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter7_f_13070_4340",x:"32.3145",y:"-16.4296",width:"289.417",height:"428.779",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"42.4504",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter8_f_13070_4340",x:"8.12459",y:"-56.8542",width:"322.142",height:"246.642",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"42.4504",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter9_f_13070_4340",x:"-125.207",y:"61.5247",width:"418.363",height:"263.378",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"42.4504",result:"effect1_foregroundBlur_13070_4340"})]})]})]}),n=s.forwardRef((r,i)=>e.jsx(t,{ref:i,...r}));export{n as AIMLIcon};
1
+ import{j as e,c as l,r as s}from"./index-BD7Io1hL.js";const t=({className:r,...i})=>e.jsxs("svg",{className:l("dark:invert",r),width:"225",height:"225",viewBox:"0 0 225 225",fill:"none",xmlns:"http://www.w3.org/2000/svg",...i,children:[e.jsx("mask",{id:"mask0_13070_4340",style:{maskType:"alpha"},maskUnits:"userSpaceOnUse",x:"0",y:"12",width:"225",height:"201",children:e.jsx("path",{d:"M221.23 100.528C225.475 107.88 225.475 116.937 221.23 124.289L177.213 200.528C172.969 207.88 165.125 212.408 156.636 212.408H68.6026C60.1138 212.408 52.2698 207.88 48.0254 200.528L4.00849 124.289C-0.235924 116.937 -0.235893 107.88 4.00852 100.528L48.0254 24.2887C52.2698 16.9372 60.1138 12.4084 68.6026 12.4084L156.636 12.4085C165.125 12.4085 172.969 16.9372 177.213 24.2887L221.23 100.528Z",fill:"#D9D9D9"})}),e.jsxs("g",{mask:"url(#mask0_13070_4340)",children:[e.jsx("g",{filter:"url(#filter0_f_13070_4340)",children:e.jsx("path",{d:"M165.65 134.568C255.877 91.3794 93.882 -221.746 120.117 -119.206C137.15 -52.6304 77.7037 -62.5848 83.7299 -25.8396C87.9511 -0.101322 88.9044 19.4797 85.795 34.529C82.048 52.6636 80.9887 83.384 89.784 99.6795C104.975 127.824 115.931 158.366 165.65 134.568Z",fill:"#D6FFF4"})}),e.jsx("g",{filter:"url(#filter1_f_13070_4340)",children:e.jsx("path",{d:"M-42.7886 -29.6695C-26.1866 -27.9249 -3.61291 -21.6434 28.8941 -7.51849C106.528 26.215 114.949 160.877 67.7629 202.317C22.3388 242.209 -288.768 175.806 -249.16 172.629C-56.6506 157.189 5.60256 124.472 -60.9868 48.8517C-77.0297 30.6332 -66.9309 -32.2064 -42.7886 -29.6695Z",fill:"#84DBFF"})}),e.jsx("g",{filter:"url(#filter2_f_13070_4340)",children:e.jsx("path",{d:"M211.54 319.622C294.158 280.076 145.824 -6.64398 169.846 87.2493C185.443 148.21 131.01 139.095 136.528 172.742C140.074 194.365 141.101 211.242 139.048 224.523C136.218 242.823 135.097 274.442 143.746 290.816C156.852 315.632 167.858 340.531 211.54 319.622Z",fill:"#FFBDF7"})}),e.jsx("g",{filter:"url(#filter3_f_13070_4340)",children:e.jsx("path",{d:"M235.875 39.3835C200.055 -8.7256 51.8499 113.382 104.046 88.866C137.935 72.949 140.641 108.159 159.807 101.321C164.007 99.8228 167.922 98.5641 171.584 97.5545C190.109 92.4472 233.488 87.3544 242.919 70.612C247.043 63.29 246.735 53.9698 235.875 39.3835Z",fill:"#FF4CE9"})}),e.jsx("g",{filter:"url(#filter4_f_13070_4340)",children:e.jsx("path",{d:"M202.147 159.126C168.49 102.066 -113.331 257.654 -22.2837 225.406C36.8296 204.469 25.3558 247.288 57.8261 238.086C79.9207 231.825 96.7819 228.505 109.681 228.432C125.904 228.34 150.315 227.197 164.296 218.969C190.597 203.492 221.619 192.136 202.147 159.126Z",fill:"#1C38FF"})}),e.jsx("path",{d:"M-16.6948 6.97169C-16.6948 -6.15092 -6.05688 -16.7888 7.06569 -16.7888H204.33C217.452 -16.7888 228.09 -6.15092 228.09 6.9717V215.178C228.09 228.301 217.452 238.939 204.33 238.939H7.0657C-6.05688 238.939 -16.6948 228.301 -16.6948 215.178V6.97169Z",fill:"white"})]}),e.jsx("mask",{id:"mask1_13070_4340",style:{maskType:"alpha"},maskUnits:"userSpaceOnUse",x:"0",y:"12",width:"225",height:"201",children:e.jsx("path",{d:"M221.23 100.528C225.475 107.88 225.475 116.937 221.23 124.289L177.213 200.528C172.969 207.88 165.125 212.408 156.636 212.408H68.6026C60.1138 212.408 52.2698 207.88 48.0254 200.528L4.00849 124.289C-0.235924 116.937 -0.235893 107.88 4.00852 100.528L48.0254 24.2887C52.2698 16.9372 60.1138 12.4084 68.6026 12.4084L156.636 12.4085C165.125 12.4085 172.969 16.9372 177.213 24.2887L221.23 100.528Z",fill:"#D9D9D9"})}),e.jsxs("g",{mask:"url(#mask1_13070_4340)",children:[e.jsx("g",{filter:"url(#filter5_f_13070_4340)",children:e.jsx("path",{d:"M165.65 134.568C255.877 91.3794 93.8815 -221.746 120.116 -119.206C137.15 -52.6303 77.7031 -62.5847 83.7294 -25.8395C92.2696 26.2346 87.4336 53.1043 62.6367 68.2335C102.986 89.1354 93.4683 169.118 165.65 134.568Z",fill:"#D6FFF4"})}),e.jsx("g",{filter:"url(#filter6_f_13070_4340)",children:e.jsx("path",{d:"M-126.644 -9.89283C-75.224 -3.16423 -93.0002 -60.4838 28.8942 -7.51843C106.528 26.215 114.949 160.877 67.7629 202.317C22.3388 242.209 -288.768 175.806 -249.16 172.629C-12.7415 153.667 27.2247 108.648 -126.644 -9.89283Z",fill:"#3CC6FF"})}),e.jsx("g",{filter:"url(#filter7_f_13070_4340)",children:e.jsx("path",{d:"M211.541 319.622C294.159 280.076 145.825 -6.64398 169.848 87.2493C185.445 148.21 131.011 139.095 136.529 172.742C144.349 220.425 139.921 245.028 117.215 258.882C154.162 278.021 145.447 351.259 211.541 319.622Z",fill:"#FFBDF7"})}),e.jsx("g",{filter:"url(#filter8_f_13070_4340)",children:e.jsx("path",{d:"M235.875 39.3835C200.055 -8.7256 51.8498 113.382 104.046 88.8661C137.935 72.9491 140.641 108.159 159.807 101.321C186.968 91.6309 202.245 91.9637 213.862 104.887C219.721 79.6947 264.53 77.8708 235.875 39.3835Z",fill:"#F900DA"})}),e.jsx("g",{filter:"url(#filter9_f_13070_4340)",children:e.jsx("path",{d:"M202.147 159.126C168.49 102.066 -113.331 257.654 -22.2837 225.406C36.8295 204.469 25.3557 247.288 57.8261 238.086C103.842 225.046 127.157 224.764 139.263 240.002C159.443 209.014 229.073 204.773 202.147 159.126Z",fill:"#1C38FF"})}),e.jsx("path",{d:"M229.228 -54.4146H-72.6978V254.311H229.228V-54.4146Z",fill:"#090F1D"})]}),e.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M64.3116 145.981C62.6561 145.981 60.9903 145.454 59.5831 144.377C56.1893 141.76 55.5478 136.886 58.1656 133.493L89.1338 93.2431C90.3961 91.598 92.2689 90.5322 94.3176 90.2736C96.4077 90.0045 98.4564 90.584 100.081 91.8773L129.259 114.796L154.785 81.8615C157.413 78.4574 162.276 77.8263 165.67 80.4751C169.064 83.1032 169.684 87.9766 167.056 91.36L136.74 130.471C135.478 132.106 133.615 133.172 131.566 133.42C129.497 133.699 127.448 133.099 125.814 131.827L96.656 108.919L70.468 142.95C68.9367 144.936 66.6397 145.981 64.3116 145.981Z",fill:"white"}),e.jsxs("defs",{children:[e.jsxs("filter",{id:"filter0_f_13070_4340",x:"-9.69949",y:"-232.433",width:"295.688",height:"468.268",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"46.36",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter1_f_13070_4340",x:"-393.791",y:"-170.9",width:"631.774",height:"527.092",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"70.5779",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter2_f_13070_4340",x:"51.233",y:"-16.4296",width:"270.498",height:"428.779",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"42.4504",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter3_f_13070_4340",x:"8.12459",y:"-56.8542",width:"322.143",height:"243.969",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"42.4504",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter4_f_13070_4340",x:"-125.207",y:"61.5247",width:"418.363",height:"262.778",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"42.4504",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter5_f_13070_4340",x:"-30.0833",y:"-232.433",width:"316.072",height:"468.268",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"46.36",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter6_f_13070_4340",x:"-393.791",y:"-171.355",width:"631.774",height:"527.546",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"70.5779",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter7_f_13070_4340",x:"32.3145",y:"-16.4296",width:"289.417",height:"428.779",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"42.4504",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter8_f_13070_4340",x:"8.12459",y:"-56.8542",width:"322.142",height:"246.642",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"42.4504",result:"effect1_foregroundBlur_13070_4340"})]}),e.jsxs("filter",{id:"filter9_f_13070_4340",x:"-125.207",y:"61.5247",width:"418.363",height:"263.378",filterUnits:"userSpaceOnUse",colorInterpolationFilters:"sRGB",children:[e.jsx("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),e.jsx("feBlend",{mode:"normal",in:"SourceGraphic",in2:"BackgroundImageFix",result:"shape"}),e.jsx("feGaussianBlur",{stdDeviation:"42.4504",result:"effect1_foregroundBlur_13070_4340"})]})]})]}),n=s.forwardRef((r,i)=>e.jsx(t,{ref:i,...r}));export{n as AIMLIcon};
@@ -1 +1 @@
1
- import{j as t,r as s}from"./index-BChjg6Az.js";const c=o=>t.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 24 24",...o,children:t.jsx("path",{d:"M10.802 17.77a.703.703 0 1 1-.002 1.406.703.703 0 0 1 .002-1.406m11.024-4.347a.703.703 0 1 1 .001-1.406.703.703 0 0 1-.001 1.406m0-2.876a2.176 2.176 0 0 0-2.174 2.174c0 .233.039.465.115.691l-7.181 3.823a2.165 2.165 0 0 0-1.784-.937c-.829 0-1.584.475-1.95 1.216l-6.451-3.402c-.682-.358-1.192-1.48-1.138-2.502.028-.533.212-.947.493-1.107.178-.1.392-.092.62.027l.042.023c1.71.9 7.304 3.847 7.54 3.956.363.169.565.237 1.185-.057l11.564-6.014c.17-.064.368-.227.368-.474 0-.342-.354-.477-.355-.477-.658-.315-1.669-.788-2.655-1.25-2.108-.987-4.497-2.105-5.546-2.655-.906-.474-1.635-.074-1.765.006l-.252.125C7.78 6.048 1.46 9.178 1.1 9.397.457 9.789.058 10.57.006 11.539c-.08 1.537.703 3.14 1.824 3.727l6.822 3.518a2.175 2.175 0 0 0 2.15 1.862 2.177 2.177 0 0 0 2.173-2.14l7.514-4.073c.38.298.853.461 1.337.461A2.176 2.176 0 0 0 24 12.72a2.176 2.176 0 0 0-2.174-2.174"})}),e=s.forwardRef((o,r)=>t.jsx(c,{ref:r,...o}));export{e as GitBookIcon};
1
+ import{j as t,r as s}from"./index-BD7Io1hL.js";const c=o=>t.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 24 24",...o,children:t.jsx("path",{d:"M10.802 17.77a.703.703 0 1 1-.002 1.406.703.703 0 0 1 .002-1.406m11.024-4.347a.703.703 0 1 1 .001-1.406.703.703 0 0 1-.001 1.406m0-2.876a2.176 2.176 0 0 0-2.174 2.174c0 .233.039.465.115.691l-7.181 3.823a2.165 2.165 0 0 0-1.784-.937c-.829 0-1.584.475-1.95 1.216l-6.451-3.402c-.682-.358-1.192-1.48-1.138-2.502.028-.533.212-.947.493-1.107.178-.1.392-.092.62.027l.042.023c1.71.9 7.304 3.847 7.54 3.956.363.169.565.237 1.185-.057l11.564-6.014c.17-.064.368-.227.368-.474 0-.342-.354-.477-.355-.477-.658-.315-1.669-.788-2.655-1.25-2.108-.987-4.497-2.105-5.546-2.655-.906-.474-1.635-.074-1.765.006l-.252.125C7.78 6.048 1.46 9.178 1.1 9.397.457 9.789.058 10.57.006 11.539c-.08 1.537.703 3.14 1.824 3.727l6.822 3.518a2.175 2.175 0 0 0 2.15 1.862 2.177 2.177 0 0 0 2.173-2.14l7.514-4.073c.38.298.853.461 1.337.461A2.176 2.176 0 0 0 24 12.72a2.176 2.176 0 0 0-2.174-2.174"})}),e=s.forwardRef((o,r)=>t.jsx(c,{ref:r,...o}));export{e as GitBookIcon};
@@ -1 +1 @@
1
- import{j as s,r as t}from"./index-BChjg6Az.js";const r=o=>s.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 800 800",width:"1em",height:"1em",...o,children:[s.jsxs("radialGradient",{id:"Facebook_Messenger_logo_2020_svg__a",cx:101.9,cy:809,r:1.1,gradientTransform:"matrix(800 0 0 -800 -81386 648000)",gradientUnits:"userSpaceOnUse",children:[s.jsx("stop",{offset:0,style:{stopColor:"#09f"}}),s.jsx("stop",{offset:.6,style:{stopColor:"#a033ff"}}),s.jsx("stop",{offset:.9,style:{stopColor:"#ff5280"}}),s.jsx("stop",{offset:1,style:{stopColor:"#ff7061"}})]}),s.jsx("path",{fill:"url(#Facebook_Messenger_logo_2020_svg__a)",d:"M400 0C174.7 0 0 165.1 0 388c0 116.6 47.8 217.4 125.6 287 6.5 5.8 10.5 14 10.7 22.8l2.2 71.2a32 32 0 0 0 44.9 28.3l79.4-35c6.7-3 14.3-3.5 21.4-1.6 36.5 10 75.3 15.4 115.8 15.4 225.3 0 400-165.1 400-388S625.3 0 400 0z"}),s.jsx("path",{fill:"#FFF",d:"m159.8 501.5 117.5-186.4a60 60 0 0 1 86.8-16l93.5 70.1a24 24 0 0 0 28.9-.1l126.2-95.8c16.8-12.8 38.8 7.4 27.6 25.3L522.7 484.9a60 60 0 0 1-86.8 16l-93.5-70.1a24 24 0 0 0-28.9.1l-126.2 95.8c-16.8 12.8-38.8-7.3-27.5-25.2z"})]}),l=t.forwardRef((o,e)=>s.jsx(r,{ref:e,...o}));export{l as FBIcon};
1
+ import{j as s,r as t}from"./index-BD7Io1hL.js";const r=o=>s.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 800 800",width:"1em",height:"1em",...o,children:[s.jsxs("radialGradient",{id:"Facebook_Messenger_logo_2020_svg__a",cx:101.9,cy:809,r:1.1,gradientTransform:"matrix(800 0 0 -800 -81386 648000)",gradientUnits:"userSpaceOnUse",children:[s.jsx("stop",{offset:0,style:{stopColor:"#09f"}}),s.jsx("stop",{offset:.6,style:{stopColor:"#a033ff"}}),s.jsx("stop",{offset:.9,style:{stopColor:"#ff5280"}}),s.jsx("stop",{offset:1,style:{stopColor:"#ff7061"}})]}),s.jsx("path",{fill:"url(#Facebook_Messenger_logo_2020_svg__a)",d:"M400 0C174.7 0 0 165.1 0 388c0 116.6 47.8 217.4 125.6 287 6.5 5.8 10.5 14 10.7 22.8l2.2 71.2a32 32 0 0 0 44.9 28.3l79.4-35c6.7-3 14.3-3.5 21.4-1.6 36.5 10 75.3 15.4 115.8 15.4 225.3 0 400-165.1 400-388S625.3 0 400 0z"}),s.jsx("path",{fill:"#FFF",d:"m159.8 501.5 117.5-186.4a60 60 0 0 1 86.8-16l93.5 70.1a24 24 0 0 0 28.9-.1l126.2-95.8c16.8-12.8 38.8 7.4 27.6 25.3L522.7 484.9a60 60 0 0 1-86.8 16l-93.5-70.1a24 24 0 0 0-28.9.1l-126.2 95.8c-16.8 12.8-38.8-7.3-27.5-25.2z"})]}),l=t.forwardRef((o,e)=>s.jsx(r,{ref:e,...o}));export{l as FBIcon};
@@ -1 +1 @@
1
- import{j as r,r as e}from"./index-BChjg6Az.js";const s=o=>r.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 18 18",fill:"none",...o,children:[r.jsx("path",{d:"M15.75 15.75L12.525 12.525L15.75 15.75Z",fill:"currentColor"}),r.jsx("path",{d:"M15.75 15.75L12.525 12.525M2.43903 6.75C3.1051 4.16216 5.45425 2.25 8.25001 2.25C11.5637 2.25 14.25 4.93629 14.25 8.25C14.25 11.0458 12.3378 13.3949 9.75001 14.061M2.25 14.25V11.25M2.25 14.25H5.25M2.25 14.25L7.5 9",stroke:"currentColor","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"})]}),c=e.forwardRef((o,t)=>r.jsx(s,{ref:t,...o}));export{c as SearchVectorIcon};
1
+ import{j as r,r as e}from"./index-BD7Io1hL.js";const s=o=>r.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 18 18",fill:"none",...o,children:[r.jsx("path",{d:"M15.75 15.75L12.525 12.525L15.75 15.75Z",fill:"currentColor"}),r.jsx("path",{d:"M15.75 15.75L12.525 12.525M2.43903 6.75C3.1051 4.16216 5.45425 2.25 8.25001 2.25C11.5637 2.25 14.25 4.93629 14.25 8.25C14.25 11.0458 12.3378 13.3949 9.75001 14.061M2.25 14.25V11.25M2.25 14.25H5.25M2.25 14.25L7.5 9",stroke:"currentColor","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"})]}),c=e.forwardRef((o,t)=>r.jsx(s,{ref:t,...o}));export{c as SearchVectorIcon};
@@ -1 +1 @@
1
- import{j as l,r as c}from"./index-BChjg6Az.js";const t=o=>l.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48",...o,children:[l.jsx("rect",{width:"22",height:"22",x:"13",y:"13",fill:"#fff"}),l.jsx("polygon",{fill:"#1e88e5",points:"25.68,20.92 26.688,22.36 28.272,21.208 28.272,29.56 30,29.56 30,18.616 28.56,18.616"}),l.jsx("path",{fill:"#1e88e5",d:"M22.943,23.745c0.625-0.574,1.013-1.37,1.013-2.249c0-1.747-1.533-3.168-3.417-3.168 c-1.602,0-2.972,1.009-3.33,2.453l1.657,0.421c0.165-0.664,0.868-1.146,1.673-1.146c0.942,0,1.709,0.646,1.709,1.44 c0,0.794-0.767,1.44-1.709,1.44h-0.997v1.728h0.997c1.081,0,1.993,0.751,1.993,1.64c0,0.904-0.866,1.64-1.931,1.64 c-0.962,0-1.784-0.61-1.914-1.418L17,26.802c0.262,1.636,1.81,2.87,3.6,2.87c2.007,0,3.64-1.511,3.64-3.368 C24.24,25.281,23.736,24.363,22.943,23.745z"}),l.jsx("polygon",{fill:"#fbc02d",points:"34,42 14,42 13,38 14,34 34,34 35,38"}),l.jsx("polygon",{fill:"#4caf50",points:"38,35 42,34 42,14 38,13 34,14 34,34"}),l.jsx("path",{fill:"#1e88e5",d:"M34,14l1-4l-1-4H9C7.343,6,6,7.343,6,9v25l4,1l4-1V14H34z"}),l.jsx("polygon",{fill:"#e53935",points:"34,34 34,42 42,34"}),l.jsx("path",{fill:"#1565c0",d:"M39,6h-5v8h8V9C42,7.343,40.657,6,39,6z"}),l.jsx("path",{fill:"#1565c0",d:"M9,42h5v-8H6v5C6,40.657,7.343,42,9,42z"})]}),e=c.forwardRef((o,s)=>l.jsx(t,{ref:s,...o}));export{e as GooglecalendarIcon};
1
+ import{j as l,r as c}from"./index-BD7Io1hL.js";const t=o=>l.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 48 48",...o,children:[l.jsx("rect",{width:"22",height:"22",x:"13",y:"13",fill:"#fff"}),l.jsx("polygon",{fill:"#1e88e5",points:"25.68,20.92 26.688,22.36 28.272,21.208 28.272,29.56 30,29.56 30,18.616 28.56,18.616"}),l.jsx("path",{fill:"#1e88e5",d:"M22.943,23.745c0.625-0.574,1.013-1.37,1.013-2.249c0-1.747-1.533-3.168-3.417-3.168 c-1.602,0-2.972,1.009-3.33,2.453l1.657,0.421c0.165-0.664,0.868-1.146,1.673-1.146c0.942,0,1.709,0.646,1.709,1.44 c0,0.794-0.767,1.44-1.709,1.44h-0.997v1.728h0.997c1.081,0,1.993,0.751,1.993,1.64c0,0.904-0.866,1.64-1.931,1.64 c-0.962,0-1.784-0.61-1.914-1.418L17,26.802c0.262,1.636,1.81,2.87,3.6,2.87c2.007,0,3.64-1.511,3.64-3.368 C24.24,25.281,23.736,24.363,22.943,23.745z"}),l.jsx("polygon",{fill:"#fbc02d",points:"34,42 14,42 13,38 14,34 34,34 35,38"}),l.jsx("polygon",{fill:"#4caf50",points:"38,35 42,34 42,14 38,13 34,14 34,34"}),l.jsx("path",{fill:"#1e88e5",d:"M34,14l1-4l-1-4H9C7.343,6,6,7.343,6,9v25l4,1l4-1V14H34z"}),l.jsx("polygon",{fill:"#e53935",points:"34,34 34,42 42,34"}),l.jsx("path",{fill:"#1565c0",d:"M39,6h-5v8h8V9C42,7.343,40.657,6,39,6z"}),l.jsx("path",{fill:"#1565c0",d:"M9,42h5v-8H6v5C6,40.657,7.343,42,9,42z"})]}),e=c.forwardRef((o,s)=>l.jsx(t,{ref:s,...o}));export{e as GooglecalendarIcon};
@@ -1 +1 @@
1
- import{j as r,r as s}from"./index-BChjg6Az.js";const e=o=>r.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 18 18",fill:"none",...o,children:[r.jsx("path",{d:"M15.75 15.75L12.525 12.525L15.75 15.75Z",fill:"currentColor"}),r.jsx("path",{d:"M1.5 11.625C3.36396 11.625 4.875 10.114 4.875 8.25C4.875 10.114 6.38604 11.625 8.25 11.625C6.38604 11.625 4.875 13.136 4.875 15C4.875 13.136 3.36396 11.625 1.5 11.625Z",fill:"currentColor"}),r.jsx("path",{d:"M15.75 15.75L12.525 12.525M2.43903 6.75C3.10509 4.16216 5.45424 2.25 8.25 2.25C11.5637 2.25 14.25 4.93629 14.25 8.25C14.25 11.0458 12.3378 13.3949 9.75 14.061M4.875 8.25C4.875 10.114 3.36396 11.625 1.5 11.625C3.36396 11.625 4.875 13.136 4.875 15C4.875 13.136 6.38604 11.625 8.25 11.625C6.38604 11.625 4.875 10.114 4.875 8.25Z",stroke:"currentColor","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"})]}),C=s.forwardRef((o,t)=>r.jsx(e,{ref:t,...o}));export{C as SearchHybridIcon};
1
+ import{j as r,r as s}from"./index-BD7Io1hL.js";const e=o=>r.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 18 18",fill:"none",...o,children:[r.jsx("path",{d:"M15.75 15.75L12.525 12.525L15.75 15.75Z",fill:"currentColor"}),r.jsx("path",{d:"M1.5 11.625C3.36396 11.625 4.875 10.114 4.875 8.25C4.875 10.114 6.38604 11.625 8.25 11.625C6.38604 11.625 4.875 13.136 4.875 15C4.875 13.136 3.36396 11.625 1.5 11.625Z",fill:"currentColor"}),r.jsx("path",{d:"M15.75 15.75L12.525 12.525M2.43903 6.75C3.10509 4.16216 5.45424 2.25 8.25 2.25C11.5637 2.25 14.25 4.93629 14.25 8.25C14.25 11.0458 12.3378 13.3949 9.75 14.061M4.875 8.25C4.875 10.114 3.36396 11.625 1.5 11.625C3.36396 11.625 4.875 13.136 4.875 15C4.875 13.136 6.38604 11.625 8.25 11.625C6.38604 11.625 4.875 10.114 4.875 8.25Z",stroke:"currentColor","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"})]}),C=s.forwardRef((o,t)=>r.jsx(e,{ref:t,...o}));export{C as SearchHybridIcon};
@@ -1 +1 @@
1
- import{j as c,r}from"./index-BChjg6Az.js";const s=q=>c.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:"823",height:"807",viewBox:"0 0 823 807",...q,children:[c.jsx("path",{fill:"#EE2C8B",d:"m451 30 2.227 1.594C461.463 38.183 467.08 47.396 473 56l1.594 2.312c2.669 3.876 5.322 7.762 7.969 11.653 3.713 5.453 7.478 10.871 11.25 16.285a37210.514 37210.514 0 0 0 6.14 8.81q5.026 7.218 10.047 14.44l4 5.75 40 57.5 2.001 2.877q1.995 2.866 3.988 5.733 5.091 7.32 10.187 14.636c5.837 8.383 11.674 16.766 17.449 25.191 4.57 6.666 9.198 13.29 13.837 19.906 6.52 9.3 13.001 18.627 19.484 27.953q3.117 4.482 6.238 8.962c5.834 8.379 11.668 16.758 17.441 25.18 4.57 6.665 9.198 13.288 13.837 19.905 6.52 9.3 13.001 18.627 19.484 27.953q3.117 4.482 6.238 8.962c5.834 8.379 11.668 16.758 17.441 25.18 4.57 6.665 9.198 13.288 13.837 19.905 6.52 9.3 13.001 18.627 19.484 27.953q3.117 4.482 6.238 8.962c5.834 8.379 11.668 16.758 17.441 25.18a2035 2035 0 0 0 12.063 17.375c14.872 21.225 14.872 21.225 21.42 30.702q1.839 2.658 3.685 5.31C809.298 540 817 558.968 812.813 583.062c-1.319 6.836-3.477 12.834-6.813 18.938l-1.375 2.578c-8.507 15.073-22.217 26.158-38.77 31.422-5.58 1.46-11.108 2.529-16.855 3l-1.926.16c-18.082.783-36.106-6.549-49.886-17.91-7.241-6.766-12.611-15.118-18.188-23.25l-1.622-2.355a2641 2641 0 0 1-8.073-11.81c-3.332-4.89-6.718-9.741-10.117-14.585-9.663-13.772-19.3-27.561-28.813-41.437-4.57-6.666-9.198-13.29-13.837-19.906-6.52-9.3-13.001-18.627-19.484-27.953q-3.117-4.482-6.238-8.962c-5.834-8.379-11.668-16.758-17.441-25.18-4.57-6.665-9.198-13.288-13.837-19.905-6.52-9.3-13.001-18.627-19.484-27.953q-3.117-4.482-6.238-8.962c-5.834-8.379-11.668-16.758-17.441-25.18-4.57-6.665-9.198-13.288-13.837-19.905-6.52-9.3-13.001-18.627-19.484-27.953q-3.117-4.482-6.238-8.962c-11.473-16.476-11.473-16.476-16.231-23.42-1.741-2.54-3.49-5.075-5.239-7.611a863 863 0 0 1-2.813-4.125C444.018 259.285 435.899 248.007 422 241l-1.879-1.027c-7.75-3.633-18.27-3.348-26.246-.598C381.837 245.114 373.447 254.18 366 265l-1.467 2.114c-2.73 3.943-5.433 7.904-8.123 11.874-3.36 4.954-6.782 9.863-10.223 14.762-9.662 13.772-19.3 27.561-28.812 41.438-4.57 6.665-9.198 13.288-13.837 19.905-6.52 9.3-13.001 18.627-19.484 27.953q-3.117 4.482-6.238 8.962c-5.834 8.379-11.668 16.758-17.441 25.18-4.57 6.665-9.198 13.288-13.837 19.905-6.52 9.3-13.001 18.627-19.484 27.953q-3.117 4.482-6.238 8.962c-5.834 8.379-11.668 16.758-17.441 25.18-4.57 6.665-9.198 13.288-13.837 19.905-6.52 9.3-13.001 18.627-19.484 27.953q-3.117 4.482-6.238 8.962c-5.834 8.379-11.667 16.758-17.441 25.18Q143.69 585.096 141 589l-1.68 2.442C123.518 614.38 108.918 633 79.855 638.398c-17.483 2.552-35.658-1.514-50.261-11.457-16.17-12.103-25.2-27.585-29.281-47.254-2.315-27.315 8.336-45.857 23.585-67.304a856 856 0 0 0 8.477-12.196 1951 1951 0 0 1 12.313-17.75 9072 9072 0 0 0 21.258-30.483q3.117-4.482 6.238-8.962c5.834-8.379 11.668-16.758 17.441-25.18 4.57-6.665 9.198-13.288 13.837-19.905 6.52-9.3 13.001-18.627 19.484-27.953q3.117-4.482 6.238-8.962c5.834-8.379 11.668-16.758 17.441-25.18 4.57-6.665 9.198-13.288 13.837-19.905 6.52-9.3 13.001-18.627 19.484-27.953q3.117-4.482 6.238-8.962c5.834-8.379 11.668-16.758 17.441-25.18 4.57-6.665 9.198-13.288 13.837-19.905 6.527-9.31 13.016-18.647 19.506-27.984a38524 38524 0 0 1 12.02-17.282q5.092-7.32 10.188-14.637c5.837-8.383 11.674-16.766 17.449-25.191 4.57-6.666 9.198-13.29 13.837-19.906 6.52-9.3 13.001-18.627 19.484-27.953q3.117-4.482 6.238-8.962c5.877-8.44 11.751-16.883 17.566-25.367q1.948-2.834 3.9-5.664 1.419-2.062 2.833-4.125c15.224-22.165 29.843-36.059 57.115-41.332C416.54 12.698 435.684 18.879 451 30"}),c.jsx("path",{fill:"#EE2C8A",d:"M460.543 655.941C476.174 669.038 488.656 688.385 491 709c1.912 26.065-2.94 48.653-20 69-14.01 16.165-34.113 26.37-55.375 28.75q-2.31.156-4.625.25l-2.117.121c-20.961.653-42.347-7.16-57.883-21.121l-2.785-2.5c-16.102-15.238-25.322-36.43-26.246-58.55.178-22.55 6.822-42.883 22.031-59.95.665-.76 1.33-1.519 2.016-2.3 9.578-10.271 21.872-16.981 34.984-21.7l2.855-1.031c26.5-7.725 55.232-.53 76.688 15.972"})]}),a=r.forwardRef((q,l)=>c.jsx(s,{ref:l,...q}));export{a as ArizeIcon};
1
+ import{j as c,r}from"./index-BD7Io1hL.js";const s=q=>c.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:"823",height:"807",viewBox:"0 0 823 807",...q,children:[c.jsx("path",{fill:"#EE2C8B",d:"m451 30 2.227 1.594C461.463 38.183 467.08 47.396 473 56l1.594 2.312c2.669 3.876 5.322 7.762 7.969 11.653 3.713 5.453 7.478 10.871 11.25 16.285a37210.514 37210.514 0 0 0 6.14 8.81q5.026 7.218 10.047 14.44l4 5.75 40 57.5 2.001 2.877q1.995 2.866 3.988 5.733 5.091 7.32 10.187 14.636c5.837 8.383 11.674 16.766 17.449 25.191 4.57 6.666 9.198 13.29 13.837 19.906 6.52 9.3 13.001 18.627 19.484 27.953q3.117 4.482 6.238 8.962c5.834 8.379 11.668 16.758 17.441 25.18 4.57 6.665 9.198 13.288 13.837 19.905 6.52 9.3 13.001 18.627 19.484 27.953q3.117 4.482 6.238 8.962c5.834 8.379 11.668 16.758 17.441 25.18 4.57 6.665 9.198 13.288 13.837 19.905 6.52 9.3 13.001 18.627 19.484 27.953q3.117 4.482 6.238 8.962c5.834 8.379 11.668 16.758 17.441 25.18a2035 2035 0 0 0 12.063 17.375c14.872 21.225 14.872 21.225 21.42 30.702q1.839 2.658 3.685 5.31C809.298 540 817 558.968 812.813 583.062c-1.319 6.836-3.477 12.834-6.813 18.938l-1.375 2.578c-8.507 15.073-22.217 26.158-38.77 31.422-5.58 1.46-11.108 2.529-16.855 3l-1.926.16c-18.082.783-36.106-6.549-49.886-17.91-7.241-6.766-12.611-15.118-18.188-23.25l-1.622-2.355a2641 2641 0 0 1-8.073-11.81c-3.332-4.89-6.718-9.741-10.117-14.585-9.663-13.772-19.3-27.561-28.813-41.437-4.57-6.666-9.198-13.29-13.837-19.906-6.52-9.3-13.001-18.627-19.484-27.953q-3.117-4.482-6.238-8.962c-5.834-8.379-11.668-16.758-17.441-25.18-4.57-6.665-9.198-13.288-13.837-19.905-6.52-9.3-13.001-18.627-19.484-27.953q-3.117-4.482-6.238-8.962c-5.834-8.379-11.668-16.758-17.441-25.18-4.57-6.665-9.198-13.288-13.837-19.905-6.52-9.3-13.001-18.627-19.484-27.953q-3.117-4.482-6.238-8.962c-11.473-16.476-11.473-16.476-16.231-23.42-1.741-2.54-3.49-5.075-5.239-7.611a863 863 0 0 1-2.813-4.125C444.018 259.285 435.899 248.007 422 241l-1.879-1.027c-7.75-3.633-18.27-3.348-26.246-.598C381.837 245.114 373.447 254.18 366 265l-1.467 2.114c-2.73 3.943-5.433 7.904-8.123 11.874-3.36 4.954-6.782 9.863-10.223 14.762-9.662 13.772-19.3 27.561-28.812 41.438-4.57 6.665-9.198 13.288-13.837 19.905-6.52 9.3-13.001 18.627-19.484 27.953q-3.117 4.482-6.238 8.962c-5.834 8.379-11.668 16.758-17.441 25.18-4.57 6.665-9.198 13.288-13.837 19.905-6.52 9.3-13.001 18.627-19.484 27.953q-3.117 4.482-6.238 8.962c-5.834 8.379-11.668 16.758-17.441 25.18-4.57 6.665-9.198 13.288-13.837 19.905-6.52 9.3-13.001 18.627-19.484 27.953q-3.117 4.482-6.238 8.962c-5.834 8.379-11.667 16.758-17.441 25.18Q143.69 585.096 141 589l-1.68 2.442C123.518 614.38 108.918 633 79.855 638.398c-17.483 2.552-35.658-1.514-50.261-11.457-16.17-12.103-25.2-27.585-29.281-47.254-2.315-27.315 8.336-45.857 23.585-67.304a856 856 0 0 0 8.477-12.196 1951 1951 0 0 1 12.313-17.75 9072 9072 0 0 0 21.258-30.483q3.117-4.482 6.238-8.962c5.834-8.379 11.668-16.758 17.441-25.18 4.57-6.665 9.198-13.288 13.837-19.905 6.52-9.3 13.001-18.627 19.484-27.953q3.117-4.482 6.238-8.962c5.834-8.379 11.668-16.758 17.441-25.18 4.57-6.665 9.198-13.288 13.837-19.905 6.52-9.3 13.001-18.627 19.484-27.953q3.117-4.482 6.238-8.962c5.834-8.379 11.668-16.758 17.441-25.18 4.57-6.665 9.198-13.288 13.837-19.905 6.527-9.31 13.016-18.647 19.506-27.984a38524 38524 0 0 1 12.02-17.282q5.092-7.32 10.188-14.637c5.837-8.383 11.674-16.766 17.449-25.191 4.57-6.666 9.198-13.29 13.837-19.906 6.52-9.3 13.001-18.627 19.484-27.953q3.117-4.482 6.238-8.962c5.877-8.44 11.751-16.883 17.566-25.367q1.948-2.834 3.9-5.664 1.419-2.062 2.833-4.125c15.224-22.165 29.843-36.059 57.115-41.332C416.54 12.698 435.684 18.879 451 30"}),c.jsx("path",{fill:"#EE2C8A",d:"M460.543 655.941C476.174 669.038 488.656 688.385 491 709c1.912 26.065-2.94 48.653-20 69-14.01 16.165-34.113 26.37-55.375 28.75q-2.31.156-4.625.25l-2.117.121c-20.961.653-42.347-7.16-57.883-21.121l-2.785-2.5c-16.102-15.238-25.322-36.43-26.246-58.55.178-22.55 6.822-42.883 22.031-59.95.665-.76 1.33-1.519 2.016-2.3 9.578-10.271 21.872-16.981 34.984-21.7l2.855-1.031c26.5-7.725 55.232-.53 76.688 15.972"})]}),a=r.forwardRef((q,l)=>c.jsx(s,{ref:l,...q}));export{a as ArizeIcon};
@@ -1 +1 @@
1
- import{j as c,r}from"./index-BChjg6Az.js";const s=t=>c.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"8.4 8.4 51.2 51.2",...t,children:c.jsx("path",{fill:"#0071BA",d:"M34 8.4C19.813 8.4 8.4 19.813 8.4 34S19.813 59.6 34 59.6 59.6 48.187 59.6 34 48.187 8.4 34 8.4zm9.493 13.226c.64.32 1.28.747 1.707 1.173 1.173 1.173 1.6 2.24 1.28 3.2l-5.44 7.467c-.106.32-.106 1.066 0 1.387l5.333 7.253c.107.32.213.96.107 1.28-.854 1.6-2.348 2.773-3.84 3.307-.32 0-.534 0-.747-.106l-7.253-5.333c-.32-.214-.854-.214-1.281-.107l-7.573 5.547c-.64.213-1.173.106-1.813-.32-1.387-.96-2.347-2.133-2.667-3.413 0-.427 0-.533.213-.747l5.333-7.359a1.705 1.705 0 0 0-.213-1.6l-5.12-6.934c-.106-.106-.106-.32-.213-.533.107-2.027 1.6-3.093 3.307-4.267.32-.107.854-.107 1.173 0l7.36 5.546c.427.107 1.174.107 1.494-.106L42 21.626c.533-.213.96-.106 1.387 0h.106z"})}),l=r.forwardRef((t,o)=>c.jsx(s,{ref:o,...t}));export{l as IFixIcon};
1
+ import{j as c,r}from"./index-BD7Io1hL.js";const s=t=>c.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"8.4 8.4 51.2 51.2",...t,children:c.jsx("path",{fill:"#0071BA",d:"M34 8.4C19.813 8.4 8.4 19.813 8.4 34S19.813 59.6 34 59.6 59.6 48.187 59.6 34 48.187 8.4 34 8.4zm9.493 13.226c.64.32 1.28.747 1.707 1.173 1.173 1.173 1.6 2.24 1.28 3.2l-5.44 7.467c-.106.32-.106 1.066 0 1.387l5.333 7.253c.107.32.213.96.107 1.28-.854 1.6-2.348 2.773-3.84 3.307-.32 0-.534 0-.747-.106l-7.253-5.333c-.32-.214-.854-.214-1.281-.107l-7.573 5.547c-.64.213-1.173.106-1.813-.32-1.387-.96-2.347-2.133-2.667-3.413 0-.427 0-.533.213-.747l5.333-7.359a1.705 1.705 0 0 0-.213-1.6l-5.12-6.934c-.106-.106-.106-.32-.213-.533.107-2.027 1.6-3.093 3.307-4.267.32-.107.854-.107 1.173 0l7.36 5.546c.427.107 1.174.107 1.494-.106L42 21.626c.533-.213.96-.106 1.387 0h.106z"})}),l=r.forwardRef((t,o)=>c.jsx(s,{ref:o,...t}));export{l as IFixIcon};
@@ -1 +1 @@
1
- import{O as I,Q as x,R as a,T as U,V as P,W as C,X as h,Y as j,r,Z as E,_ as D,a0 as F,a1 as R,j as i,a2 as b}from"./index-BChjg6Az.js";var u,L=new Uint8Array(16);function O(){if(!u&&(u=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!u))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return u(L)}var V=typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto);const g={randomUUID:V};function k(s,e,c){if(g.randomUUID&&!s)return g.randomUUID();s=s||{};var n=s.random||(s.rng||O)();return n[6]=n[6]&15|64,n[8]=n[8]&63|128,I(n)}function v(){x();const s=a(t=>t.setCurrentFlow),e=a(t=>t.currentFlow),c=U(t=>t.setClientId),{id:n}=P(),{mutateAsync:p}=C(),l=h(),m=a(t=>t.currentFlowId),f=a(t=>t.setIsLoading),y=j(t=>t.setPlaygroundPage);async function w(){try{return await p({id:n,public:!0})}catch(t){console.error(t),l("/")}}return r.useEffect(()=>{(async()=>{if(f(!0),m===""){const o=await w();o?s(o):l("/")}})(),f(!1)},[n]),r.useEffect(()=>{n&&E("Playground Page Loaded",{}),y(!0)},[]),r.useEffect(()=>{var t;if(document.title=(e==null?void 0:e.name)||"Langflow",e!=null&&e.data){const{inputs:o,outputs:d}=D(((t=e==null?void 0:e.data)==null?void 0:t.nodes)||[]);(o.length===0&&d.length===0||(e==null?void 0:e.access_type)!=="PUBLIC")&&l("/")}},[e]),r.useEffect(()=>{const t=F("client_id");if(t)c(t);else{const o=k(),d={secure:window.location.protocol==="https:",sameSite:"Strict"};R("client_id",o,d),c(o)}},[]),i.jsx("div",{className:"flex h-full w-full flex-col items-center justify-center align-middle",children:e&&i.jsx(b,{open:!0,setOpen:()=>{},isPlayground:!0,playgroundPage:!0,children:i.jsx(i.Fragment,{})})})}export{v as default};
1
+ import{O as I,Q as x,R as a,T as U,V as P,W as C,X as h,Y as j,r,Z as E,_ as D,a0 as F,a1 as R,j as i,a2 as b}from"./index-BD7Io1hL.js";var u,L=new Uint8Array(16);function O(){if(!u&&(u=typeof crypto<"u"&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto),!u))throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return u(L)}var V=typeof crypto<"u"&&crypto.randomUUID&&crypto.randomUUID.bind(crypto);const g={randomUUID:V};function k(s,e,c){if(g.randomUUID&&!s)return g.randomUUID();s=s||{};var n=s.random||(s.rng||O)();return n[6]=n[6]&15|64,n[8]=n[8]&63|128,I(n)}function v(){x();const s=a(t=>t.setCurrentFlow),e=a(t=>t.currentFlow),c=U(t=>t.setClientId),{id:n}=P(),{mutateAsync:p}=C(),l=h(),m=a(t=>t.currentFlowId),f=a(t=>t.setIsLoading),y=j(t=>t.setPlaygroundPage);async function w(){try{return await p({id:n,public:!0})}catch(t){console.error(t),l("/")}}return r.useEffect(()=>{(async()=>{if(f(!0),m===""){const o=await w();o?s(o):l("/")}})(),f(!1)},[n]),r.useEffect(()=>{n&&E("Playground Page Loaded",{}),y(!0)},[]),r.useEffect(()=>{var t;if(document.title=(e==null?void 0:e.name)||"Langflow",e!=null&&e.data){const{inputs:o,outputs:d}=D(((t=e==null?void 0:e.data)==null?void 0:t.nodes)||[]);(o.length===0&&d.length===0||(e==null?void 0:e.access_type)!=="PUBLIC")&&l("/")}},[e]),r.useEffect(()=>{const t=F("client_id");if(t)c(t);else{const o=k(),d={secure:window.location.protocol==="https:",sameSite:"Strict"};R("client_id",o,d),c(o)}},[]),i.jsx("div",{className:"flex h-full w-full flex-col items-center justify-center align-middle",children:e&&i.jsx(b,{open:!0,setOpen:()=>{},isPlayground:!0,playgroundPage:!0,children:i.jsx(i.Fragment,{})})})}export{v as default};
@@ -1 +1 @@
1
- import{j as c,r as x}from"./index-BChjg6Az.js";const i=l=>c.jsxs("svg",{viewBox:"0 0 32 32",width:"1em",height:"1em",...l,children:[c.jsx("path",{fill:"#80868b",d:"M26.69 18.53a1 1 0 0 0-1.4-.22L16 25.17v.29a1 1 0 1 1 0 1.91v.05a1 1 0 0 0 .6-.19l9.88-7.3a1 1 0 0 0 .21-1.4z"}),c.jsx("path",{fill:"#9ba0a5",d:"M16 27.37a1 1 0 1 1 0-1.91v-.29l-9.29-6.86a1 1 0 0 0-1.4.22 1 1 0 0 0 .21 1.4l9.89 7.3a1 1 0 0 0 .59.19v-.05z"}),c.jsx("path",{fill:"#606368",d:"M16 24.46a2 2 0 1 0 2 2 2 2 0 0 0-2-2zm0 2.91a1 1 0 1 1 1-.95 1 1 0 0 1-1 .95z"}),c.jsx("path",{fill:"#9ba0a5",d:"M8 8.14a1 1 0 0 1-1-1V4.63a1 1 0 1 1 2 0v2.51a1 1 0 0 1-1 1z"}),c.jsx("circle",{cx:7.97,cy:16,r:1.01,fill:"#9ba0a5"}),c.jsx("circle",{cx:7.97,cy:13.05,r:1.01,fill:"#9ba0a5"}),c.jsx("circle",{cx:7.97,cy:10.09,r:1.01,fill:"#9ba0a5"}),c.jsx("path",{fill:"#606368",d:"M24 11.07a1 1 0 0 1-1-1V7.55a1 1 0 0 1 2 0v2.52a1 1 0 0 1-1 1z"}),c.jsx("circle",{cx:24.03,cy:16.01,r:1.01,fill:"#606368"}),c.jsx("circle",{cx:24.03,cy:13.02,r:1.01,fill:"#606368"}),c.jsx("circle",{cx:24.03,cy:4.63,r:1.01,fill:"#606368"}),c.jsx("path",{fill:"#80868b",d:"M16 20a1 1 0 0 1-1-1v-2.54a1 1 0 0 1 2 0V19a1 1 0 0 1-1 1z"}),c.jsx("circle",{cx:16,cy:21.93,r:1.01,fill:"#80868b"}),c.jsx("circle",{cx:16,cy:13.51,r:1.01,fill:"#80868b"}),c.jsx("circle",{cx:16,cy:10.56,r:1.01,fill:"#80868b"}),c.jsx("path",{fill:"#606368",d:"M20 14.05a1 1 0 0 1-1-1v-2.51a1 1 0 1 1 2 0v2.51a1 1 0 0 1-1 1z"}),c.jsx("circle",{cx:20.02,cy:7.58,r:1.01,fill:"#606368"}),c.jsx("circle",{cx:20.02,cy:18.92,r:1.01,fill:"#606368"}),c.jsx("circle",{cx:20.02,cy:15.97,r:1.01,fill:"#606368"}),c.jsx("circle",{cx:11.98,cy:18.92,r:1.01,fill:"#9ba0a5"}),c.jsx("circle",{cx:11.98,cy:10.56,r:1.01,fill:"#9ba0a5"}),c.jsx("circle",{cx:11.98,cy:7.58,r:1.01,fill:"#9ba0a5"}),c.jsx("path",{fill:"#9ba0a5",d:"M12 17a1 1 0 0 1-1-1v-2.54a1 1 0 0 1 2 0V16a1 1 0 0 1-1 1z"})]}),s=x.forwardRef((l,a)=>c.jsx(i,{ref:a,...l}));export{s as VertexAIIcon};
1
+ import{j as c,r as x}from"./index-BD7Io1hL.js";const i=l=>c.jsxs("svg",{viewBox:"0 0 32 32",width:"1em",height:"1em",...l,children:[c.jsx("path",{fill:"#80868b",d:"M26.69 18.53a1 1 0 0 0-1.4-.22L16 25.17v.29a1 1 0 1 1 0 1.91v.05a1 1 0 0 0 .6-.19l9.88-7.3a1 1 0 0 0 .21-1.4z"}),c.jsx("path",{fill:"#9ba0a5",d:"M16 27.37a1 1 0 1 1 0-1.91v-.29l-9.29-6.86a1 1 0 0 0-1.4.22 1 1 0 0 0 .21 1.4l9.89 7.3a1 1 0 0 0 .59.19v-.05z"}),c.jsx("path",{fill:"#606368",d:"M16 24.46a2 2 0 1 0 2 2 2 2 0 0 0-2-2zm0 2.91a1 1 0 1 1 1-.95 1 1 0 0 1-1 .95z"}),c.jsx("path",{fill:"#9ba0a5",d:"M8 8.14a1 1 0 0 1-1-1V4.63a1 1 0 1 1 2 0v2.51a1 1 0 0 1-1 1z"}),c.jsx("circle",{cx:7.97,cy:16,r:1.01,fill:"#9ba0a5"}),c.jsx("circle",{cx:7.97,cy:13.05,r:1.01,fill:"#9ba0a5"}),c.jsx("circle",{cx:7.97,cy:10.09,r:1.01,fill:"#9ba0a5"}),c.jsx("path",{fill:"#606368",d:"M24 11.07a1 1 0 0 1-1-1V7.55a1 1 0 0 1 2 0v2.52a1 1 0 0 1-1 1z"}),c.jsx("circle",{cx:24.03,cy:16.01,r:1.01,fill:"#606368"}),c.jsx("circle",{cx:24.03,cy:13.02,r:1.01,fill:"#606368"}),c.jsx("circle",{cx:24.03,cy:4.63,r:1.01,fill:"#606368"}),c.jsx("path",{fill:"#80868b",d:"M16 20a1 1 0 0 1-1-1v-2.54a1 1 0 0 1 2 0V19a1 1 0 0 1-1 1z"}),c.jsx("circle",{cx:16,cy:21.93,r:1.01,fill:"#80868b"}),c.jsx("circle",{cx:16,cy:13.51,r:1.01,fill:"#80868b"}),c.jsx("circle",{cx:16,cy:10.56,r:1.01,fill:"#80868b"}),c.jsx("path",{fill:"#606368",d:"M20 14.05a1 1 0 0 1-1-1v-2.51a1 1 0 1 1 2 0v2.51a1 1 0 0 1-1 1z"}),c.jsx("circle",{cx:20.02,cy:7.58,r:1.01,fill:"#606368"}),c.jsx("circle",{cx:20.02,cy:18.92,r:1.01,fill:"#606368"}),c.jsx("circle",{cx:20.02,cy:15.97,r:1.01,fill:"#606368"}),c.jsx("circle",{cx:11.98,cy:18.92,r:1.01,fill:"#9ba0a5"}),c.jsx("circle",{cx:11.98,cy:10.56,r:1.01,fill:"#9ba0a5"}),c.jsx("circle",{cx:11.98,cy:7.58,r:1.01,fill:"#9ba0a5"}),c.jsx("path",{fill:"#9ba0a5",d:"M12 17a1 1 0 0 1-1-1v-2.54a1 1 0 0 1 2 0V16a1 1 0 0 1-1 1z"})]}),s=x.forwardRef((l,a)=>c.jsx(i,{ref:a,...l}));export{s as VertexAIIcon};
@@ -1 +1 @@
1
- import{j as e,r as i}from"./index-BChjg6Az.js";const r=l=>e.jsx("svg",{viewBox:"0 0 129 91",version:"1.1",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},xmlns:"http://www.w3.org/2000/svg",preserveAspectRatio:"xMidYMid",...l,children:e.jsxs("g",{children:[e.jsx("rect",{x:"18.292",y:"0",width:"18.293",height:"18.123",style:{fill:"#ffd800",fillRule:"nonzero"}}),e.jsx("rect",{x:"91.473",y:"0",width:"18.293",height:"18.123",style:{fill:"#ffd800",fillRule:"nonzero"}}),e.jsx("rect",{x:"18.292",y:"18.121",width:"36.586",height:"18.123",style:{fill:"#ffaf00",fillRule:"nonzero"}}),e.jsx("rect",{x:"73.181",y:"18.121",width:"36.586",height:"18.123",style:{fill:"#ffaf00",fillRule:"nonzero"}}),e.jsx("rect",{x:"18.292",y:"36.243",width:"91.476",height:"18.122",style:{fill:"#ff8205",fillRule:"nonzero"}}),e.jsx("rect",{x:"18.292",y:"54.37",width:"18.293",height:"18.123",style:{fill:"#fa500f",fillRule:"nonzero"}}),e.jsx("rect",{x:"54.883",y:"54.37",width:"18.293",height:"18.123",style:{fill:"#fa500f",fillRule:"nonzero"}}),e.jsx("rect",{x:"91.473",y:"54.37",width:"18.293",height:"18.123",style:{fill:"#fa500f",fillRule:"nonzero"}}),e.jsx("rect",{x:"0",y:"72.504",width:"54.89",height:"18.123",style:{fill:"#e10500",fillRule:"nonzero"}}),e.jsx("rect",{x:"73.181",y:"72.504",width:"54.89",height:"18.123",style:{fill:"#e10500",fillRule:"nonzero"}})]})}),s=i.forwardRef((l,t)=>e.jsx(r,{ref:t,...l}));export{s as MistralIcon};
1
+ import{j as e,r as i}from"./index-BD7Io1hL.js";const r=l=>e.jsx("svg",{viewBox:"0 0 129 91",version:"1.1",style:{fillRule:"evenodd",clipRule:"evenodd",strokeLinejoin:"round",strokeMiterlimit:2},xmlns:"http://www.w3.org/2000/svg",preserveAspectRatio:"xMidYMid",...l,children:e.jsxs("g",{children:[e.jsx("rect",{x:"18.292",y:"0",width:"18.293",height:"18.123",style:{fill:"#ffd800",fillRule:"nonzero"}}),e.jsx("rect",{x:"91.473",y:"0",width:"18.293",height:"18.123",style:{fill:"#ffd800",fillRule:"nonzero"}}),e.jsx("rect",{x:"18.292",y:"18.121",width:"36.586",height:"18.123",style:{fill:"#ffaf00",fillRule:"nonzero"}}),e.jsx("rect",{x:"73.181",y:"18.121",width:"36.586",height:"18.123",style:{fill:"#ffaf00",fillRule:"nonzero"}}),e.jsx("rect",{x:"18.292",y:"36.243",width:"91.476",height:"18.122",style:{fill:"#ff8205",fillRule:"nonzero"}}),e.jsx("rect",{x:"18.292",y:"54.37",width:"18.293",height:"18.123",style:{fill:"#fa500f",fillRule:"nonzero"}}),e.jsx("rect",{x:"54.883",y:"54.37",width:"18.293",height:"18.123",style:{fill:"#fa500f",fillRule:"nonzero"}}),e.jsx("rect",{x:"91.473",y:"54.37",width:"18.293",height:"18.123",style:{fill:"#fa500f",fillRule:"nonzero"}}),e.jsx("rect",{x:"0",y:"72.504",width:"54.89",height:"18.123",style:{fill:"#e10500",fillRule:"nonzero"}}),e.jsx("rect",{x:"73.181",y:"72.504",width:"54.89",height:"18.123",style:{fill:"#e10500",fillRule:"nonzero"}})]})}),s=i.forwardRef((l,t)=>e.jsx(r,{ref:t,...l}));export{s as MistralIcon};
@@ -1,4 +1,4 @@
1
- import{j as n,r as i}from"./index-BChjg6Az.js";const l=C=>n.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1080 1080",...C,children:[n.jsx("g",{fill:"None",fillOpacity:"0.0",stroke:"#000000",strokeOpacity:"0.00",strokeWidth:"0.3",children:n.jsx("path",{d:`
1
+ import{j as n,r as i}from"./index-BD7Io1hL.js";const l=C=>n.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 1080 1080",...C,children:[n.jsx("g",{fill:"None",fillOpacity:"0.0",stroke:"#000000",strokeOpacity:"0.00",strokeWidth:"0.3",children:n.jsx("path",{d:`
2
2
  M 0.00 1080.00
3
3
  L 1080.00 1080.00
4
4
  L 1080.00 0.00
@@ -1 +1 @@
1
- import{j as C,r as o}from"./index-BChjg6Az.js";const t=e=>C.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 460 460",version:"1.1",...e,children:[C.jsx("path",{d:"M 293.250 65.728 C 295.313 65.944, 298.688 65.944, 300.750 65.728 C 302.813 65.513, 301.125 65.336, 297 65.336 C 292.875 65.336, 291.188 65.513, 293.250 65.728 M 263.264 66.718 C 264.784 66.947, 267.034 66.941, 268.264 66.704 C 269.494 66.467, 268.250 66.279, 265.500 66.286 C 262.750 66.294, 261.744 66.488, 263.264 66.718 M 410.250 137.031 C 409.012 137.529, 408 138.133, 408 138.374 C 408 139.118, 411.998 137.812, 412.575 136.879 C 413.211 135.850, 413.184 135.852, 410.250 137.031 M 287.768 146.725 C 289.565 146.947, 292.265 146.943, 293.768 146.715 C 295.271 146.486, 293.800 146.304, 290.500 146.310 C 287.200 146.315, 285.971 146.502, 287.768 146.725 M 298.269 146.693 C 299.242 146.947, 300.592 146.930, 301.269 146.656 C 301.946 146.382, 301.150 146.175, 299.500 146.195 C 297.850 146.215, 297.296 146.439, 298.269 146.693 M 304.250 146.689 C 305.212 146.941, 306.788 146.941, 307.750 146.689 C 308.712 146.438, 307.925 146.232, 306 146.232 C 304.075 146.232, 303.288 146.438, 304.250 146.689 M 11.269 181.693 C 12.242 181.947, 13.592 181.930, 14.269 181.656 C 14.946 181.382, 14.150 181.175, 12.500 181.195 C 10.850 181.215, 10.296 181.439, 11.269 181.693 M 330.872 182.750 C 329.680 184.271, 329.697 184.354, 331 183.384 C 331.825 182.771, 333.175 182.019, 334 181.713 C 335.255 181.249, 335.234 181.145, 333.872 181.079 C 332.977 181.036, 331.627 181.787, 330.872 182.750 M 153.861 208.059 L 151.500 210.119 154.250 208.444 C 155.762 207.523, 157 206.597, 157 206.385 C 157 205.604, 156.165 206.050, 153.861 208.059 M 84.433 292.891 C 85.146 294.045, 89 296.374, 89 295.650 C 89 295.419, 87.820 294.457, 86.377 293.511 C 84.934 292.566, 84.059 292.287, 84.433 292.891 M 277.250 300.716 C 278.762 300.945, 281.238 300.945, 282.750 300.716 C 284.262 300.487, 283.025 300.300, 280 300.300 C 276.975 300.300, 275.738 300.487, 277.250 300.716 M 293.250 300.716 C 294.762 300.945, 297.238 300.945, 298.750 300.716 C 300.262 300.487, 299.025 300.300, 296 300.300 C 292.975 300.300, 291.738 300.487, 293.250 300.716 M 108.911 308.337 C 110.373 310.157, 116 314.442, 116 313.735 C 116 313.515, 114.088 311.815, 111.750 309.957 C 109.412 308.100, 108.135 307.370, 108.911 308.337 M 119.615 316.179 C 124.047 319.526, 124.905 319.793, 121.539 316.777 C 119.868 315.279, 118.102 314.042, 117.615 314.027 C 117.128 314.012, 118.028 314.981, 119.615 316.179 M 126.433 320.891 C 127.146 322.045, 131 324.374, 131 323.650 C 131 323.419, 129.820 322.457, 128.377 321.511 C 126.934 320.566, 126.059 320.287, 126.433 320.891 M 137 328.500 C 138.292 329.875, 139.574 331, 139.849 331 C 140.124 331, 139.292 329.875, 138 328.500 C 136.708 327.125, 135.426 326, 135.151 326 C 134.876 326, 135.708 327.125, 137 328.500 M 163.722 347.050 C 164.944 348.337, 166.138 349.189, 166.374 348.944 C 166.611 348.700, 165.611 347.648, 164.152 346.606 L 161.500 344.712 163.722 347.050 M 168.083 349.303 C 168.313 349.469, 169.850 350.396, 171.500 351.362 L 174.500 353.119 172.139 351.059 C 170.841 349.927, 169.303 349, 168.723 349 C 168.142 349, 167.854 349.136, 168.083 349.303 M 175 353.417 C 175 353.629, 176.575 354.732, 178.500 355.867 C 180.425 357.003, 182 357.581, 182 357.151 C 182 356.722, 180.425 355.619, 178.500 354.701 C 176.575 353.783, 175 353.206, 175 353.417 M 204 367.383 C 204 367.594, 205.111 367.979, 206.470 368.239 C 207.828 368.499, 208.702 368.326, 208.411 367.856 C 207.899 367.027, 204 366.610, 204 367.383 M 285.250 382.689 C 286.212 382.941, 287.788 382.941, 288.750 382.689 C 289.712 382.438, 288.925 382.232, 287 382.232 C 285.075 382.232, 284.288 382.438, 285.250 382.689 M 292.269 382.693 C 293.242 382.947, 294.592 382.930, 295.269 382.656 C 295.946 382.382, 295.150 382.175, 293.500 382.195 C 291.850 382.215, 291.296 382.439, 292.269 382.693 M 298.750 382.706 C 299.988 382.944, 302.012 382.944, 303.250 382.706 C 304.488 382.467, 303.475 382.272, 301 382.272 C 298.525 382.272, 297.512 382.467, 298.750 382.706",stroke:"none",fill:"#94a4b4",fillRule:"evenodd"}),C.jsx("path",{d:"M 321 47.924 L 321 65.982 302.750 65.920 C 284.644 65.858, 259.802 66.742, 255 67.619 C 253.625 67.870, 249.967 68.509, 246.871 69.040 C 243.775 69.571, 236.575 71.351, 230.871 72.996 C 225.167 74.641, 219.760 75.990, 218.855 75.994 C 215.178 76.008, 176.440 93.760, 172 97.466 C 171.175 98.154, 167.288 100.602, 163.362 102.906 C 159.436 105.210, 155.429 107.973, 154.457 109.047 C 153.485 110.121, 152.182 111, 151.560 111 C 150.939 111, 149.096 112.122, 147.465 113.494 C 143.940 116.459, 131.570 125.325, 125.282 129.393 C 122.823 130.983, 119.404 133.571, 117.683 135.143 C 115.962 136.714, 114.236 138, 113.848 138 C 113.459 138, 107.413 141.825, 100.413 146.500 C 93.412 151.175, 87.310 155, 86.853 155 C 86.395 155, 82.861 157.025, 79 159.500 C 75.139 161.975, 71.346 164, 70.571 164 C 69.796 164, 67.888 164.669, 66.331 165.487 C 60.410 168.596, 53.667 171.150, 46.218 173.105 C 41.973 174.219, 37.150 175.525, 35.500 176.006 C 24.122 179.326, 12.511 181.951, 6.739 182.508 L -0.022 183.162 0.239 223.831 L 0.500 264.500 3 264.662 C 6.265 264.873, 15.915 266.830, 17 267.500 C 17.465 267.788, 19.793 268.259, 22.173 268.547 C 24.553 268.836, 27.175 269.197, 28 269.349 C 31.097 269.921, 41.539 273.218, 42.500 273.927 C 43.050 274.334, 47.100 275.683, 51.500 276.927 C 59.708 279.246, 78.234 288.031, 85.680 293.135 C 87.979 294.711, 90.529 296, 91.347 296 C 92.164 296, 92.983 296.343, 93.167 296.763 C 93.579 297.705, 103.757 305, 104.660 305 C 105.020 305, 107.779 306.901, 110.790 309.224 C 113.801 311.547, 117.088 313.909, 118.093 314.474 C 121.408 316.334, 135.437 326.305, 138.785 329.180 C 140.591 330.731, 142.629 332, 143.313 332 C 143.996 332, 145.316 332.888, 146.245 333.973 C 147.978 335.997, 162.611 345.898, 169.177 349.489 C 179.402 355.082, 181.540 356.322, 182 356.926 C 182.275 357.288, 184.419 358.202, 186.764 358.957 C 189.110 359.712, 191.527 360.930, 192.137 361.665 C 192.746 362.399, 193.759 363, 194.387 363 C 195.016 363, 197.209 363.900, 199.261 365 C 201.314 366.100, 204.029 367, 205.296 367 C 206.563 367, 208.028 367.376, 208.550 367.835 C 209.381 368.565, 218.655 372.336, 220 372.491 C 220.275 372.522, 222.525 373.097, 225 373.768 C 227.475 374.439, 230.850 375.179, 232.500 375.412 C 234.150 375.645, 235.500 375.910, 235.500 376.001 C 235.500 376.092, 236.400 376.321, 237.500 376.511 C 242.301 377.336, 245.671 377.967, 248 378.475 C 260.453 381.193, 269.970 381.876, 296.750 381.973 L 318 382.050 318 400.147 L 318 418.244 320.250 416.612 C 321.488 415.714, 324.975 413.719, 328 412.179 C 331.025 410.640, 335.525 408.059, 338 406.445 C 340.475 404.831, 344.300 402.574, 346.500 401.429 C 355.242 396.881, 359 394.592, 359 393.814 C 359 393.367, 359.839 393, 360.865 393 C 361.891 393, 363.874 392.100, 365.273 391 C 366.671 389.900, 368.307 389, 368.908 389 C 369.508 389, 370 388.550, 370 388 C 370 387.450, 370.620 387, 371.378 387 C 372.135 387, 373.315 386.325, 374 385.500 C 374.685 384.675, 375.860 384, 376.613 384 C 377.365 384, 380.880 382.015, 384.425 379.588 C 387.969 377.162, 391.911 374.850, 393.184 374.451 C 394.458 374.052, 397.381 372.438, 399.680 370.863 C 401.979 369.288, 404.252 368, 404.731 368 C 405.210 368, 408.372 366.200, 411.758 364 C 415.144 361.800, 418.346 360, 418.874 360 C 419.401 360, 419.983 359.662, 420.167 359.250 C 420.350 358.837, 422.525 357.490, 425 356.255 C 429.529 353.996, 433.074 351.926, 434 351 C 434.275 350.725, 436.300 349.626, 438.500 348.557 C 440.700 347.488, 443.963 345.552, 445.750 344.256 C 447.538 342.959, 450.639 341.213, 452.642 340.376 C 457.001 338.555, 456.475 337.769, 447.795 333.125 C 439.651 328.768, 437.567 327.575, 437 326.943 C 436.725 326.636, 432.915 324.434, 428.534 322.048 C 424.153 319.663, 419.959 317.102, 419.213 316.356 C 418.467 315.610, 417.144 315, 416.273 315 C 415.402 315, 413.296 313.943, 411.594 312.652 C 409.892 311.361, 405.575 308.727, 402 306.799 C 394.998 303.024, 387.379 298.561, 376.879 292.084 C 373.237 289.838, 369.562 288, 368.712 288 C 367.862 288, 367.017 287.662, 366.833 287.250 C 366.300 286.049, 355.686 279.351, 352.974 278.504 C 351.613 278.078, 350.275 277.432, 350 277.067 C 349.464 276.357, 341.878 271.778, 335.806 268.500 C 333.768 267.400, 329.222 264.813, 325.704 262.750 C 322.186 260.688, 319.014 259, 318.654 259 C 318.294 259, 318 268.176, 318 279.391 L 318 299.781 310.250 300.268 C 305.988 300.536, 294.850 300.593, 285.500 300.394 C 265.605 299.970, 266.752 300.043, 261 298.827 C 258.525 298.304, 254.700 297.649, 252.500 297.373 C 247.169 296.704, 238.432 294.232, 233.500 291.998 C 231.300 291.002, 226.918 289.047, 223.763 287.654 C 220.608 286.261, 216.558 284.025, 214.763 282.685 C 212.968 281.346, 209.860 279.490, 207.855 278.561 C 205.851 277.632, 202.404 275.326, 200.196 273.436 C 197.988 271.546, 195.832 270, 195.403 270 C 194.975 270, 192.047 267.975, 188.897 265.500 C 185.746 263.025, 182.736 261, 182.207 261 C 181.678 261, 180.728 260.377, 180.095 259.615 C 179.463 258.853, 175.780 256.106, 171.912 253.510 C 168.043 250.915, 163.714 247.713, 162.293 246.395 C 160.871 245.078, 159.148 244, 158.463 244 C 157.778 244, 155.045 242.204, 152.389 240.009 C 149.733 237.815, 146.171 235.360, 144.474 234.555 C 142.778 233.750, 139.652 231.710, 137.529 230.023 C 135.405 228.335, 132.618 226.691, 131.334 226.369 C 127.981 225.527, 128.419 224.531, 133.429 221.594 C 135.865 220.167, 138.453 218.431, 139.179 217.738 C 139.906 217.044, 141.625 215.980, 143 215.372 C 144.375 214.765, 147.680 212.604, 150.344 210.569 C 153.008 208.535, 156.945 205.954, 159.094 204.834 C 161.242 203.714, 163 202.434, 163 201.988 C 163 201.543, 164.913 200.251, 167.250 199.117 C 169.588 197.983, 172.022 196.213, 172.661 195.184 C 173.299 194.155, 175.324 192.543, 177.161 191.603 C 178.997 190.663, 182.300 188.554, 184.500 186.916 C 186.700 185.279, 189.625 183.183, 191 182.259 C 192.375 181.335, 196.053 178.649, 199.174 176.290 C 202.295 173.930, 205.332 172, 205.924 172 C 206.516 172, 207 171.618, 207 171.152 C 207 170.685, 208.800 169.492, 211 168.500 C 213.200 167.508, 215 166.376, 215 165.985 C 215 165.046, 235.604 154.900, 239.482 153.929 C 241.142 153.513, 245.200 152.424, 248.500 151.507 C 256.612 149.255, 260.270 148.498, 268.500 147.370 C 274.428 146.558, 304.036 146.100, 312.411 146.691 L 320.961 147.294 321.231 168.207 L 321.500 189.120 327.149 185.161 C 330.257 182.984, 334.194 180.897, 335.899 180.522 C 337.605 180.148, 339 179.522, 339 179.132 C 339 178.742, 341.587 176.914, 344.750 175.071 C 347.913 173.227, 352.750 170.373, 355.500 168.727 C 358.250 167.082, 363.425 164.153, 367 162.218 C 370.575 160.283, 374.892 157.643, 376.594 156.350 C 378.296 155.058, 380.379 154, 381.222 154 C 382.065 154, 383.315 153.325, 384 152.500 C 384.685 151.675, 385.710 151, 386.278 151 C 386.846 151, 388.732 149.916, 390.469 148.591 C 392.206 147.267, 395.383 145.449, 397.528 144.553 C 399.674 143.656, 401.671 142.602, 401.965 142.211 C 402.528 141.463, 403.841 140.687, 412.295 136.107 C 415.158 134.556, 419.250 132.098, 421.390 130.644 C 423.529 129.190, 426.079 128, 427.056 128 C 428.034 128, 428.983 127.644, 429.167 127.209 C 429.628 126.115, 438.476 120.271, 442.329 118.517 C 444.073 117.722, 447.750 115.686, 450.500 113.992 C 453.250 112.298, 456.283 110.655, 457.240 110.342 C 458.800 109.831, 458.746 109.588, 456.716 107.992 C 455.472 107.012, 451.314 104.508, 447.476 102.426 C 443.639 100.344, 438.700 97.447, 436.500 95.989 C 434.300 94.530, 431.714 93.051, 430.753 92.701 C 429.791 92.351, 426.520 90.475, 423.483 88.532 C 420.446 86.590, 417.624 85, 417.213 85 C 416.801 85, 414.758 83.840, 412.672 82.423 C 410.586 81.006, 405.419 78.019, 401.190 75.787 C 396.960 73.554, 393.259 71.356, 392.965 70.902 C 392.671 70.449, 390.421 69.136, 387.965 67.986 C 385.509 66.835, 381.475 64.569, 379 62.950 C 376.525 61.331, 372.954 59.289, 371.065 58.412 C 369.175 57.535, 364.981 55.059, 361.744 52.909 C 358.507 50.759, 355.416 49, 354.874 49 C 354.333 49, 351.240 47.200, 348 45 C 344.760 42.800, 341.693 41, 341.183 41 C 340.674 41, 336.887 38.800, 332.769 36.112 C 320.062 27.817, 321 26.875, 321 47.924",stroke:"none",fill:"#94a4bc",fillRule:"evenodd"})]}),s=o.forwardRef((e,M)=>C.jsx(t,{ref:M,...e}));export{s as OpenRouterIcon};
1
+ import{j as C,r as o}from"./index-BD7Io1hL.js";const t=e=>C.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 460 460",version:"1.1",...e,children:[C.jsx("path",{d:"M 293.250 65.728 C 295.313 65.944, 298.688 65.944, 300.750 65.728 C 302.813 65.513, 301.125 65.336, 297 65.336 C 292.875 65.336, 291.188 65.513, 293.250 65.728 M 263.264 66.718 C 264.784 66.947, 267.034 66.941, 268.264 66.704 C 269.494 66.467, 268.250 66.279, 265.500 66.286 C 262.750 66.294, 261.744 66.488, 263.264 66.718 M 410.250 137.031 C 409.012 137.529, 408 138.133, 408 138.374 C 408 139.118, 411.998 137.812, 412.575 136.879 C 413.211 135.850, 413.184 135.852, 410.250 137.031 M 287.768 146.725 C 289.565 146.947, 292.265 146.943, 293.768 146.715 C 295.271 146.486, 293.800 146.304, 290.500 146.310 C 287.200 146.315, 285.971 146.502, 287.768 146.725 M 298.269 146.693 C 299.242 146.947, 300.592 146.930, 301.269 146.656 C 301.946 146.382, 301.150 146.175, 299.500 146.195 C 297.850 146.215, 297.296 146.439, 298.269 146.693 M 304.250 146.689 C 305.212 146.941, 306.788 146.941, 307.750 146.689 C 308.712 146.438, 307.925 146.232, 306 146.232 C 304.075 146.232, 303.288 146.438, 304.250 146.689 M 11.269 181.693 C 12.242 181.947, 13.592 181.930, 14.269 181.656 C 14.946 181.382, 14.150 181.175, 12.500 181.195 C 10.850 181.215, 10.296 181.439, 11.269 181.693 M 330.872 182.750 C 329.680 184.271, 329.697 184.354, 331 183.384 C 331.825 182.771, 333.175 182.019, 334 181.713 C 335.255 181.249, 335.234 181.145, 333.872 181.079 C 332.977 181.036, 331.627 181.787, 330.872 182.750 M 153.861 208.059 L 151.500 210.119 154.250 208.444 C 155.762 207.523, 157 206.597, 157 206.385 C 157 205.604, 156.165 206.050, 153.861 208.059 M 84.433 292.891 C 85.146 294.045, 89 296.374, 89 295.650 C 89 295.419, 87.820 294.457, 86.377 293.511 C 84.934 292.566, 84.059 292.287, 84.433 292.891 M 277.250 300.716 C 278.762 300.945, 281.238 300.945, 282.750 300.716 C 284.262 300.487, 283.025 300.300, 280 300.300 C 276.975 300.300, 275.738 300.487, 277.250 300.716 M 293.250 300.716 C 294.762 300.945, 297.238 300.945, 298.750 300.716 C 300.262 300.487, 299.025 300.300, 296 300.300 C 292.975 300.300, 291.738 300.487, 293.250 300.716 M 108.911 308.337 C 110.373 310.157, 116 314.442, 116 313.735 C 116 313.515, 114.088 311.815, 111.750 309.957 C 109.412 308.100, 108.135 307.370, 108.911 308.337 M 119.615 316.179 C 124.047 319.526, 124.905 319.793, 121.539 316.777 C 119.868 315.279, 118.102 314.042, 117.615 314.027 C 117.128 314.012, 118.028 314.981, 119.615 316.179 M 126.433 320.891 C 127.146 322.045, 131 324.374, 131 323.650 C 131 323.419, 129.820 322.457, 128.377 321.511 C 126.934 320.566, 126.059 320.287, 126.433 320.891 M 137 328.500 C 138.292 329.875, 139.574 331, 139.849 331 C 140.124 331, 139.292 329.875, 138 328.500 C 136.708 327.125, 135.426 326, 135.151 326 C 134.876 326, 135.708 327.125, 137 328.500 M 163.722 347.050 C 164.944 348.337, 166.138 349.189, 166.374 348.944 C 166.611 348.700, 165.611 347.648, 164.152 346.606 L 161.500 344.712 163.722 347.050 M 168.083 349.303 C 168.313 349.469, 169.850 350.396, 171.500 351.362 L 174.500 353.119 172.139 351.059 C 170.841 349.927, 169.303 349, 168.723 349 C 168.142 349, 167.854 349.136, 168.083 349.303 M 175 353.417 C 175 353.629, 176.575 354.732, 178.500 355.867 C 180.425 357.003, 182 357.581, 182 357.151 C 182 356.722, 180.425 355.619, 178.500 354.701 C 176.575 353.783, 175 353.206, 175 353.417 M 204 367.383 C 204 367.594, 205.111 367.979, 206.470 368.239 C 207.828 368.499, 208.702 368.326, 208.411 367.856 C 207.899 367.027, 204 366.610, 204 367.383 M 285.250 382.689 C 286.212 382.941, 287.788 382.941, 288.750 382.689 C 289.712 382.438, 288.925 382.232, 287 382.232 C 285.075 382.232, 284.288 382.438, 285.250 382.689 M 292.269 382.693 C 293.242 382.947, 294.592 382.930, 295.269 382.656 C 295.946 382.382, 295.150 382.175, 293.500 382.195 C 291.850 382.215, 291.296 382.439, 292.269 382.693 M 298.750 382.706 C 299.988 382.944, 302.012 382.944, 303.250 382.706 C 304.488 382.467, 303.475 382.272, 301 382.272 C 298.525 382.272, 297.512 382.467, 298.750 382.706",stroke:"none",fill:"#94a4b4",fillRule:"evenodd"}),C.jsx("path",{d:"M 321 47.924 L 321 65.982 302.750 65.920 C 284.644 65.858, 259.802 66.742, 255 67.619 C 253.625 67.870, 249.967 68.509, 246.871 69.040 C 243.775 69.571, 236.575 71.351, 230.871 72.996 C 225.167 74.641, 219.760 75.990, 218.855 75.994 C 215.178 76.008, 176.440 93.760, 172 97.466 C 171.175 98.154, 167.288 100.602, 163.362 102.906 C 159.436 105.210, 155.429 107.973, 154.457 109.047 C 153.485 110.121, 152.182 111, 151.560 111 C 150.939 111, 149.096 112.122, 147.465 113.494 C 143.940 116.459, 131.570 125.325, 125.282 129.393 C 122.823 130.983, 119.404 133.571, 117.683 135.143 C 115.962 136.714, 114.236 138, 113.848 138 C 113.459 138, 107.413 141.825, 100.413 146.500 C 93.412 151.175, 87.310 155, 86.853 155 C 86.395 155, 82.861 157.025, 79 159.500 C 75.139 161.975, 71.346 164, 70.571 164 C 69.796 164, 67.888 164.669, 66.331 165.487 C 60.410 168.596, 53.667 171.150, 46.218 173.105 C 41.973 174.219, 37.150 175.525, 35.500 176.006 C 24.122 179.326, 12.511 181.951, 6.739 182.508 L -0.022 183.162 0.239 223.831 L 0.500 264.500 3 264.662 C 6.265 264.873, 15.915 266.830, 17 267.500 C 17.465 267.788, 19.793 268.259, 22.173 268.547 C 24.553 268.836, 27.175 269.197, 28 269.349 C 31.097 269.921, 41.539 273.218, 42.500 273.927 C 43.050 274.334, 47.100 275.683, 51.500 276.927 C 59.708 279.246, 78.234 288.031, 85.680 293.135 C 87.979 294.711, 90.529 296, 91.347 296 C 92.164 296, 92.983 296.343, 93.167 296.763 C 93.579 297.705, 103.757 305, 104.660 305 C 105.020 305, 107.779 306.901, 110.790 309.224 C 113.801 311.547, 117.088 313.909, 118.093 314.474 C 121.408 316.334, 135.437 326.305, 138.785 329.180 C 140.591 330.731, 142.629 332, 143.313 332 C 143.996 332, 145.316 332.888, 146.245 333.973 C 147.978 335.997, 162.611 345.898, 169.177 349.489 C 179.402 355.082, 181.540 356.322, 182 356.926 C 182.275 357.288, 184.419 358.202, 186.764 358.957 C 189.110 359.712, 191.527 360.930, 192.137 361.665 C 192.746 362.399, 193.759 363, 194.387 363 C 195.016 363, 197.209 363.900, 199.261 365 C 201.314 366.100, 204.029 367, 205.296 367 C 206.563 367, 208.028 367.376, 208.550 367.835 C 209.381 368.565, 218.655 372.336, 220 372.491 C 220.275 372.522, 222.525 373.097, 225 373.768 C 227.475 374.439, 230.850 375.179, 232.500 375.412 C 234.150 375.645, 235.500 375.910, 235.500 376.001 C 235.500 376.092, 236.400 376.321, 237.500 376.511 C 242.301 377.336, 245.671 377.967, 248 378.475 C 260.453 381.193, 269.970 381.876, 296.750 381.973 L 318 382.050 318 400.147 L 318 418.244 320.250 416.612 C 321.488 415.714, 324.975 413.719, 328 412.179 C 331.025 410.640, 335.525 408.059, 338 406.445 C 340.475 404.831, 344.300 402.574, 346.500 401.429 C 355.242 396.881, 359 394.592, 359 393.814 C 359 393.367, 359.839 393, 360.865 393 C 361.891 393, 363.874 392.100, 365.273 391 C 366.671 389.900, 368.307 389, 368.908 389 C 369.508 389, 370 388.550, 370 388 C 370 387.450, 370.620 387, 371.378 387 C 372.135 387, 373.315 386.325, 374 385.500 C 374.685 384.675, 375.860 384, 376.613 384 C 377.365 384, 380.880 382.015, 384.425 379.588 C 387.969 377.162, 391.911 374.850, 393.184 374.451 C 394.458 374.052, 397.381 372.438, 399.680 370.863 C 401.979 369.288, 404.252 368, 404.731 368 C 405.210 368, 408.372 366.200, 411.758 364 C 415.144 361.800, 418.346 360, 418.874 360 C 419.401 360, 419.983 359.662, 420.167 359.250 C 420.350 358.837, 422.525 357.490, 425 356.255 C 429.529 353.996, 433.074 351.926, 434 351 C 434.275 350.725, 436.300 349.626, 438.500 348.557 C 440.700 347.488, 443.963 345.552, 445.750 344.256 C 447.538 342.959, 450.639 341.213, 452.642 340.376 C 457.001 338.555, 456.475 337.769, 447.795 333.125 C 439.651 328.768, 437.567 327.575, 437 326.943 C 436.725 326.636, 432.915 324.434, 428.534 322.048 C 424.153 319.663, 419.959 317.102, 419.213 316.356 C 418.467 315.610, 417.144 315, 416.273 315 C 415.402 315, 413.296 313.943, 411.594 312.652 C 409.892 311.361, 405.575 308.727, 402 306.799 C 394.998 303.024, 387.379 298.561, 376.879 292.084 C 373.237 289.838, 369.562 288, 368.712 288 C 367.862 288, 367.017 287.662, 366.833 287.250 C 366.300 286.049, 355.686 279.351, 352.974 278.504 C 351.613 278.078, 350.275 277.432, 350 277.067 C 349.464 276.357, 341.878 271.778, 335.806 268.500 C 333.768 267.400, 329.222 264.813, 325.704 262.750 C 322.186 260.688, 319.014 259, 318.654 259 C 318.294 259, 318 268.176, 318 279.391 L 318 299.781 310.250 300.268 C 305.988 300.536, 294.850 300.593, 285.500 300.394 C 265.605 299.970, 266.752 300.043, 261 298.827 C 258.525 298.304, 254.700 297.649, 252.500 297.373 C 247.169 296.704, 238.432 294.232, 233.500 291.998 C 231.300 291.002, 226.918 289.047, 223.763 287.654 C 220.608 286.261, 216.558 284.025, 214.763 282.685 C 212.968 281.346, 209.860 279.490, 207.855 278.561 C 205.851 277.632, 202.404 275.326, 200.196 273.436 C 197.988 271.546, 195.832 270, 195.403 270 C 194.975 270, 192.047 267.975, 188.897 265.500 C 185.746 263.025, 182.736 261, 182.207 261 C 181.678 261, 180.728 260.377, 180.095 259.615 C 179.463 258.853, 175.780 256.106, 171.912 253.510 C 168.043 250.915, 163.714 247.713, 162.293 246.395 C 160.871 245.078, 159.148 244, 158.463 244 C 157.778 244, 155.045 242.204, 152.389 240.009 C 149.733 237.815, 146.171 235.360, 144.474 234.555 C 142.778 233.750, 139.652 231.710, 137.529 230.023 C 135.405 228.335, 132.618 226.691, 131.334 226.369 C 127.981 225.527, 128.419 224.531, 133.429 221.594 C 135.865 220.167, 138.453 218.431, 139.179 217.738 C 139.906 217.044, 141.625 215.980, 143 215.372 C 144.375 214.765, 147.680 212.604, 150.344 210.569 C 153.008 208.535, 156.945 205.954, 159.094 204.834 C 161.242 203.714, 163 202.434, 163 201.988 C 163 201.543, 164.913 200.251, 167.250 199.117 C 169.588 197.983, 172.022 196.213, 172.661 195.184 C 173.299 194.155, 175.324 192.543, 177.161 191.603 C 178.997 190.663, 182.300 188.554, 184.500 186.916 C 186.700 185.279, 189.625 183.183, 191 182.259 C 192.375 181.335, 196.053 178.649, 199.174 176.290 C 202.295 173.930, 205.332 172, 205.924 172 C 206.516 172, 207 171.618, 207 171.152 C 207 170.685, 208.800 169.492, 211 168.500 C 213.200 167.508, 215 166.376, 215 165.985 C 215 165.046, 235.604 154.900, 239.482 153.929 C 241.142 153.513, 245.200 152.424, 248.500 151.507 C 256.612 149.255, 260.270 148.498, 268.500 147.370 C 274.428 146.558, 304.036 146.100, 312.411 146.691 L 320.961 147.294 321.231 168.207 L 321.500 189.120 327.149 185.161 C 330.257 182.984, 334.194 180.897, 335.899 180.522 C 337.605 180.148, 339 179.522, 339 179.132 C 339 178.742, 341.587 176.914, 344.750 175.071 C 347.913 173.227, 352.750 170.373, 355.500 168.727 C 358.250 167.082, 363.425 164.153, 367 162.218 C 370.575 160.283, 374.892 157.643, 376.594 156.350 C 378.296 155.058, 380.379 154, 381.222 154 C 382.065 154, 383.315 153.325, 384 152.500 C 384.685 151.675, 385.710 151, 386.278 151 C 386.846 151, 388.732 149.916, 390.469 148.591 C 392.206 147.267, 395.383 145.449, 397.528 144.553 C 399.674 143.656, 401.671 142.602, 401.965 142.211 C 402.528 141.463, 403.841 140.687, 412.295 136.107 C 415.158 134.556, 419.250 132.098, 421.390 130.644 C 423.529 129.190, 426.079 128, 427.056 128 C 428.034 128, 428.983 127.644, 429.167 127.209 C 429.628 126.115, 438.476 120.271, 442.329 118.517 C 444.073 117.722, 447.750 115.686, 450.500 113.992 C 453.250 112.298, 456.283 110.655, 457.240 110.342 C 458.800 109.831, 458.746 109.588, 456.716 107.992 C 455.472 107.012, 451.314 104.508, 447.476 102.426 C 443.639 100.344, 438.700 97.447, 436.500 95.989 C 434.300 94.530, 431.714 93.051, 430.753 92.701 C 429.791 92.351, 426.520 90.475, 423.483 88.532 C 420.446 86.590, 417.624 85, 417.213 85 C 416.801 85, 414.758 83.840, 412.672 82.423 C 410.586 81.006, 405.419 78.019, 401.190 75.787 C 396.960 73.554, 393.259 71.356, 392.965 70.902 C 392.671 70.449, 390.421 69.136, 387.965 67.986 C 385.509 66.835, 381.475 64.569, 379 62.950 C 376.525 61.331, 372.954 59.289, 371.065 58.412 C 369.175 57.535, 364.981 55.059, 361.744 52.909 C 358.507 50.759, 355.416 49, 354.874 49 C 354.333 49, 351.240 47.200, 348 45 C 344.760 42.800, 341.693 41, 341.183 41 C 340.674 41, 336.887 38.800, 332.769 36.112 C 320.062 27.817, 321 26.875, 321 47.924",stroke:"none",fill:"#94a4bc",fillRule:"evenodd"})]}),s=o.forwardRef((e,M)=>C.jsx(t,{ref:M,...e}));export{s as OpenRouterIcon};
@@ -1 +1 @@
1
- import{j as r,r as s}from"./index-BChjg6Az.js";const e=c=>r.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"lucide lucide-grip-horizontal",...c,children:[r.jsx("circle",{cx:"12",cy:"9",r:"1"}),r.jsx("circle",{cx:"19",cy:"9",r:"1"}),r.jsx("circle",{cx:"5",cy:"9",r:"1"}),r.jsx("circle",{cx:"12",cy:"15",r:"1"}),r.jsx("circle",{cx:"19",cy:"15",r:"1"}),r.jsx("circle",{cx:"5",cy:"15",r:"1"})]}),t=s.forwardRef((c,o)=>r.jsx(e,{ref:o,...c}));export{t as GridHorizontalIcon};
1
+ import{j as r,r as s}from"./index-BD7Io1hL.js";const e=c=>r.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":"2","stroke-linecap":"round","stroke-linejoin":"round",class:"lucide lucide-grip-horizontal",...c,children:[r.jsx("circle",{cx:"12",cy:"9",r:"1"}),r.jsx("circle",{cx:"19",cy:"9",r:"1"}),r.jsx("circle",{cx:"5",cy:"9",r:"1"}),r.jsx("circle",{cx:"12",cy:"15",r:"1"}),r.jsx("circle",{cx:"19",cy:"15",r:"1"}),r.jsx("circle",{cx:"5",cy:"15",r:"1"})]}),t=s.forwardRef((c,o)=>r.jsx(e,{ref:o,...c}));export{t as GridHorizontalIcon};
@@ -1 +1 @@
1
- import{j as c,r as o}from"./index-BChjg6Az.js";const s=r=>c.jsx("svg",{viewBox:"3 3 18 18",...r,xmlns:"http://www.w3.org/2000/svg",children:c.jsx("path",{d:"M11.995 19.5a7.232 7.232 0 0 0 2.898-.585 7.582 7.582 0 0 0 2.392-1.627 7.748 7.748 0 0 0 1.625-2.398c.393-.904.59-1.868.59-2.89a7.172 7.172 0 0 0-.59-2.89 7.708 7.708 0 0 0-4.026-4.024 7.231 7.231 0 0 0-2.898-.586 7.209 7.209 0 0 0-2.888.586c-.905.39-1.7.932-2.387 1.626A7.788 7.788 0 0 0 5.09 9.11 7.172 7.172 0 0 0 4.5 12c0 1.022.197 1.986.59 2.89a7.748 7.748 0 0 0 1.625 2.398 7.582 7.582 0 0 0 2.392 1.627c.904.39 1.867.585 2.888.585Zm-3.687-4.238a.423.423 0 0 1-.316-.149c-.093-.099-.14-.247-.14-.446 0-.966.14-1.812.419-2.537.279-.725.721-1.29 1.328-1.696.607-.406 1.406-.609 2.396-.609h.093V8.366c0-.142.051-.266.154-.372a.514.514 0 0 1 .385-.158c.105 0 .198.024.279.07.08.047.182.129.306.246l3.167 2.956c.068.068.118.14.149.214.03.074.046.148.046.223a.578.578 0 0 1-.046.223.668.668 0 0 1-.149.213l-3.167 2.984c-.21.198-.409.297-.594.297a.52.52 0 0 1-.53-.511v-1.487h-.093c-.736 0-1.354.115-1.853.344-.498.229-.93.675-1.295 1.338-.075.136-.16.223-.256.26a.78.78 0 0 1-.283.056Z",fill:"currentColor"})}),e=o.forwardRef((r,a)=>c.jsx(s,{ref:a,...r}));export{e as ShareIcon};
1
+ import{j as c,r as o}from"./index-BD7Io1hL.js";const s=r=>c.jsx("svg",{viewBox:"3 3 18 18",...r,xmlns:"http://www.w3.org/2000/svg",children:c.jsx("path",{d:"M11.995 19.5a7.232 7.232 0 0 0 2.898-.585 7.582 7.582 0 0 0 2.392-1.627 7.748 7.748 0 0 0 1.625-2.398c.393-.904.59-1.868.59-2.89a7.172 7.172 0 0 0-.59-2.89 7.708 7.708 0 0 0-4.026-4.024 7.231 7.231 0 0 0-2.898-.586 7.209 7.209 0 0 0-2.888.586c-.905.39-1.7.932-2.387 1.626A7.788 7.788 0 0 0 5.09 9.11 7.172 7.172 0 0 0 4.5 12c0 1.022.197 1.986.59 2.89a7.748 7.748 0 0 0 1.625 2.398 7.582 7.582 0 0 0 2.392 1.627c.904.39 1.867.585 2.888.585Zm-3.687-4.238a.423.423 0 0 1-.316-.149c-.093-.099-.14-.247-.14-.446 0-.966.14-1.812.419-2.537.279-.725.721-1.29 1.328-1.696.607-.406 1.406-.609 2.396-.609h.093V8.366c0-.142.051-.266.154-.372a.514.514 0 0 1 .385-.158c.105 0 .198.024.279.07.08.047.182.129.306.246l3.167 2.956c.068.068.118.14.149.214.03.074.046.148.046.223a.578.578 0 0 1-.046.223.668.668 0 0 1-.149.213l-3.167 2.984c-.21.198-.409.297-.594.297a.52.52 0 0 1-.53-.511v-1.487h-.093c-.736 0-1.354.115-1.853.344-.498.229-.93.675-1.295 1.338-.075.136-.16.223-.256.26a.78.78 0 0 1-.283.056Z",fill:"currentColor"})}),e=o.forwardRef((r,a)=>c.jsx(s,{ref:a,...r}));export{e as ShareIcon};
@@ -1 +1 @@
1
- import{j as l,r as s}from"./index-BChjg6Az.js";const o=a=>l.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 209.51 94.74",...a,children:[l.jsx("path",{fill:"#f4801f",d:"M143.05,93.42l1.07-3.71c1.27-4.41.8-8.48-1.34-11.48-2-2.76-5.26-4.38-9.25-4.57L58,72.7a1.47,1.47,0,0,1-1.35-2,2,2,0,0,1,1.75-1.34l76.26-1c9-.41,18.84-7.75,22.27-16.71l4.34-11.36a2.68,2.68,0,0,0,.18-1,3.31,3.31,0,0,0-.06-.54,49.67,49.67,0,0,0-95.49-5.14,22.35,22.35,0,0,0-35,23.42A31.73,31.73,0,0,0,.34,93.45a1.47,1.47,0,0,0,1.45,1.27l139.49,0h0A1.83,1.83,0,0,0,143.05,93.42Z"}),l.jsx("path",{fill:"#f9ab41",d:"M168.22,41.15q-1,0-2.1.06a.88.88,0,0,0-.32.07,1.17,1.17,0,0,0-.76.8l-3,10.26c-1.28,4.41-.81,8.48,1.34,11.48a11.65,11.65,0,0,0,9.24,4.57l16.11,1a1.44,1.44,0,0,1,1.14.62,1.5,1.5,0,0,1,.17,1.37,2,2,0,0,1-1.75,1.34l-16.73,1c-9.09.42-18.88,7.75-22.31,16.7l-1.21,3.16a.9.9,0,0,0,.79,1.22h57.63A1.55,1.55,0,0,0,208,93.63a41.34,41.34,0,0,0-39.76-52.48Z"})]}),c=s.forwardRef((a,r)=>l.jsx(o,{ref:r,...a}));export{c as CloudflareIcon};
1
+ import{j as l,r as s}from"./index-BD7Io1hL.js";const o=a=>l.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 209.51 94.74",...a,children:[l.jsx("path",{fill:"#f4801f",d:"M143.05,93.42l1.07-3.71c1.27-4.41.8-8.48-1.34-11.48-2-2.76-5.26-4.38-9.25-4.57L58,72.7a1.47,1.47,0,0,1-1.35-2,2,2,0,0,1,1.75-1.34l76.26-1c9-.41,18.84-7.75,22.27-16.71l4.34-11.36a2.68,2.68,0,0,0,.18-1,3.31,3.31,0,0,0-.06-.54,49.67,49.67,0,0,0-95.49-5.14,22.35,22.35,0,0,0-35,23.42A31.73,31.73,0,0,0,.34,93.45a1.47,1.47,0,0,0,1.45,1.27l139.49,0h0A1.83,1.83,0,0,0,143.05,93.42Z"}),l.jsx("path",{fill:"#f9ab41",d:"M168.22,41.15q-1,0-2.1.06a.88.88,0,0,0-.32.07,1.17,1.17,0,0,0-.76.8l-3,10.26c-1.28,4.41-.81,8.48,1.34,11.48a11.65,11.65,0,0,0,9.24,4.57l16.11,1a1.44,1.44,0,0,1,1.14.62,1.5,1.5,0,0,1,.17,1.37,2,2,0,0,1-1.75,1.34l-16.73,1c-9.09.42-18.88,7.75-22.31,16.7l-1.21,3.16a.9.9,0,0,0,.79,1.22h57.63A1.55,1.55,0,0,0,208,93.63a41.34,41.34,0,0,0-39.76-52.48Z"})]}),c=s.forwardRef((a,r)=>l.jsx(o,{ref:r,...a}));export{c as CloudflareIcon};
@@ -1 +1 @@
1
- import{j as a,r as o}from"./index-BChjg6Az.js";const n=l=>a.jsxs("svg",{viewBox:"0 0 81 41",fill:"none",xmlns:"http://www.w3.org/2000/svg",...l,children:[a.jsx("path",{d:"M61.514 11.157a3.94 3.94 0 0 0-2.806 1.158l-3.018 3.01a3.95 3.95 0 0 0-1.147 3.095l.019.191a3.9 3.9 0 0 0 1.128 2.314 3.6 3.6 0 0 0 1.496.9q.046.263.047.53c0 .797-.31 1.546-.874 2.107l-.186.186c-1.008-.344-1.848-.847-2.607-1.604a6.9 6.9 0 0 1-1.927-3.67l-.034-.193-.153.124a4 4 0 0 0-.294.265l-3.018 3.01a3.957 3.957 0 0 0 2.807 6.757 3.96 3.96 0 0 0 2.806-1.158l3.019-3.01a3.96 3.96 0 0 0 0-5.599 3.9 3.9 0 0 0-1.462-.92 3.25 3.25 0 0 1 .924-2.855 6.9 6.9 0 0 1 2.664 1.656 6.9 6.9 0 0 1 1.926 3.67l.035.193.153-.124q.155-.125.296-.267l3.018-3.01a3.956 3.956 0 0 0-2.808-6.756z",fill:"CurrentColor"}),a.jsx("path",{d:"M59.897.149h-39.49C9.153.149 0 9.279 0 20.5c0 11.222 9.154 20.351 20.406 20.351h39.49c11.253 0 20.407-9.13 20.407-20.35C80.303 9.277 71.149.148 59.897.148M40.419 32.056c-.651.134-1.384.158-1.882-.36-.183.42-.612.199-.943.144-.03.085-.057.16-.085.246-1.1.073-1.925-1.046-2.449-1.89-1.04-.562-2.222-.904-3.285-1.492-.062.968.15 2.17-.774 2.794-.047 1.862 2.824.22 3.088 1.608-.204.022-.43-.033-.594.124-.749.726-1.608-.55-2.471-.023-1.16.582-1.276 1.059-2.71 1.179-.08-.12-.047-.2.02-.273.404-.468.433-1.02 1.122-1.22-.71-.111-1.303.28-1.901.59-.778.317-.772-.717-1.968.054-.132-.108-.069-.206.007-.289.304-.37.704-.425 1.155-.405-2.219-1.233-3.263 1.508-4.288.145-.308.081-.424.358-.618.553-.167-.183-.04-.405-.033-.62-.2-.094-.453-.139-.394-.459-.391-.132-.665.1-.957.32-.263-.203.178-.5.26-.712.234-.407.769-.084 1.04-.377.772-.437 1.847.273 2.729.153.68.085 1.52-.61 1.179-1.305-.726-.926-.598-2.137-.614-3.244-.09-.645-1.643-1.467-2.092-2.163-.555-.627-.987-1.353-1.42-2.068-1.561-3.014-1.07-6.886-3.037-9.685-.89.49-2.048.259-2.816-.399-.414.377-.432.87-.465 1.392-.994-.99-.87-2.863-.075-3.966a5.3 5.3 0 0 1 1.144-1.11c.098-.07.131-.14.129-.25.786-3.524 6.144-2.845 7.838-.348 1.229 1.537 1.6 3.57 2.994 4.997 1.875 2.047 4.012 3.85 5.742 6.03 1.637 1.992 2.806 4.328 3.826 6.683.416.782.42 1.74 1.037 2.408.304.403 1.79 1.5 1.467 1.888.186.403 1.573.959 1.092 1.35zm26.026-12.024-3.018 3.01a6.96 6.96 0 0 1-2.875 1.728l-.056.016-.02.053a6.9 6.9 0 0 1-1.585 2.446l-3.019 3.01a6.94 6.94 0 0 1-4.932 2.035 6.94 6.94 0 0 1-4.932-2.035 6.95 6.95 0 0 1 0-9.838l3.018-3.01a6.9 6.9 0 0 1 2.871-1.721l.055-.017.02-.053a6.9 6.9 0 0 1 1.59-2.454l3.019-3.01a6.94 6.94 0 0 1 4.932-2.035c1.865 0 3.616.723 4.932 2.035a6.9 6.9 0 0 1 2.04 4.92c0 1.86-.724 3.607-2.04 4.918z",fill:"CurrentColor"}),a.jsx("path",{d:"M28.142 28.413c-.265 1.03-.35 2.782-1.694 2.832-.11.595.413.819.89.627.472-.215.696.171.855.556.729.106 1.806-.242 1.847-1.103-1.088-.625-1.424-1.813-1.896-2.914z",fill:"CurrentColor"})]}),s=o.forwardRef((l,r)=>a.jsx(n,{ref:r,...l}));export{s as LangChainIcon};
1
+ import{j as a,r as o}from"./index-BD7Io1hL.js";const n=l=>a.jsxs("svg",{viewBox:"0 0 81 41",fill:"none",xmlns:"http://www.w3.org/2000/svg",...l,children:[a.jsx("path",{d:"M61.514 11.157a3.94 3.94 0 0 0-2.806 1.158l-3.018 3.01a3.95 3.95 0 0 0-1.147 3.095l.019.191a3.9 3.9 0 0 0 1.128 2.314 3.6 3.6 0 0 0 1.496.9q.046.263.047.53c0 .797-.31 1.546-.874 2.107l-.186.186c-1.008-.344-1.848-.847-2.607-1.604a6.9 6.9 0 0 1-1.927-3.67l-.034-.193-.153.124a4 4 0 0 0-.294.265l-3.018 3.01a3.957 3.957 0 0 0 2.807 6.757 3.96 3.96 0 0 0 2.806-1.158l3.019-3.01a3.96 3.96 0 0 0 0-5.599 3.9 3.9 0 0 0-1.462-.92 3.25 3.25 0 0 1 .924-2.855 6.9 6.9 0 0 1 2.664 1.656 6.9 6.9 0 0 1 1.926 3.67l.035.193.153-.124q.155-.125.296-.267l3.018-3.01a3.956 3.956 0 0 0-2.808-6.756z",fill:"CurrentColor"}),a.jsx("path",{d:"M59.897.149h-39.49C9.153.149 0 9.279 0 20.5c0 11.222 9.154 20.351 20.406 20.351h39.49c11.253 0 20.407-9.13 20.407-20.35C80.303 9.277 71.149.148 59.897.148M40.419 32.056c-.651.134-1.384.158-1.882-.36-.183.42-.612.199-.943.144-.03.085-.057.16-.085.246-1.1.073-1.925-1.046-2.449-1.89-1.04-.562-2.222-.904-3.285-1.492-.062.968.15 2.17-.774 2.794-.047 1.862 2.824.22 3.088 1.608-.204.022-.43-.033-.594.124-.749.726-1.608-.55-2.471-.023-1.16.582-1.276 1.059-2.71 1.179-.08-.12-.047-.2.02-.273.404-.468.433-1.02 1.122-1.22-.71-.111-1.303.28-1.901.59-.778.317-.772-.717-1.968.054-.132-.108-.069-.206.007-.289.304-.37.704-.425 1.155-.405-2.219-1.233-3.263 1.508-4.288.145-.308.081-.424.358-.618.553-.167-.183-.04-.405-.033-.62-.2-.094-.453-.139-.394-.459-.391-.132-.665.1-.957.32-.263-.203.178-.5.26-.712.234-.407.769-.084 1.04-.377.772-.437 1.847.273 2.729.153.68.085 1.52-.61 1.179-1.305-.726-.926-.598-2.137-.614-3.244-.09-.645-1.643-1.467-2.092-2.163-.555-.627-.987-1.353-1.42-2.068-1.561-3.014-1.07-6.886-3.037-9.685-.89.49-2.048.259-2.816-.399-.414.377-.432.87-.465 1.392-.994-.99-.87-2.863-.075-3.966a5.3 5.3 0 0 1 1.144-1.11c.098-.07.131-.14.129-.25.786-3.524 6.144-2.845 7.838-.348 1.229 1.537 1.6 3.57 2.994 4.997 1.875 2.047 4.012 3.85 5.742 6.03 1.637 1.992 2.806 4.328 3.826 6.683.416.782.42 1.74 1.037 2.408.304.403 1.79 1.5 1.467 1.888.186.403 1.573.959 1.092 1.35zm26.026-12.024-3.018 3.01a6.96 6.96 0 0 1-2.875 1.728l-.056.016-.02.053a6.9 6.9 0 0 1-1.585 2.446l-3.019 3.01a6.94 6.94 0 0 1-4.932 2.035 6.94 6.94 0 0 1-4.932-2.035 6.95 6.95 0 0 1 0-9.838l3.018-3.01a6.9 6.9 0 0 1 2.871-1.721l.055-.017.02-.053a6.9 6.9 0 0 1 1.59-2.454l3.019-3.01a6.94 6.94 0 0 1 4.932-2.035c1.865 0 3.616.723 4.932 2.035a6.9 6.9 0 0 1 2.04 4.92c0 1.86-.724 3.607-2.04 4.918z",fill:"CurrentColor"}),a.jsx("path",{d:"M28.142 28.413c-.265 1.03-.35 2.782-1.694 2.832-.11.595.413.819.89.627.472-.215.696.171.855.556.729.106 1.806-.242 1.847-1.103-1.088-.625-1.424-1.813-1.896-2.914z",fill:"CurrentColor"})]}),s=o.forwardRef((l,r)=>a.jsx(n,{ref:r,...l}));export{s as LangChainIcon};
@@ -1 +1 @@
1
- import{j as e,r as i}from"./index-BChjg6Az.js";const r=l=>e.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",fillRule:"evenodd",clipRule:"evenodd",imageRendering:"optimizeQuality",shapeRendering:"geometricPrecision",textRendering:"geometricPrecision",viewBox:"0 0 512 512",width:"1em",height:"1em",...l,children:[e.jsx("rect",{width:512,height:512,fill:"#10A37F",rx:104.187,ry:105.042}),e.jsx("path",{fill:"#fff",fillRule:"nonzero",d:"M378.68 230.011a71.432 71.432 0 0 0 3.654-22.541 71.383 71.383 0 0 0-9.783-36.064c-12.871-22.404-36.747-36.236-62.587-36.236a72.31 72.31 0 0 0-15.145 1.604 71.362 71.362 0 0 0-53.37-23.991h-.453l-.17.001c-31.297 0-59.052 20.195-68.673 49.967a71.372 71.372 0 0 0-47.709 34.618 72.224 72.224 0 0 0-9.755 36.226 72.204 72.204 0 0 0 18.628 48.395 71.395 71.395 0 0 0-3.655 22.541 71.388 71.388 0 0 0 9.783 36.064 72.187 72.187 0 0 0 77.728 34.631 71.375 71.375 0 0 0 53.374 23.992H271l.184-.001c31.314 0 59.06-20.196 68.681-49.995a71.384 71.384 0 0 0 47.71-34.619 72.107 72.107 0 0 0 9.736-36.194 72.201 72.201 0 0 0-18.628-48.394l-.003-.004zM271.018 380.492h-.074a53.576 53.576 0 0 1-34.287-12.423 44.928 44.928 0 0 0 1.694-.96l57.032-32.943a9.278 9.278 0 0 0 4.688-8.06v-80.459l24.106 13.919a.859.859 0 0 1 .469.661v66.586c-.033 29.604-24.022 53.619-53.628 53.679zm-115.329-49.257a53.563 53.563 0 0 1-7.196-26.798c0-3.069.268-6.146.79-9.17.424.254 1.164.706 1.695 1.011l57.032 32.943a9.289 9.289 0 0 0 9.37-.002l69.63-40.205v27.839l.001.048a.864.864 0 0 1-.345.691l-57.654 33.288a53.791 53.791 0 0 1-26.817 7.17 53.746 53.746 0 0 1-46.506-26.818v.003zm-15.004-124.506a53.5 53.5 0 0 1 27.941-23.534c0 .491-.028 1.361-.028 1.965v65.887l-.001.054a9.27 9.27 0 0 0 4.681 8.053l69.63 40.199-24.105 13.919a.864.864 0 0 1-.813.074l-57.66-33.316a53.746 53.746 0 0 1-26.805-46.5 53.787 53.787 0 0 1 7.163-26.798l-.003-.003zm198.055 46.089-69.63-40.204 24.106-13.914a.863.863 0 0 1 .813-.074l57.659 33.288a53.71 53.71 0 0 1 26.835 46.491c0 22.489-14.033 42.612-35.133 50.379v-67.857c.003-.025.003-.051.003-.076a9.265 9.265 0 0 0-4.653-8.033zm23.993-36.111a81.919 81.919 0 0 0-1.694-1.01l-57.032-32.944a9.31 9.31 0 0 0-4.684-1.266 9.31 9.31 0 0 0-4.684 1.266l-69.631 40.205v-27.839l-.001-.048c0-.272.129-.528.346-.691l57.654-33.26a53.696 53.696 0 0 1 26.816-7.177c29.644 0 53.684 24.04 53.684 53.684a53.91 53.91 0 0 1-.774 9.077v.003zm-150.831 49.618-24.111-13.919a.859.859 0 0 1-.469-.661v-66.587c.013-29.628 24.053-53.648 53.684-53.648a53.719 53.719 0 0 1 34.349 12.426c-.434.237-1.191.655-1.694.96l-57.032 32.943a9.272 9.272 0 0 0-4.687 8.057v.053l-.04 80.376zm13.095-28.233 31.012-17.912 31.012 17.9v35.812l-31.012 17.901-31.012-17.901v-35.8z"})]}),t=i.forwardRef((l,a)=>e.jsx(r,{ref:a,...l}));export{t as OpenAiIcon};
1
+ import{j as e,r as i}from"./index-BD7Io1hL.js";const r=l=>e.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",fillRule:"evenodd",clipRule:"evenodd",imageRendering:"optimizeQuality",shapeRendering:"geometricPrecision",textRendering:"geometricPrecision",viewBox:"0 0 512 512",width:"1em",height:"1em",...l,children:[e.jsx("rect",{width:512,height:512,fill:"#10A37F",rx:104.187,ry:105.042}),e.jsx("path",{fill:"#fff",fillRule:"nonzero",d:"M378.68 230.011a71.432 71.432 0 0 0 3.654-22.541 71.383 71.383 0 0 0-9.783-36.064c-12.871-22.404-36.747-36.236-62.587-36.236a72.31 72.31 0 0 0-15.145 1.604 71.362 71.362 0 0 0-53.37-23.991h-.453l-.17.001c-31.297 0-59.052 20.195-68.673 49.967a71.372 71.372 0 0 0-47.709 34.618 72.224 72.224 0 0 0-9.755 36.226 72.204 72.204 0 0 0 18.628 48.395 71.395 71.395 0 0 0-3.655 22.541 71.388 71.388 0 0 0 9.783 36.064 72.187 72.187 0 0 0 77.728 34.631 71.375 71.375 0 0 0 53.374 23.992H271l.184-.001c31.314 0 59.06-20.196 68.681-49.995a71.384 71.384 0 0 0 47.71-34.619 72.107 72.107 0 0 0 9.736-36.194 72.201 72.201 0 0 0-18.628-48.394l-.003-.004zM271.018 380.492h-.074a53.576 53.576 0 0 1-34.287-12.423 44.928 44.928 0 0 0 1.694-.96l57.032-32.943a9.278 9.278 0 0 0 4.688-8.06v-80.459l24.106 13.919a.859.859 0 0 1 .469.661v66.586c-.033 29.604-24.022 53.619-53.628 53.679zm-115.329-49.257a53.563 53.563 0 0 1-7.196-26.798c0-3.069.268-6.146.79-9.17.424.254 1.164.706 1.695 1.011l57.032 32.943a9.289 9.289 0 0 0 9.37-.002l69.63-40.205v27.839l.001.048a.864.864 0 0 1-.345.691l-57.654 33.288a53.791 53.791 0 0 1-26.817 7.17 53.746 53.746 0 0 1-46.506-26.818v.003zm-15.004-124.506a53.5 53.5 0 0 1 27.941-23.534c0 .491-.028 1.361-.028 1.965v65.887l-.001.054a9.27 9.27 0 0 0 4.681 8.053l69.63 40.199-24.105 13.919a.864.864 0 0 1-.813.074l-57.66-33.316a53.746 53.746 0 0 1-26.805-46.5 53.787 53.787 0 0 1 7.163-26.798l-.003-.003zm198.055 46.089-69.63-40.204 24.106-13.914a.863.863 0 0 1 .813-.074l57.659 33.288a53.71 53.71 0 0 1 26.835 46.491c0 22.489-14.033 42.612-35.133 50.379v-67.857c.003-.025.003-.051.003-.076a9.265 9.265 0 0 0-4.653-8.033zm23.993-36.111a81.919 81.919 0 0 0-1.694-1.01l-57.032-32.944a9.31 9.31 0 0 0-4.684-1.266 9.31 9.31 0 0 0-4.684 1.266l-69.631 40.205v-27.839l-.001-.048c0-.272.129-.528.346-.691l57.654-33.26a53.696 53.696 0 0 1 26.816-7.177c29.644 0 53.684 24.04 53.684 53.684a53.91 53.91 0 0 1-.774 9.077v.003zm-150.831 49.618-24.111-13.919a.859.859 0 0 1-.469-.661v-66.587c.013-29.628 24.053-53.648 53.684-53.648a53.719 53.719 0 0 1 34.349 12.426c-.434.237-1.191.655-1.694.96l-57.032 32.943a9.272 9.272 0 0 0-4.687 8.057v.053l-.04 80.376zm13.095-28.233 31.012-17.912 31.012 17.9v35.812l-31.012 17.901-31.012-17.901v-35.8z"})]}),t=i.forwardRef((l,a)=>e.jsx(r,{ref:a,...l}));export{t as OpenAiIcon};
@@ -1 +1 @@
1
- import{j as r,r as t}from"./index-BChjg6Az.js";const e=o=>r.jsx("svg",{width:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 43 40",version:"1.1",height:"1em",...o,children:r.jsx("path",{d:"m12.5 0l-12.5 8.1 8.7 7 12.5-7.8-8.7-7.3zm-12.5 21.9l12.5 8.2 8.7-7.3-12.5-7.7-8.7 6.8zm21.2 0.9l8.8 7.3 12.4-8.1-8.6-6.9-12.6 7.7zm21.2-14.7l-12.4-8.1-8.8 7.3 12.6 7.8 8.6-7zm-21.1 16.3l-8.8 7.3-3.7-2.5v2.8l12.5 7.5 12.5-7.5v-2.8l-3.8 2.5-8.7-7.3z",fill:"#007EE5"})}),m=t.forwardRef((o,s)=>r.jsx(e,{ref:s,...o}));export{m as DropboxIcon};
1
+ import{j as r,r as t}from"./index-BD7Io1hL.js";const e=o=>r.jsx("svg",{width:"1em",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 43 40",version:"1.1",height:"1em",...o,children:r.jsx("path",{d:"m12.5 0l-12.5 8.1 8.7 7 12.5-7.8-8.7-7.3zm-12.5 21.9l12.5 8.2 8.7-7.3-12.5-7.7-8.7 6.8zm21.2 0.9l8.8 7.3 12.4-8.1-8.6-6.9-12.6 7.7zm21.2-14.7l-12.4-8.1-8.8 7.3 12.6 7.8 8.6-7zm-21.1 16.3l-8.8 7.3-3.7-2.5v2.8l12.5 7.5 12.5-7.5v-2.8l-3.8 2.5-8.7-7.3z",fill:"#007EE5"})}),m=t.forwardRef((o,s)=>r.jsx(e,{ref:s,...o}));export{m as DropboxIcon};