langflow-base-nightly 0.5.1.dev3__py3-none-any.whl → 0.5.1.dev5__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.
- langflow/__init__.py +215 -0
- langflow/__main__.py +16 -2
- langflow/alembic/versions/006b3990db50_add_unique_constraints.py +4 -7
- langflow/alembic/versions/012fb73ac359_add_folder_table.py +4 -5
- langflow/alembic/versions/0ae3a2674f32_update_the_columns_that_need_to_change_.py +11 -20
- langflow/alembic/versions/0b8757876a7c_.py +4 -7
- langflow/alembic/versions/0d60fcbd4e8e_create_vertex_builds_table.py +4 -6
- langflow/alembic/versions/1a110b568907_replace_credential_table_with_variable.py +4 -5
- langflow/alembic/versions/1b8b740a6fa3_remove_fk_constraint_in_message_.py +32 -27
- langflow/alembic/versions/1c79524817ed_add_unique_constraints_per_user_in_.py +4 -5
- langflow/alembic/versions/1d90f8a0efe1_update_description_columns_type.py +4 -5
- langflow/alembic/versions/1eab2c3eb45e_event_error.py +14 -15
- langflow/alembic/versions/1ef9c4f3765d_.py +5 -10
- langflow/alembic/versions/1f4d6df60295_add_default_fields_column.py +4 -5
- langflow/alembic/versions/260dbcc8b680_adds_tables.py +4 -5
- langflow/alembic/versions/29fe8f1f806b_add_missing_index.py +4 -5
- langflow/alembic/versions/2ac71eb9c3ae_adds_credential_table.py +4 -7
- langflow/alembic/versions/3bb0ddf32dfb_add_unique_constraints_per_user_in_flow_.py +4 -5
- langflow/alembic/versions/4e5980a44eaa_fix_date_times_again.py +1 -2
- langflow/alembic/versions/58b28437a398_modify_nullable.py +1 -2
- langflow/alembic/versions/5ace73a7f223_new_remove_table_upgrade_op.py +6 -12
- langflow/alembic/versions/631faacf5da2_add_webhook_columns.py +4 -5
- langflow/alembic/versions/63b9c451fd30_add_icon_and_icon_bg_color_to_flow.py +4 -5
- langflow/alembic/versions/66f72f04a1de_add_mcp_support_with_project_settings_.py +21 -23
- langflow/alembic/versions/67cc006d50bf_add_profile_image_column.py +4 -5
- langflow/alembic/versions/6e7b581b5648_fix_nullable.py +4 -5
- langflow/alembic/versions/7843803a87b5_store_updates.py +4 -6
- langflow/alembic/versions/79e675cb6752_change_datetime_type.py +1 -2
- langflow/alembic/versions/7d2162acc8b2_adds_updated_at_and_folder_cols.py +4 -10
- langflow/alembic/versions/90be8e2ed91e_create_transactions_table.py +4 -6
- langflow/alembic/versions/93e2705fa8d6_add_column_save_path_to_flow.py +7 -9
- langflow/alembic/versions/a72f5cf9c2f9_add_endpoint_name_col.py +4 -5
- langflow/alembic/versions/b2fa308044b5_add_unique_constraints.py +1 -2
- langflow/alembic/versions/bc2f01c40e4a_new_fixes.py +4 -5
- langflow/alembic/versions/c153816fd85f_set_name_and_value_to_not_nullable.py +4 -5
- langflow/alembic/versions/d066bfd22890_add_message_table.py +4 -4
- langflow/alembic/versions/d2d475a1f7c0_add_tags_column_to_flow.py +12 -13
- langflow/alembic/versions/d3dbf656a499_add_gradient_column_in_flow.py +12 -12
- langflow/alembic/versions/d9a6ea21edcd_rename_default_folder.py +7 -10
- langflow/alembic/versions/dd9e0804ebd1_add_v2_file_table.py +8 -7
- langflow/alembic/versions/e3162c1804e6_add_persistent_locked_state.py +10 -10
- langflow/alembic/versions/e3bc869fa272_fix_nullable.py +4 -5
- langflow/alembic/versions/e56d87f8994a_add_optins_column_to_user.py +13 -14
- langflow/alembic/versions/e5a65ecff2cd_nullable_in_vertex_build.py +4 -5
- langflow/alembic/versions/eb5866d51fd2_change_columns_to_be_nullable.py +4 -5
- langflow/alembic/versions/eb5e72293a8e_add_error_and_edit_flags_to_message.py +4 -5
- langflow/alembic/versions/f3b2d1f1002d_add_column_access_type_to_flow.py +19 -15
- langflow/alembic/versions/f5ee9749d1a6_user_id_can_be_null_in_flow.py +4 -6
- langflow/alembic/versions/fd531f8868b1_fix_credential_table.py +5 -8
- langflow/api/build.py +5 -4
- langflow/api/health_check_router.py +1 -1
- langflow/api/limited_background_tasks.py +1 -1
- langflow/api/log_router.py +1 -2
- langflow/api/utils.py +2 -2
- langflow/api/v1/base.py +1 -2
- langflow/api/v1/callback.py +4 -9
- langflow/api/v1/chat.py +6 -7
- langflow/api/v1/endpoints.py +15 -15
- langflow/api/v1/files.py +1 -1
- langflow/api/v1/flows.py +1 -1
- langflow/api/v1/knowledge_bases.py +1 -1
- langflow/api/v1/mcp.py +1 -1
- langflow/api/v1/mcp_projects.py +14 -5
- langflow/api/v1/mcp_utils.py +3 -3
- langflow/api/v1/openai_responses.py +4 -4
- langflow/api/v1/schemas.py +3 -38
- langflow/api/v1/starter_projects.py +61 -3
- langflow/api/v1/store.py +1 -1
- langflow/api/v1/validate.py +3 -3
- langflow/api/v1/voice_mode.py +2 -2
- langflow/api/v2/files.py +1 -1
- langflow/api/v2/mcp.py +2 -2
- langflow/base/__init__.py +11 -0
- langflow/base/agents/__init__.py +3 -0
- langflow/base/data/__init__.py +2 -4
- langflow/base/data/utils.py +2 -197
- langflow/base/embeddings/__init__.py +3 -0
- langflow/base/io/__init__.py +7 -0
- langflow/base/io/chat.py +5 -18
- langflow/base/io/text.py +2 -21
- langflow/base/knowledge_bases/__init__.py +3 -0
- langflow/base/memory/__init__.py +3 -0
- langflow/base/models/__init__.py +2 -2
- langflow/base/models/openai_constants.py +6 -120
- langflow/base/prompts/__init__.py +3 -0
- langflow/base/prompts/api_utils.py +2 -223
- langflow/base/textsplitters/__init__.py +3 -0
- langflow/base/tools/__init__.py +3 -0
- langflow/base/vectorstores/__init__.py +3 -0
- langflow/components/__init__.py +7 -259
- langflow/components/agents.py +6 -0
- langflow/components/anthropic.py +6 -0
- langflow/components/data.py +6 -0
- langflow/components/helpers.py +6 -0
- langflow/components/knowledge_bases/ingestion.py +13 -14
- langflow/components/knowledge_bases/retrieval.py +8 -7
- langflow/components/openai.py +6 -0
- langflow/components/processing/__init__.py +1 -117
- langflow/components/processing/converter.py +3 -149
- langflow/custom/__init__.py +26 -3
- langflow/custom/custom_component/__init__.py +4 -0
- langflow/custom/custom_component/component.py +20 -1738
- langflow/custom/custom_component/component_with_cache.py +1 -8
- langflow/custom/custom_component/custom_component.py +1 -552
- langflow/custom/utils.py +1 -872
- langflow/custom/validate.py +1 -0
- langflow/events/event_manager.py +18 -108
- langflow/field_typing/__init__.py +6 -6
- langflow/field_typing/constants.py +87 -122
- langflow/field_typing/range_spec.py +2 -32
- langflow/frontend/assets/{SlackIcon-Cc7Qnzki.js → SlackIcon-v88osOTA.js} +1 -1
- langflow/frontend/assets/{Wikipedia-7ulMZY46.js → Wikipedia-DD_S2k00.js} +1 -1
- langflow/frontend/assets/{Wolfram-By9PGsHS.js → Wolfram-EO2C5noN.js} +1 -1
- langflow/frontend/assets/{index-DVLIDc2_.js → index-1Gv1mfvk.js} +1 -1
- langflow/frontend/assets/{index-MVW4HTEk.js → index-7v-bzlzf.js} +1 -1
- langflow/frontend/assets/{index-CUzlcce2.js → index-9CbMazbV.js} +1 -1
- langflow/frontend/assets/{index-CU16NJD7.js → index-B8ZHP8g2.js} +1 -1
- langflow/frontend/assets/{index-v8eXbWlM.js → index-B8y2e6vN.js} +1 -1
- langflow/frontend/assets/{index-BX_asvRB.js → index-BBRUGsyr.js} +1 -1
- langflow/frontend/assets/{index-9FL5xjkL.js → index-BGwqQwlh.js} +1 -1
- langflow/frontend/assets/{index-BAn-AzCS.js → index-BIq-k-FG.js} +1 -1
- langflow/frontend/assets/{index-D5c2nNvp.js → index-BSN73YP8.js} +1 -1
- langflow/frontend/assets/{index-DMCerPJM.js → index-BU8R8jRn.js} +1 -1
- langflow/frontend/assets/{index-CvSoff-8.js → index-BV6yx8ey.js} +1 -1
- langflow/frontend/assets/{index-BISPW-f6.js → index-BYIsg-Eh.js} +1 -1
- langflow/frontend/assets/{index-GzOGB_fo.js → index-B_ksDBSQ.js} +1 -1
- langflow/frontend/assets/{index-BIqEYjNT.js → index-Ba1UOZ9A.js} +1 -1
- langflow/frontend/assets/{index-ByxGmq5p.js → index-Ba9tKRQg.js} +1 -1
- langflow/frontend/assets/{index-BLEWsL1U.js → index-Bbfaw8ca.js} +1 -1
- langflow/frontend/assets/{index-C_MhBX6R.js → index-BbuGqvAx.js} +1 -1
- langflow/frontend/assets/{index-RH_I78z_.js → index-BeoXu1YX.js} +1 -1
- langflow/frontend/assets/{index-cYFKmtmg.js → index-BfjZmOnH.js} +1 -1
- langflow/frontend/assets/{index-Bm9i8F4W.js → index-Bjzy_HZB.js} +1 -1
- langflow/frontend/assets/{index-_szO7sta.js → index-BofEkpYB.js} +1 -1
- langflow/frontend/assets/{index-DP1oE6QB.js → index-Bp7Mty2H.js} +1 -1
- langflow/frontend/assets/{index-CeswGUz3.js → index-BqX1H6yK.js} +1 -1
- langflow/frontend/assets/{index-C8pI0lzi.js → index-BqtBAJAN.js} +1 -1
- langflow/frontend/assets/{index-BusCv3bR.js → index-Bsfraj7A.js} +1 -1
- langflow/frontend/assets/{index-BWnKMRFJ.js → index-BtFl7fER.js} +1 -1
- langflow/frontend/assets/{index-DnlVWWU8.js → index-BvX993Sv.js} +1 -1
- langflow/frontend/assets/{index-C676MS3I.js → index-BvgQ2vzM.js} +1 -1
- langflow/frontend/assets/{index-DJ6HD14g.js → index-BwY98u8n.js} +1 -1
- langflow/frontend/assets/{index-C51yNvIL.js → index-C-RIJAOS.js} +1 -1
- langflow/frontend/assets/{index-DiblXWmk.js → index-C1K6A38P.js} +1 -1
- langflow/frontend/assets/{index-Co__gFM1.js → index-C3Vwhx0t.js} +1 -1
- langflow/frontend/assets/{index-Coi86oqP.js → index-C5XUG_gr.js} +1 -1
- langflow/frontend/assets/{index-jwzN3Jd_.js → index-C6ouLG9o.js} +1 -1
- langflow/frontend/assets/{index-CQQ-4XMS.js → index-C7ZJ_Z6f.js} +1 -1
- langflow/frontend/assets/{index-Bl7RpmrB.js → index-CCOGIwGY.js} +1 -1
- langflow/frontend/assets/{index-CVkIdc6y.js → index-CCcye2rt.js} +1 -1
- langflow/frontend/assets/{index-bMhyLtgS.js → index-CFR4yJQB.js} +1 -1
- langflow/frontend/assets/{index-aAgSKWb3.js → index-CIGmPP0H.js} +1 -1
- langflow/frontend/assets/{index-BGt6jQ4x.js → index-CJmMEa6d.js} +1 -1
- langflow/frontend/assets/{index-DX7JcSMz.js → index-CJxD7lyU.js} +1 -1
- langflow/frontend/assets/{index-BZ-A4K98.js → index-CL_vu6ut.js} +1 -1
- langflow/frontend/assets/{index-BMpKFGhI.js → index-COf3UnBn.js} +1 -1
- langflow/frontend/assets/{index-xN8ogFdo.js → index-CV9650h_.js} +1 -1
- langflow/frontend/assets/{index-OsUvqIUr.js → index-CVDzych0.js} +1 -1
- langflow/frontend/assets/{index-BH7AyHxp.js → index-CWIHsC4D.js} +1 -1
- langflow/frontend/assets/{index-mjwtJmkP.js → index-CXCnFZ0L.js} +1 -1
- langflow/frontend/assets/{index-3jlSQi5Y.js → index-Ca_Pw_Dn.js} +1 -1
- langflow/frontend/assets/{index-D-SnFlhU.js → index-Cbb3bX9e.js} +1 -1
- langflow/frontend/assets/{index--e0oQqZh.js → index-CcJtOz-Z.js} +1 -1
- langflow/frontend/assets/{index-S-sc0Cm9.js → index-CfTbTHEv.js} +1 -1
- langflow/frontend/assets/{index-Deu8rlaZ.js → index-ChoxDAgX.js} +1 -1
- langflow/frontend/assets/{index-lnF9Eqr2.js → index-Cn4gw8aE.js} +1 -1
- langflow/frontend/assets/{index-C_NwzK6j.js → index-CnpLg4zX.js} +1 -1
- langflow/frontend/assets/{index-DznH7Jbq.js → index-Cpao2omG.js} +1 -1
- langflow/frontend/assets/{index-DpWrk8mA.js → index-CqoxM01j.js} +1 -1
- langflow/frontend/assets/{index-Bw-TIIC6.js → index-CrHf2Ic1.js} +1 -1
- langflow/frontend/assets/{index-DmYLDQag.js → index-CrV0uIjp.js} +1 -1
- langflow/frontend/assets/{index-Dp7ZQyL3.js → index-CssADaak.js} +1 -1
- langflow/frontend/assets/{index-CNh0rwur.js → index-CtJdNLy9.js} +1 -1
- langflow/frontend/assets/{index-Ca1b7Iag.js → index-CyeWD2dh.js} +1 -1
- langflow/frontend/assets/{index-DcApTyZ7.js → index-D1xzD7uc.js} +1 -1
- langflow/frontend/assets/{index-B3GvPjhD.js → index-D6MuXC4L.js} +1 -1
- langflow/frontend/assets/{index-Cw0UComa.js → index-D8w9zvIF.js} +1 -1
- langflow/frontend/assets/{index-C-2MRYoJ.js → index-D98Gn0A6.js} +1 -1
- langflow/frontend/assets/{index-aWnZIwHd.js → index-DBhjpWkf.js} +1 -1
- langflow/frontend/assets/{index-nw3WF9lY.js → index-DCCRJzcY.js} +1 -1
- langflow/frontend/assets/{index-RjeC0kaX.js → index-DCTRSkEW.js} +1 -1
- langflow/frontend/assets/{index-B_kBTgxV.js → index-DCUfitVj.js} +1 -1
- langflow/frontend/assets/{index-ChsGhZn3.js → index-DDdz-Xcl.js} +1 -1
- langflow/frontend/assets/{index-7yAHPRxv.js → index-DGdMwZjG.js} +1 -1
- langflow/frontend/assets/{index-DjQElpEg.js → index-DGtl2vMw.js} +1 -1
- langflow/frontend/assets/{index-BCXhKCOK.js → index-DHVdkrni.js} +1 -1
- langflow/frontend/assets/{index-S8uJXTOq.js → index-DJBWwjgl.js} +1 -1
- langflow/frontend/assets/{index-qiVTWUuf.js → index-DMAkJ_qX.js} +1 -1
- langflow/frontend/assets/{index-D-WStJI6.js → index-DMEvEQI5.js} +1 -1
- langflow/frontend/assets/{index-BhqVw9WQ.js → index-DNGRoOsp.js} +1 -1
- langflow/frontend/assets/{index-Cu7vC48Y.js → index-DNT_TUTa.js} +1 -1
- langflow/frontend/assets/{index-Bhcv5M0n.js → index-DQKOH_9K.js} +1 -1
- langflow/frontend/assets/{index-CLcaktde.js → index-DQhqqtqQ.js} +1 -1
- langflow/frontend/assets/{index-DZVgPCio.js → index-DRM7KKnG.js} +1 -1
- langflow/frontend/assets/{index-uybez8MR.js → index-DSCtl3a5.js} +1 -1
- langflow/frontend/assets/{index-CJ5A6STv.js → index-DSLNlm0Z.js} +1 -1
- langflow/frontend/assets/{index-Drg8me2a.js → index-DT-PspE-.js} +1 -1
- langflow/frontend/assets/{index-DsEZjOcp.js → index-DTpbH-p8.js} +1 -1
- langflow/frontend/assets/{index-DrXXKzpD.js → index-DWV6MsIq.js} +1 -1
- langflow/frontend/assets/{index-4JIEdyIM.js → index-DWeL4US_.js} +1 -1
- langflow/frontend/assets/{index-BlDsBQ_1.js → index-DYKZHhpU.js} +1 -1
- langflow/frontend/assets/{index-DFY8YFbC.js → index-DZyQHiMR.js} +1 -1
- langflow/frontend/assets/{index-CKPZpkQk.js → index-Dc6qVuSa.js} +1 -1
- langflow/frontend/assets/{index-yyAaYjLR.js → index-DkYuicnC.js} +1 -1
- langflow/frontend/assets/{index-DmVt5Jlx.js → index-Dlj_2mMs.js} +1 -1
- langflow/frontend/assets/{index-BvRIG6P5.js → index-DmGJUrEp.js} +1 -1
- langflow/frontend/assets/{index-BWFIrwW1.js → index-Dn6hpCAZ.js} +1 -1
- langflow/frontend/assets/{index-Cb5G9Ifd.js → index-DrJU8Fgb.js} +1 -1
- langflow/frontend/assets/{index-COoTCxvs.js → index-DsWfdCzp.js} +1 -1
- langflow/frontend/assets/{index-ZjeocHyu.js → index-DvCPWs2_.js} +1 -1
- langflow/frontend/assets/{index-B5LHnuQR.js → index-DvPVq7OP.js} +1 -1
- langflow/frontend/assets/{index-BnCnYnao.js → index-Dw71ufW4.js} +1 -1
- langflow/frontend/assets/{index-AALDfCyt.js → index-DxkJactf.js} +1 -1
- langflow/frontend/assets/{index-k9jP5chN.js → index-Dz2GTphU.js} +1 -1
- langflow/frontend/assets/{index-BdjfHsrf.js → index-Fvd524_c.js} +1 -1
- langflow/frontend/assets/{index-AKVkmT4S.js → index-GAQ0Mk2M.js} +1 -1
- langflow/frontend/assets/{index-BZSa2qz7.js → index-Hm5-4ItD.js} +1 -1
- langflow/frontend/assets/{index-DbfS_UH-.js → index-IT67FzsK.js} +1 -1
- langflow/frontend/assets/{index-BLXN681C.js → index-ItYiij1i.js} +1 -1
- langflow/frontend/assets/{index-CiklyQU3.js → index-IuR_FEdB.js} +1 -1
- langflow/frontend/assets/{index-xV6ystWy.js → index-Jj60FQkv.js} +1 -1
- langflow/frontend/assets/{index-C_157Mb-.js → index-LlvshmVz.js} +1 -1
- langflow/frontend/assets/{index-CDphUsa3.js → index-LwKh3I_W.js} +1 -1
- langflow/frontend/assets/{index-BrDz-PxE.js → index-N-xxmKKH.js} +1 -1
- langflow/frontend/assets/{index-BsdLyYMY.js → index-RwpaHIAH.js} +1 -1
- langflow/frontend/assets/{index-Cu2Xr6_j.js → index-TVvsp-xh.js} +1 -1
- langflow/frontend/assets/{index-CPiM2oyj.js → index-TdE2u9zP.js} +1 -1
- langflow/frontend/assets/{index-DOj_QWqG.js → index-_x-NkYeW.js} +1 -1
- langflow/frontend/assets/{index-YJsAl7vm.js → index-a-YclEbW.js} +1 -1
- langflow/frontend/assets/{index-5-CSw2-z.js → index-e9MFKUCo.js} +1 -1
- langflow/frontend/assets/{index-BSwBVwyF.js → index-krPr8f2F.js} +1 -1
- langflow/frontend/assets/{index-Df6psZEj.js → index-kveiUWuL.js} +1 -1
- langflow/frontend/assets/{index-CF4_Og1m.js → index-lE3oSjJi.js} +1 -1
- langflow/frontend/assets/{index-C6nzdeYx.js → index-lM3UYg7F.js} +1 -1
- langflow/frontend/assets/{index-C-wnbBBY.js → index-nsRk3qgA.js} +1 -1
- langflow/frontend/assets/{index-D234yKNJ.js → index-pBO0SZLD.js} +4 -4
- langflow/frontend/assets/{index-BMvp94tO.js → index-pbZHsbuE.js} +1 -1
- langflow/frontend/assets/{index-hg2y9OAt.js → index-sfX3aWyp.js} +1 -1
- langflow/frontend/assets/{index-DTCrijba.js → index-xQz-VJ0-.js} +1 -1
- langflow/frontend/assets/{index-SB4rw8D5.js → index-yfcsaHS6.js} +1 -1
- langflow/frontend/assets/{index-C-bjC2sz.js → index-zcGjo9fx.js} +1 -1
- langflow/frontend/assets/lazyIconImports-BjqDmNYG.js +2 -0
- langflow/frontend/assets/{use-post-add-user-JUeLDErC.js → use-post-add-user-w3vpKSOB.js} +1 -1
- langflow/frontend/index.html +1 -1
- langflow/graph/__init__.py +4 -4
- langflow/helpers/data.py +2 -2
- langflow/helpers/flow.py +9 -7
- langflow/helpers/user.py +2 -2
- langflow/initial_setup/setup.py +9 -9
- langflow/initial_setup/starter_projects/Basic Prompt Chaining.json +119 -41
- langflow/initial_setup/starter_projects/Basic Prompting.json +45 -19
- langflow/initial_setup/starter_projects/Blog Writer.json +53 -21
- langflow/initial_setup/starter_projects/Custom Component Generator.json +121 -97
- langflow/initial_setup/starter_projects/Document Q&A.json +46 -18
- langflow/initial_setup/starter_projects/Financial Report Parser.json +49 -17
- langflow/initial_setup/starter_projects/Hybrid Search RAG.json +89 -50
- langflow/initial_setup/starter_projects/Image Sentiment Analysis.json +86 -22
- langflow/initial_setup/starter_projects/Instagram Copywriter.json +210 -57
- langflow/initial_setup/starter_projects/Invoice Summarizer.json +132 -35
- langflow/initial_setup/starter_projects/Knowledge Ingestion.json +8 -8
- langflow/initial_setup/starter_projects/Knowledge Retrieval.json +8 -8
- langflow/initial_setup/starter_projects/Market Research.json +174 -48
- langflow/initial_setup/starter_projects/Meeting Summary.json +102 -38
- langflow/initial_setup/starter_projects/Memory Chatbot.json +49 -21
- langflow/initial_setup/starter_projects/News Aggregator.json +140 -39
- langflow/initial_setup/starter_projects/Nvidia Remix.json +153 -181
- langflow/initial_setup/starter_projects/Pok/303/251dex Agent.json" +132 -35
- langflow/initial_setup/starter_projects/Portfolio Website Code Generator.json +106 -43
- langflow/initial_setup/starter_projects/Price Deal Finder.json +136 -39
- langflow/initial_setup/starter_projects/Research Agent.json +206 -53
- langflow/initial_setup/starter_projects/Research Translation Loop.json +66 -34
- langflow/initial_setup/starter_projects/SEO Keyword Generator.json +41 -15
- langflow/initial_setup/starter_projects/SaaS Pricing.json +128 -31
- langflow/initial_setup/starter_projects/Search agent.json +132 -35
- langflow/initial_setup/starter_projects/Sequential Tasks Agents.json +422 -98
- langflow/initial_setup/starter_projects/Simple Agent.json +150 -42
- langflow/initial_setup/starter_projects/Social Media Agent.json +150 -42
- langflow/initial_setup/starter_projects/Text Sentiment Analysis.json +120 -24
- langflow/initial_setup/starter_projects/Travel Planning Agents.json +418 -94
- langflow/initial_setup/starter_projects/Twitter Thread Generator.json +69 -37
- langflow/initial_setup/starter_projects/Vector Store RAG.json +66 -38
- langflow/initial_setup/starter_projects/Youtube Analysis.json +191 -51
- langflow/initial_setup/starter_projects/basic_prompting.py +4 -4
- langflow/initial_setup/starter_projects/blog_writer.py +5 -5
- langflow/initial_setup/starter_projects/complex_agent.py +8 -8
- langflow/initial_setup/starter_projects/document_qa.py +5 -5
- langflow/initial_setup/starter_projects/hierarchical_tasks_agent.py +8 -8
- langflow/initial_setup/starter_projects/memory_chatbot.py +6 -6
- langflow/initial_setup/starter_projects/sequential_tasks_agent.py +7 -7
- langflow/initial_setup/starter_projects/vector_store_rag.py +8 -8
- langflow/inputs/__init__.py +3 -2
- langflow/inputs/constants.py +3 -2
- langflow/inputs/input_mixin.py +49 -310
- langflow/inputs/inputs.py +72 -703
- langflow/inputs/validators.py +2 -18
- langflow/interface/__init__.py +4 -0
- langflow/interface/components.py +3 -491
- langflow/interface/initialize/loading.py +7 -6
- langflow/interface/listing.py +3 -25
- langflow/interface/run.py +1 -1
- langflow/interface/utils.py +3 -111
- langflow/io/__init__.py +2 -2
- langflow/io/schema.py +11 -302
- langflow/load/__init__.py +4 -2
- langflow/load/utils.py +2 -96
- langflow/logging/__init__.py +2 -1
- langflow/logging/setup.py +1 -1
- langflow/main.py +8 -5
- langflow/memory.py +12 -6
- langflow/middleware.py +1 -1
- langflow/processing/process.py +7 -7
- langflow/schema/__init__.py +22 -5
- langflow/schema/artifact.py +1 -1
- langflow/schema/data.py +5 -303
- langflow/schema/dataframe.py +2 -205
- langflow/schema/graph.py +4 -45
- langflow/schema/image.py +2 -67
- langflow/schema/message.py +6 -470
- langflow/schema/playground_events.py +5 -6
- langflow/schema/schema.py +24 -117
- langflow/serialization/constants.py +3 -2
- langflow/serialization/serialization.py +1 -1
- langflow/server.py +1 -2
- langflow/services/__init__.py +1 -2
- langflow/services/auth/mcp_encryption.py +1 -1
- langflow/services/auth/service.py +1 -1
- langflow/services/auth/utils.py +5 -5
- langflow/services/cache/disk.py +2 -2
- langflow/services/cache/factory.py +2 -2
- langflow/services/cache/service.py +2 -2
- langflow/services/cache/utils.py +0 -11
- langflow/services/database/factory.py +1 -1
- langflow/services/database/models/flow/model.py +1 -1
- langflow/services/database/models/message/crud.py +2 -1
- langflow/services/database/models/transactions/crud.py +1 -1
- langflow/services/database/models/user/crud.py +1 -1
- langflow/services/database/service.py +2 -2
- langflow/services/database/utils.py +1 -2
- langflow/services/deps.py +12 -17
- langflow/services/enhanced_manager.py +71 -0
- langflow/services/factory.py +14 -7
- langflow/services/flow/flow_runner.py +4 -4
- langflow/services/job_queue/service.py +2 -1
- langflow/services/manager.py +14 -130
- langflow/services/schema.py +0 -1
- langflow/services/session/service.py +3 -2
- langflow/services/settings/__init__.py +0 -3
- langflow/services/settings/base.py +16 -549
- langflow/services/settings/factory.py +2 -21
- langflow/services/settings/feature_flags.py +2 -11
- langflow/services/settings/service.py +2 -31
- langflow/services/shared_component_cache/factory.py +1 -1
- langflow/services/socket/service.py +1 -1
- langflow/services/socket/utils.py +1 -8
- langflow/services/state/factory.py +1 -1
- langflow/services/state/service.py +3 -2
- langflow/services/storage/factory.py +2 -2
- langflow/services/storage/local.py +1 -2
- langflow/services/storage/s3.py +1 -2
- langflow/services/storage/service.py +2 -1
- langflow/services/store/factory.py +1 -1
- langflow/services/store/service.py +2 -2
- langflow/services/store/utils.py +1 -2
- langflow/services/task/service.py +2 -1
- langflow/services/task/temp_flow_cleanup.py +1 -1
- langflow/services/telemetry/factory.py +1 -1
- langflow/services/telemetry/service.py +2 -3
- langflow/services/tracing/arize_phoenix.py +3 -3
- langflow/services/tracing/base.py +1 -1
- langflow/services/tracing/factory.py +1 -1
- langflow/services/tracing/langfuse.py +2 -2
- langflow/services/tracing/langsmith.py +2 -2
- langflow/services/tracing/langwatch.py +4 -4
- langflow/services/tracing/opik.py +2 -2
- langflow/services/tracing/service.py +17 -11
- langflow/services/tracing/traceloop.py +2 -2
- langflow/services/tracing/utils.py +1 -1
- langflow/services/utils.py +54 -9
- langflow/services/variable/factory.py +1 -1
- langflow/services/variable/kubernetes.py +2 -3
- langflow/services/variable/kubernetes_secrets.py +1 -2
- langflow/services/variable/service.py +2 -3
- langflow/template/__init__.py +2 -9
- langflow/template/field/__init__.py +3 -0
- langflow/template/field/base.py +2 -256
- langflow/template/frontend_node.py +3 -0
- langflow/template/utils.py +2 -216
- langflow/utils/constants.py +28 -204
- langflow/utils/lazy_load.py +3 -14
- langflow/utils/schemas.py +2 -3
- langflow/utils/template_validation.py +2 -2
- langflow/utils/util.py +59 -479
- langflow/utils/validate.py +2 -488
- langflow/utils/voice_utils.py +1 -2
- langflow/worker.py +1 -1
- {langflow_base_nightly-0.5.1.dev3.dist-info → langflow_base_nightly-0.5.1.dev5.dist-info}/METADATA +2 -1
- langflow_base_nightly-0.5.1.dev5.dist-info/RECORD +633 -0
- langflow/base/agents/agent.py +0 -267
- langflow/base/agents/callback.py +0 -130
- langflow/base/agents/context.py +0 -109
- langflow/base/agents/crewai/__init__.py +0 -0
- langflow/base/agents/crewai/crew.py +0 -231
- langflow/base/agents/crewai/tasks.py +0 -12
- langflow/base/agents/default_prompts.py +0 -23
- langflow/base/agents/errors.py +0 -15
- langflow/base/agents/events.py +0 -346
- langflow/base/agents/utils.py +0 -205
- langflow/base/astra_assistants/__init__.py +0 -0
- langflow/base/astra_assistants/util.py +0 -171
- langflow/base/chains/__init__.py +0 -0
- langflow/base/chains/model.py +0 -19
- langflow/base/composio/__init__.py +0 -0
- langflow/base/composio/composio_base.py +0 -1297
- langflow/base/compressors/__init__.py +0 -0
- langflow/base/compressors/model.py +0 -60
- langflow/base/constants.py +0 -46
- langflow/base/curl/__init__.py +0 -0
- langflow/base/curl/parse.py +0 -188
- langflow/base/data/base_file.py +0 -685
- langflow/base/data/docling_utils.py +0 -245
- langflow/base/document_transformers/__init__.py +0 -0
- langflow/base/document_transformers/model.py +0 -43
- langflow/base/embeddings/aiml_embeddings.py +0 -62
- langflow/base/embeddings/model.py +0 -26
- langflow/base/flow_processing/__init__.py +0 -0
- langflow/base/flow_processing/utils.py +0 -86
- langflow/base/huggingface/__init__.py +0 -0
- langflow/base/huggingface/model_bridge.py +0 -133
- langflow/base/langchain_utilities/__init__.py +0 -0
- langflow/base/langchain_utilities/model.py +0 -35
- langflow/base/langchain_utilities/spider_constants.py +0 -1
- langflow/base/langwatch/__init__.py +0 -0
- langflow/base/langwatch/utils.py +0 -18
- langflow/base/mcp/__init__.py +0 -0
- langflow/base/mcp/constants.py +0 -2
- langflow/base/mcp/util.py +0 -1524
- langflow/base/memory/memory.py +0 -49
- langflow/base/memory/model.py +0 -38
- langflow/base/models/aiml_constants.py +0 -51
- langflow/base/models/anthropic_constants.py +0 -47
- langflow/base/models/aws_constants.py +0 -151
- langflow/base/models/chat_result.py +0 -76
- langflow/base/models/google_generative_ai_constants.py +0 -70
- langflow/base/models/groq_constants.py +0 -134
- langflow/base/models/model.py +0 -375
- langflow/base/models/model_input_constants.py +0 -299
- langflow/base/models/model_metadata.py +0 -41
- langflow/base/models/model_utils.py +0 -8
- langflow/base/models/novita_constants.py +0 -35
- langflow/base/models/ollama_constants.py +0 -49
- langflow/base/models/sambanova_constants.py +0 -18
- langflow/base/processing/__init__.py +0 -0
- langflow/base/prompts/utils.py +0 -61
- langflow/base/textsplitters/model.py +0 -28
- langflow/base/tools/base.py +0 -26
- langflow/base/tools/component_tool.py +0 -324
- langflow/base/tools/constants.py +0 -49
- langflow/base/tools/flow_tool.py +0 -131
- langflow/base/tools/run_flow.py +0 -227
- langflow/base/vectorstores/model.py +0 -193
- langflow/base/vectorstores/utils.py +0 -22
- langflow/base/vectorstores/vector_store_connection_decorator.py +0 -52
- langflow/components/FAISS/__init__.py +0 -34
- langflow/components/FAISS/faiss.py +0 -111
- langflow/components/Notion/__init__.py +0 -19
- langflow/components/Notion/add_content_to_page.py +0 -269
- langflow/components/Notion/create_page.py +0 -94
- langflow/components/Notion/list_database_properties.py +0 -68
- langflow/components/Notion/list_pages.py +0 -122
- langflow/components/Notion/list_users.py +0 -77
- langflow/components/Notion/page_content_viewer.py +0 -93
- langflow/components/Notion/search.py +0 -111
- langflow/components/Notion/update_page_property.py +0 -114
- langflow/components/_importing.py +0 -37
- langflow/components/agentql/__init__.py +0 -3
- langflow/components/agentql/agentql_api.py +0 -151
- langflow/components/agents/__init__.py +0 -4
- langflow/components/agents/agent.py +0 -554
- langflow/components/agents/mcp_component.py +0 -501
- langflow/components/aiml/__init__.py +0 -37
- langflow/components/aiml/aiml.py +0 -112
- langflow/components/aiml/aiml_embeddings.py +0 -37
- langflow/components/amazon/__init__.py +0 -36
- langflow/components/amazon/amazon_bedrock_embedding.py +0 -109
- langflow/components/amazon/amazon_bedrock_model.py +0 -124
- langflow/components/amazon/s3_bucket_uploader.py +0 -211
- langflow/components/anthropic/__init__.py +0 -34
- langflow/components/anthropic/anthropic.py +0 -187
- langflow/components/apify/__init__.py +0 -5
- langflow/components/apify/apify_actor.py +0 -325
- langflow/components/arxiv/__init__.py +0 -3
- langflow/components/arxiv/arxiv.py +0 -163
- langflow/components/assemblyai/__init__.py +0 -46
- langflow/components/assemblyai/assemblyai_get_subtitles.py +0 -83
- langflow/components/assemblyai/assemblyai_lemur.py +0 -183
- langflow/components/assemblyai/assemblyai_list_transcripts.py +0 -95
- langflow/components/assemblyai/assemblyai_poll_transcript.py +0 -72
- langflow/components/assemblyai/assemblyai_start_transcript.py +0 -188
- langflow/components/azure/__init__.py +0 -37
- langflow/components/azure/azure_openai.py +0 -95
- langflow/components/azure/azure_openai_embeddings.py +0 -83
- langflow/components/baidu/__init__.py +0 -32
- langflow/components/baidu/baidu_qianfan_chat.py +0 -113
- langflow/components/bing/__init__.py +0 -3
- langflow/components/bing/bing_search_api.py +0 -61
- langflow/components/cassandra/__init__.py +0 -40
- langflow/components/cassandra/cassandra.py +0 -264
- langflow/components/cassandra/cassandra_chat.py +0 -92
- langflow/components/cassandra/cassandra_graph.py +0 -238
- langflow/components/chains/__init__.py +0 -0
- langflow/components/chroma/__init__.py +0 -34
- langflow/components/chroma/chroma.py +0 -167
- langflow/components/cleanlab/__init__.py +0 -40
- langflow/components/cleanlab/cleanlab_evaluator.py +0 -157
- langflow/components/cleanlab/cleanlab_rag_evaluator.py +0 -254
- langflow/components/cleanlab/cleanlab_remediator.py +0 -131
- langflow/components/clickhouse/__init__.py +0 -34
- langflow/components/clickhouse/clickhouse.py +0 -135
- langflow/components/cloudflare/__init__.py +0 -32
- langflow/components/cloudflare/cloudflare.py +0 -81
- langflow/components/cohere/__init__.py +0 -40
- langflow/components/cohere/cohere_embeddings.py +0 -81
- langflow/components/cohere/cohere_models.py +0 -46
- langflow/components/cohere/cohere_rerank.py +0 -51
- langflow/components/composio/__init__.py +0 -73
- langflow/components/composio/composio_api.py +0 -268
- langflow/components/composio/dropbox_compnent.py +0 -11
- langflow/components/composio/github_composio.py +0 -11
- langflow/components/composio/gmail_composio.py +0 -38
- langflow/components/composio/googlecalendar_composio.py +0 -11
- langflow/components/composio/googlemeet_composio.py +0 -11
- langflow/components/composio/googletasks_composio.py +0 -8
- langflow/components/composio/linear_composio.py +0 -11
- langflow/components/composio/outlook_composio.py +0 -11
- langflow/components/composio/reddit_composio.py +0 -11
- langflow/components/composio/slack_composio.py +0 -11
- langflow/components/composio/slackbot_composio.py +0 -11
- langflow/components/composio/supabase_composio.py +0 -11
- langflow/components/composio/todoist_composio.py +0 -11
- langflow/components/composio/youtube_composio.py +0 -11
- langflow/components/confluence/__init__.py +0 -3
- langflow/components/confluence/confluence.py +0 -84
- langflow/components/couchbase/__init__.py +0 -34
- langflow/components/couchbase/couchbase.py +0 -102
- langflow/components/crewai/__init__.py +0 -49
- langflow/components/crewai/crewai.py +0 -107
- langflow/components/crewai/hierarchical_crew.py +0 -46
- langflow/components/crewai/hierarchical_task.py +0 -44
- langflow/components/crewai/sequential_crew.py +0 -52
- langflow/components/crewai/sequential_task.py +0 -73
- langflow/components/crewai/sequential_task_agent.py +0 -143
- langflow/components/custom_component/__init__.py +0 -34
- langflow/components/custom_component/custom_component.py +0 -31
- langflow/components/data/__init__.py +0 -25
- langflow/components/data/api_request.py +0 -545
- langflow/components/data/csv_to_data.py +0 -95
- langflow/components/data/directory.py +0 -113
- langflow/components/data/file.py +0 -586
- langflow/components/data/json_to_data.py +0 -98
- langflow/components/data/news_search.py +0 -164
- langflow/components/data/rss.py +0 -69
- langflow/components/data/sql_executor.py +0 -99
- langflow/components/data/url.py +0 -299
- langflow/components/data/web_search.py +0 -112
- langflow/components/data/webhook.py +0 -56
- langflow/components/datastax/__init__.py +0 -70
- langflow/components/datastax/astra_assistant_manager.py +0 -306
- langflow/components/datastax/astra_db.py +0 -69
- langflow/components/datastax/astra_vectorize.py +0 -124
- langflow/components/datastax/astradb_cql.py +0 -314
- langflow/components/datastax/astradb_graph.py +0 -319
- langflow/components/datastax/astradb_tool.py +0 -414
- langflow/components/datastax/astradb_vectorstore.py +0 -1285
- langflow/components/datastax/create_assistant.py +0 -58
- langflow/components/datastax/create_thread.py +0 -32
- langflow/components/datastax/dotenv.py +0 -35
- langflow/components/datastax/get_assistant.py +0 -37
- langflow/components/datastax/getenvvar.py +0 -30
- langflow/components/datastax/graph_rag.py +0 -141
- langflow/components/datastax/hcd.py +0 -314
- langflow/components/datastax/list_assistants.py +0 -25
- langflow/components/datastax/run.py +0 -89
- langflow/components/deactivated/__init__.py +0 -19
- langflow/components/deactivated/amazon_kendra.py +0 -66
- langflow/components/deactivated/chat_litellm_model.py +0 -158
- langflow/components/deactivated/code_block_extractor.py +0 -26
- langflow/components/deactivated/documents_to_data.py +0 -22
- langflow/components/deactivated/embed.py +0 -16
- langflow/components/deactivated/extract_key_from_data.py +0 -46
- langflow/components/deactivated/json_document_builder.py +0 -59
- langflow/components/deactivated/list_flows.py +0 -20
- langflow/components/deactivated/mcp_sse.py +0 -61
- langflow/components/deactivated/mcp_stdio.py +0 -62
- langflow/components/deactivated/merge_data.py +0 -93
- langflow/components/deactivated/message.py +0 -37
- langflow/components/deactivated/metal.py +0 -54
- langflow/components/deactivated/multi_query.py +0 -59
- langflow/components/deactivated/retriever.py +0 -43
- langflow/components/deactivated/selective_passthrough.py +0 -77
- langflow/components/deactivated/should_run_next.py +0 -40
- langflow/components/deactivated/split_text.py +0 -63
- langflow/components/deactivated/store_message.py +0 -24
- langflow/components/deactivated/sub_flow.py +0 -124
- langflow/components/deactivated/vectara_self_query.py +0 -76
- langflow/components/deactivated/vector_store.py +0 -24
- langflow/components/deepseek/__init__.py +0 -34
- langflow/components/deepseek/deepseek.py +0 -136
- langflow/components/docling/__init__.py +0 -43
- langflow/components/docling/chunk_docling_document.py +0 -186
- langflow/components/docling/docling_inline.py +0 -235
- langflow/components/docling/docling_remote.py +0 -193
- langflow/components/docling/export_docling_document.py +0 -117
- langflow/components/documentloaders/__init__.py +0 -0
- langflow/components/duckduckgo/__init__.py +0 -3
- langflow/components/duckduckgo/duck_duck_go_search_run.py +0 -92
- langflow/components/elastic/__init__.py +0 -37
- langflow/components/elastic/elasticsearch.py +0 -267
- langflow/components/elastic/opensearch.py +0 -243
- langflow/components/embeddings/__init__.py +0 -37
- langflow/components/embeddings/similarity.py +0 -76
- langflow/components/embeddings/text_embedder.py +0 -64
- langflow/components/exa/__init__.py +0 -3
- langflow/components/exa/exa_search.py +0 -68
- langflow/components/firecrawl/__init__.py +0 -43
- langflow/components/firecrawl/firecrawl_crawl_api.py +0 -88
- langflow/components/firecrawl/firecrawl_extract_api.py +0 -136
- langflow/components/firecrawl/firecrawl_map_api.py +0 -89
- langflow/components/firecrawl/firecrawl_scrape_api.py +0 -73
- langflow/components/git/__init__.py +0 -4
- langflow/components/git/git.py +0 -262
- langflow/components/git/gitextractor.py +0 -196
- langflow/components/glean/__init__.py +0 -3
- langflow/components/glean/glean_search_api.py +0 -173
- langflow/components/google/__init__.py +0 -17
- langflow/components/google/gmail.py +0 -192
- langflow/components/google/google_bq_sql_executor.py +0 -157
- langflow/components/google/google_drive.py +0 -92
- langflow/components/google/google_drive_search.py +0 -152
- langflow/components/google/google_generative_ai.py +0 -147
- langflow/components/google/google_generative_ai_embeddings.py +0 -141
- langflow/components/google/google_oauth_token.py +0 -89
- langflow/components/google/google_search_api_core.py +0 -68
- langflow/components/google/google_serper_api_core.py +0 -74
- langflow/components/groq/__init__.py +0 -34
- langflow/components/groq/groq.py +0 -140
- langflow/components/helpers/__init__.py +0 -52
- langflow/components/helpers/calculator_core.py +0 -89
- langflow/components/helpers/create_list.py +0 -40
- langflow/components/helpers/current_date.py +0 -42
- langflow/components/helpers/id_generator.py +0 -42
- langflow/components/helpers/memory.py +0 -251
- langflow/components/helpers/output_parser.py +0 -45
- langflow/components/helpers/store_message.py +0 -90
- langflow/components/homeassistant/__init__.py +0 -7
- langflow/components/homeassistant/home_assistant_control.py +0 -152
- langflow/components/homeassistant/list_home_assistant_states.py +0 -137
- langflow/components/huggingface/__init__.py +0 -37
- langflow/components/huggingface/huggingface.py +0 -197
- langflow/components/huggingface/huggingface_inference_api.py +0 -106
- langflow/components/ibm/__init__.py +0 -34
- langflow/components/ibm/watsonx.py +0 -203
- langflow/components/ibm/watsonx_embeddings.py +0 -135
- langflow/components/icosacomputing/__init__.py +0 -5
- langflow/components/icosacomputing/combinatorial_reasoner.py +0 -84
- langflow/components/input_output/__init__.py +0 -38
- langflow/components/input_output/chat.py +0 -120
- langflow/components/input_output/chat_output.py +0 -200
- langflow/components/input_output/text.py +0 -27
- langflow/components/input_output/text_output.py +0 -29
- langflow/components/jigsawstack/__init__.py +0 -23
- langflow/components/jigsawstack/ai_scrape.py +0 -126
- langflow/components/jigsawstack/ai_web_search.py +0 -136
- langflow/components/jigsawstack/file_read.py +0 -115
- langflow/components/jigsawstack/file_upload.py +0 -94
- langflow/components/jigsawstack/image_generation.py +0 -205
- langflow/components/jigsawstack/nsfw.py +0 -60
- langflow/components/jigsawstack/object_detection.py +0 -124
- langflow/components/jigsawstack/sentiment.py +0 -112
- langflow/components/jigsawstack/text_to_sql.py +0 -90
- langflow/components/jigsawstack/text_translate.py +0 -77
- langflow/components/jigsawstack/vocr.py +0 -107
- langflow/components/langchain_utilities/__init__.py +0 -109
- langflow/components/langchain_utilities/character.py +0 -53
- langflow/components/langchain_utilities/conversation.py +0 -52
- langflow/components/langchain_utilities/csv_agent.py +0 -107
- langflow/components/langchain_utilities/fake_embeddings.py +0 -26
- langflow/components/langchain_utilities/html_link_extractor.py +0 -35
- langflow/components/langchain_utilities/json_agent.py +0 -45
- langflow/components/langchain_utilities/langchain_hub.py +0 -126
- langflow/components/langchain_utilities/language_recursive.py +0 -49
- langflow/components/langchain_utilities/language_semantic.py +0 -138
- langflow/components/langchain_utilities/llm_checker.py +0 -39
- langflow/components/langchain_utilities/llm_math.py +0 -42
- langflow/components/langchain_utilities/natural_language.py +0 -61
- langflow/components/langchain_utilities/openai_tools.py +0 -53
- langflow/components/langchain_utilities/openapi.py +0 -48
- langflow/components/langchain_utilities/recursive_character.py +0 -60
- langflow/components/langchain_utilities/retrieval_qa.py +0 -83
- langflow/components/langchain_utilities/runnable_executor.py +0 -137
- langflow/components/langchain_utilities/self_query.py +0 -80
- langflow/components/langchain_utilities/spider.py +0 -142
- langflow/components/langchain_utilities/sql.py +0 -40
- langflow/components/langchain_utilities/sql_database.py +0 -35
- langflow/components/langchain_utilities/sql_generator.py +0 -78
- langflow/components/langchain_utilities/tool_calling.py +0 -59
- langflow/components/langchain_utilities/vector_store_info.py +0 -49
- langflow/components/langchain_utilities/vector_store_router.py +0 -33
- langflow/components/langchain_utilities/xml_agent.py +0 -71
- langflow/components/langwatch/__init__.py +0 -3
- langflow/components/langwatch/langwatch.py +0 -278
- langflow/components/link_extractors/__init__.py +0 -0
- langflow/components/lmstudio/__init__.py +0 -34
- langflow/components/lmstudio/lmstudioembeddings.py +0 -89
- langflow/components/lmstudio/lmstudiomodel.py +0 -129
- langflow/components/logic/__init__.py +0 -52
- langflow/components/logic/conditional_router.py +0 -171
- langflow/components/logic/data_conditional_router.py +0 -125
- langflow/components/logic/flow_tool.py +0 -110
- langflow/components/logic/listen.py +0 -29
- langflow/components/logic/loop.py +0 -125
- langflow/components/logic/notify.py +0 -88
- langflow/components/logic/pass_message.py +0 -35
- langflow/components/logic/run_flow.py +0 -71
- langflow/components/logic/sub_flow.py +0 -114
- langflow/components/maritalk/__init__.py +0 -32
- langflow/components/maritalk/maritalk.py +0 -52
- langflow/components/mem0/__init__.py +0 -3
- langflow/components/mem0/mem0_chat_memory.py +0 -136
- langflow/components/milvus/__init__.py +0 -34
- langflow/components/milvus/milvus.py +0 -115
- langflow/components/mistral/__init__.py +0 -37
- langflow/components/mistral/mistral.py +0 -114
- langflow/components/mistral/mistral_embeddings.py +0 -58
- langflow/components/models/__init__.py +0 -34
- langflow/components/models/embedding_model.py +0 -114
- langflow/components/models/language_model.py +0 -144
- langflow/components/mongodb/__init__.py +0 -34
- langflow/components/mongodb/mongodb_atlas.py +0 -213
- langflow/components/needle/__init__.py +0 -3
- langflow/components/needle/needle.py +0 -104
- langflow/components/notdiamond/__init__.py +0 -36
- langflow/components/notdiamond/notdiamond.py +0 -228
- langflow/components/novita/__init__.py +0 -32
- langflow/components/novita/novita.py +0 -130
- langflow/components/nvidia/__init__.py +0 -57
- langflow/components/nvidia/nvidia.py +0 -157
- langflow/components/nvidia/nvidia_embedding.py +0 -77
- langflow/components/nvidia/nvidia_ingest.py +0 -317
- langflow/components/nvidia/nvidia_rerank.py +0 -63
- langflow/components/nvidia/system_assist.py +0 -65
- langflow/components/olivya/__init__.py +0 -3
- langflow/components/olivya/olivya.py +0 -116
- langflow/components/ollama/__init__.py +0 -37
- langflow/components/ollama/ollama.py +0 -330
- langflow/components/ollama/ollama_embeddings.py +0 -106
- langflow/components/openai/__init__.py +0 -37
- langflow/components/openai/openai.py +0 -100
- langflow/components/openai/openai_chat_model.py +0 -158
- langflow/components/openrouter/__init__.py +0 -32
- langflow/components/openrouter/openrouter.py +0 -202
- langflow/components/output_parsers/__init__.py +0 -0
- langflow/components/perplexity/__init__.py +0 -34
- langflow/components/perplexity/perplexity.py +0 -75
- langflow/components/pgvector/__init__.py +0 -34
- langflow/components/pgvector/pgvector.py +0 -72
- langflow/components/pinecone/__init__.py +0 -34
- langflow/components/pinecone/pinecone.py +0 -134
- langflow/components/processing/alter_metadata.py +0 -108
- langflow/components/processing/batch_run.py +0 -205
- langflow/components/processing/combine_text.py +0 -39
- langflow/components/processing/create_data.py +0 -110
- langflow/components/processing/data_operations.py +0 -438
- langflow/components/processing/data_to_dataframe.py +0 -70
- langflow/components/processing/dataframe_operations.py +0 -321
- langflow/components/processing/extract_key.py +0 -53
- langflow/components/processing/filter_data.py +0 -42
- langflow/components/processing/filter_data_values.py +0 -88
- langflow/components/processing/json_cleaner.py +0 -103
- langflow/components/processing/lambda_filter.py +0 -154
- langflow/components/processing/llm_router.py +0 -499
- langflow/components/processing/merge_data.py +0 -90
- langflow/components/processing/message_to_data.py +0 -36
- langflow/components/processing/parse_data.py +0 -70
- langflow/components/processing/parse_dataframe.py +0 -68
- langflow/components/processing/parse_json_data.py +0 -90
- langflow/components/processing/parser.py +0 -143
- langflow/components/processing/prompt.py +0 -67
- langflow/components/processing/python_repl_core.py +0 -98
- langflow/components/processing/regex.py +0 -82
- langflow/components/processing/save_file.py +0 -208
- langflow/components/processing/select_data.py +0 -48
- langflow/components/processing/split_text.py +0 -141
- langflow/components/processing/structured_output.py +0 -202
- langflow/components/processing/update_data.py +0 -160
- langflow/components/prototypes/__init__.py +0 -34
- langflow/components/prototypes/python_function.py +0 -73
- langflow/components/qdrant/__init__.py +0 -34
- langflow/components/qdrant/qdrant.py +0 -109
- langflow/components/redis/__init__.py +0 -37
- langflow/components/redis/redis.py +0 -89
- langflow/components/redis/redis_chat.py +0 -43
- langflow/components/sambanova/__init__.py +0 -32
- langflow/components/sambanova/sambanova.py +0 -84
- langflow/components/scrapegraph/__init__.py +0 -40
- langflow/components/scrapegraph/scrapegraph_markdownify_api.py +0 -64
- langflow/components/scrapegraph/scrapegraph_search_api.py +0 -64
- langflow/components/scrapegraph/scrapegraph_smart_scraper_api.py +0 -71
- langflow/components/searchapi/__init__.py +0 -36
- langflow/components/searchapi/search.py +0 -79
- langflow/components/serpapi/__init__.py +0 -3
- langflow/components/serpapi/serp.py +0 -115
- langflow/components/serper/__init__.py +0 -3
- langflow/components/serper/google_serper_api_core.py +0 -74
- langflow/components/supabase/__init__.py +0 -37
- langflow/components/supabase/supabase.py +0 -76
- langflow/components/tavily/__init__.py +0 -4
- langflow/components/tavily/tavily_extract.py +0 -117
- langflow/components/tavily/tavily_search.py +0 -212
- langflow/components/textsplitters/__init__.py +0 -0
- langflow/components/toolkits/__init__.py +0 -0
- langflow/components/tools/__init__.py +0 -72
- langflow/components/tools/calculator.py +0 -103
- langflow/components/tools/google_search_api.py +0 -45
- langflow/components/tools/google_serper_api.py +0 -115
- langflow/components/tools/python_code_structured_tool.py +0 -327
- langflow/components/tools/python_repl.py +0 -97
- langflow/components/tools/search_api.py +0 -87
- langflow/components/tools/searxng.py +0 -145
- langflow/components/tools/serp_api.py +0 -119
- langflow/components/tools/tavily_search_tool.py +0 -344
- langflow/components/tools/wikidata_api.py +0 -102
- langflow/components/tools/wikipedia_api.py +0 -49
- langflow/components/tools/yahoo_finance.py +0 -124
- langflow/components/twelvelabs/__init__.py +0 -52
- langflow/components/twelvelabs/convert_astra_results.py +0 -84
- langflow/components/twelvelabs/pegasus_index.py +0 -311
- langflow/components/twelvelabs/split_video.py +0 -291
- langflow/components/twelvelabs/text_embeddings.py +0 -57
- langflow/components/twelvelabs/twelvelabs_pegasus.py +0 -408
- langflow/components/twelvelabs/video_embeddings.py +0 -100
- langflow/components/twelvelabs/video_file.py +0 -179
- langflow/components/unstructured/__init__.py +0 -3
- langflow/components/unstructured/unstructured.py +0 -121
- langflow/components/upstash/__init__.py +0 -34
- langflow/components/upstash/upstash.py +0 -124
- langflow/components/vectara/__init__.py +0 -37
- langflow/components/vectara/vectara.py +0 -97
- langflow/components/vectara/vectara_rag.py +0 -164
- langflow/components/vectorstores/__init__.py +0 -34
- langflow/components/vectorstores/local_db.py +0 -261
- langflow/components/vertexai/__init__.py +0 -37
- langflow/components/vertexai/vertexai.py +0 -71
- langflow/components/vertexai/vertexai_embeddings.py +0 -67
- langflow/components/weaviate/__init__.py +0 -34
- langflow/components/weaviate/weaviate.py +0 -89
- langflow/components/wikipedia/__init__.py +0 -4
- langflow/components/wikipedia/wikidata.py +0 -86
- langflow/components/wikipedia/wikipedia.py +0 -53
- langflow/components/wolframalpha/__init__.py +0 -3
- langflow/components/wolframalpha/wolfram_alpha_api.py +0 -54
- langflow/components/xai/__init__.py +0 -32
- langflow/components/xai/xai.py +0 -167
- langflow/components/yahoosearch/__init__.py +0 -3
- langflow/components/yahoosearch/yahoo.py +0 -137
- langflow/components/youtube/__init__.py +0 -52
- langflow/components/youtube/channel.py +0 -227
- langflow/components/youtube/comments.py +0 -231
- langflow/components/youtube/playlist.py +0 -33
- langflow/components/youtube/search.py +0 -120
- langflow/components/youtube/trending.py +0 -285
- langflow/components/youtube/video_details.py +0 -263
- langflow/components/youtube/youtube_transcripts.py +0 -118
- langflow/components/zep/__init__.py +0 -3
- langflow/components/zep/zep.py +0 -44
- langflow/custom/attributes.py +0 -86
- langflow/custom/code_parser/__init__.py +0 -3
- langflow/custom/code_parser/code_parser.py +0 -361
- langflow/custom/custom_component/base_component.py +0 -118
- langflow/custom/dependency_analyzer.py +0 -165
- langflow/custom/directory_reader/__init__.py +0 -3
- langflow/custom/directory_reader/directory_reader.py +0 -359
- langflow/custom/directory_reader/utils.py +0 -171
- langflow/custom/eval.py +0 -12
- langflow/custom/schema.py +0 -32
- langflow/custom/tree_visitor.py +0 -21
- langflow/frontend/assets/lazyIconImports-Ci-S9xBA.js +0 -2
- langflow/graph/edge/__init__.py +0 -0
- langflow/graph/edge/base.py +0 -277
- langflow/graph/edge/schema.py +0 -119
- langflow/graph/edge/utils.py +0 -0
- langflow/graph/graph/__init__.py +0 -0
- langflow/graph/graph/ascii.py +0 -202
- langflow/graph/graph/base.py +0 -2185
- langflow/graph/graph/constants.py +0 -58
- langflow/graph/graph/runnable_vertices_manager.py +0 -133
- langflow/graph/graph/schema.py +0 -53
- langflow/graph/graph/state_model.py +0 -66
- langflow/graph/graph/utils.py +0 -1024
- langflow/graph/schema.py +0 -75
- langflow/graph/state/__init__.py +0 -0
- langflow/graph/state/model.py +0 -237
- langflow/graph/utils.py +0 -229
- langflow/graph/vertex/__init__.py +0 -0
- langflow/graph/vertex/base.py +0 -811
- langflow/graph/vertex/constants.py +0 -0
- langflow/graph/vertex/exceptions.py +0 -4
- langflow/graph/vertex/param_handler.py +0 -255
- langflow/graph/vertex/schema.py +0 -26
- langflow/graph/vertex/utils.py +0 -19
- langflow/graph/vertex/vertex_types.py +0 -489
- langflow/legacy_custom/__init__.py +0 -0
- langflow/legacy_custom/customs.py +0 -16
- langflow/load/load.py +0 -250
- langflow/logging/logger.py +0 -369
- langflow/processing/utils.py +0 -25
- langflow/schema/openai_responses_schemas.py +0 -74
- langflow/schema/serialize.py +0 -13
- langflow/services/chat/config.py +0 -2
- langflow/services/settings/auth.py +0 -130
- langflow/services/settings/constants.py +0 -31
- langflow/services/settings/manager.py +0 -49
- langflow/services/settings/utils.py +0 -40
- langflow/template/field/prompt.py +0 -2
- langflow/template/frontend_node/__init__.py +0 -6
- langflow/template/frontend_node/base.py +0 -212
- langflow/template/frontend_node/constants.py +0 -65
- langflow/template/frontend_node/custom_components.py +0 -97
- langflow/template/template/__init__.py +0 -0
- langflow/template/template/base.py +0 -99
- langflow/utils/async_helpers.py +0 -42
- langflow/utils/concurrency.py +0 -60
- langflow/utils/util_strings.py +0 -56
- langflow_base_nightly-0.5.1.dev3.dist-info/RECORD +0 -1159
- {langflow_base_nightly-0.5.1.dev3.dist-info → langflow_base_nightly-0.5.1.dev5.dist-info}/WHEEL +0 -0
- {langflow_base_nightly-0.5.1.dev3.dist-info → langflow_base_nightly-0.5.1.dev5.dist-info}/entry_points.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as i,r as t}from"./index-
|
|
1
|
+
import{j as i,r as t}from"./index-pBO0SZLD.js";const l=s=>i.jsxs("svg",{viewBox:"12 33 72 29",fill:"none",xmlns:"http://www.w3.org/2000/svg",...s,children:[i.jsxs("g",{clipPath:"url(#clip0_702_1449)",children:[i.jsx("path",{d:"M38.0469 33H12V62.1892H38.0469L44.5902 57.1406V38.0485L38.0469 33ZM17.0478 38.0485H39.5424V57.1459H17.0478V38.0485Z",fill:s.isDark?"#ffffff":"#0A0A0A"}),i.jsx("path",{d:"M82.0705 38.2605V33.3243H58.2546L51.788 38.2605V45.038L58.2546 49.9742H79.0107V56.9286H53.076V61.8648H77.5334L84 56.9286V49.9742L77.5334 45.038H56.7772V38.2605H82.0705Z",fill:s.isDark?"#ffffff":"#0A0A0A"})]}),i.jsx("defs",{children:i.jsx("clipPath",{id:"clip0_702_1449",children:i.jsx("rect",{width:"96",height:"96",fill:"white"})})})]}),e=t.forwardRef((s,f)=>i.jsx(l,{ref:f,...s}));export{e as HCDIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as C,r as o}from"./index-D234yKNJ.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-pBO0SZLD.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,2 +1,2 @@
|
|
|
1
|
-
import{j as c,r as t}from"./index-
|
|
1
|
+
import{j as c,r as t}from"./index-pBO0SZLD.js";const r=l=>c.jsxs("svg",{width:697,height:697,viewBox:"0 0 697 697",fill:"none",xmlns:"http://www.w3.org/2000/svg",...l,children:[c.jsx("path",{d:`M341.847921,185.264125c-13.42293,23.249376-12.347471,50.877388,0.401709,72.451244,3.225931,5.459143,3.345505,12.207007,0.174798,17.69869l-48.852472,84.61514c-3.18275,5.512656-9.1167,8.767205-15.481774,8.699138-12.415908-.13284-25.026497,2.950045-36.559278,9.6085-34.331853,19.821505-46.094999,63.721679-26.273494,98.053532,19.821549,34.33193,63.721743,46.094757,98.053597,26.273252,11.532781-6.658454,20.508022-16.037949,26.600933-26.85686,3.123545-5.546426,8.909087-9.058026,15.274517-9.058117l97.705052.000012c6.314731.000014,12.107535,3.432422,15.203594,8.93605,12.65789,22.501254,37.082709,37.493928,64.94011,36.600417,38.349672-1.230173,69.281722-33.108828,69.419913-71.478015.143192-39.764396-32.048611-72.044287-71.779567-72.044476-26.846015-.00009-50.235009,14.745435-62.54359,36.573359-3.114983,5.523677-8.899051,9.00096-15.239989,9.000931l-95.950864.000159c-15.201841-.000006-24.703043-16.45657-17.102128-29.621754l47.975569-83.095807c3.157398-5.468647,9.026328-8.769166,15.340538-8.698443,25.815666.288662,51.012155-13.367473,64.167032-37.93976,17.644134-32.958183,6.647958-74.587984-24.980446-94.51786-34.663711-21.84271-80.199374-10.350384-100.49376,24.800671Z
|
|
2
2
|
M323.785578,413.729145c14.784192,25.606971,6.010559,58.350615-19.596489,73.134851s-58.350647,6.01068-73.134927-19.596445-6.010559-58.350615,19.596489-73.134851c25.607048-14.784236,58.350647-6.01068,73.134927,19.596445Z`,fill:l.isDark?"#FFFFFF":"#000000"}),c.jsx("path",{d:"M572.283355,593.964596c-47.042646,32.305387-103.837611,51.438401-165.06516,52.07923-164.731918,1.724141-300.426141-132.22655-300.738501-296.967195-.312099-164.602718,133.029516-298.13692,297.559776-298.13692,62.422076,0,120.354912,19.221075,168.202634,52.06751,1.932802,1.326827,4.559313-.028862,4.559337-2.373257l.000546-53.16979c.000011-1.048757-.562682-2.02097-1.475604-2.537173C525.033846,16.489584,466.971795.188457,405.117629.001612,212.700173-.579629,55.540912,156.084111,55.54226,348.502446c.001349,192.470068,156.029578,348.497554,348.499958,348.497554,62.256594,0,120.700306-16.324561,171.284182-44.926817.912763-.516115,1.475336-1.488098,1.475331-2.536674l-.000234-53.172985c-.00001-2.322378-2.603713-3.713615-4.518142-2.398928Z",fill:l.isDark?"#FFFFFF":"#000000"})]}),a=t.forwardRef((l,s)=>c.jsx(r,{ref:s,...l}));export{a as CleanlabIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as r,r as l}from"./index-
|
|
1
|
+
import{j as r,r as l}from"./index-pBO0SZLD.js";const x=t=>r.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 204 146.6",fill:"none",...t,children:[r.jsx("rect",{fill:"currentColor",x:"43.9",y:"50.3",width:"64.3",height:"8.7",rx:"2.6",ry:"2.6"}),r.jsx("rect",{fill:"currentColor",y:"50.3",width:"35.3",height:"8.7",rx:"2.6",ry:"2.6"}),r.jsx("rect",{fill:"currentColor",x:"124.1",y:"50.3",width:"40.3",height:"8.7",rx:"2.6",ry:"2.6"}),r.jsx("rect",{fill:"currentColor",x:"129.9",y:"37.8",width:"34.5",height:"8.7",rx:"2.6",ry:"2.6"}),r.jsx("rect",{fill:"currentColor",x:"168.9",y:"37.8",width:"27.3",height:"8.7",rx:"2.6",ry:"2.6"}),r.jsx("rect",{fill:"currentColor",x:"157.3",y:"25",width:"31.1",height:"8.7",rx:"2.6",ry:"2.6"}),r.jsx("rect",{fill:"currentColor",x:"167.1",y:"12.5",width:"9.2",height:"8.7",rx:"2.6",ry:"2.6"}),r.jsx("rect",{fill:"currentColor",x:"74.3",y:"112.6",width:"15.9",height:"9",rx:"2.6",ry:"2.6"}),r.jsx("rect",{fill:"currentColor",x:"101.8",y:"112.6",width:"10.4",height:"9",rx:"2.6",ry:"2.6"}),r.jsx("rect",{fill:"currentColor",x:"117",y:"112.6",width:"28",height:"9",rx:"2.6",ry:"2.6"}),r.jsx("rect",{fill:"currentColor",x:"131",y:"100.1",width:"11.6",height:"9",rx:"2.6",ry:"2.6"}),r.jsx("rect",{fill:"currentColor",x:"52.4",y:"112.6",width:"9.2",height:"9",rx:"2.6",ry:"2.6"}),r.jsx("path",{fill:"currentColor",d:"M94.7,127.7c0-1.4,1.1-2.6,2.6-2.6h4c1.4,0,2.6,1.1,2.6,2.6v3.9c0,1.4-1.1,2.6-2.6,2.6h-4c-1.4,0-2.6-1.1-2.6-2.6v-3.9Z"}),r.jsx("rect",{fill:"currentColor",x:"85.8",y:"137.6",width:"8.7",height:"9",rx:"2.6",ry:"2.6"}),r.jsx("rect",{fill:"currentColor",x:"120.4",width:"11.4",height:"8.7",rx:"2.6",ry:"2.6"}),r.jsx("rect",{fill:"currentColor",x:"55.8",y:"37.8",width:"29",height:"8.7",rx:"2.6",ry:"2.6"}),r.jsx("rect",{fill:"currentColor",x:"109.7",y:"12.5",width:"17.6",height:"8.7",rx:"2.6",ry:"2.6"}),r.jsx("rect",{fill:"currentColor",x:"98.8",y:"25",width:"28.5",height:"8.7",rx:"2.6",ry:"2.6"}),r.jsx("rect",{fill:"currentColor",x:"187.4",y:"50.3",width:"16.6",height:"8.7",rx:"2.6",ry:"2.6"}),r.jsx("rect",{fill:"currentColor",x:"30.6",y:"62.8",width:"82.1",height:"8.7",rx:"2.6",ry:"2.6"}),r.jsx("rect",{fill:"currentColor",x:"105.1",y:"87.8",width:"32.1",height:"8.7",rx:"2.6",ry:"2.6"}),r.jsx("rect",{fill:"currentColor",x:"43.9",y:"75.3",width:"104.3",height:"8.7",rx:"2.6",ry:"2.6"}),r.jsx("rect",{fill:"currentColor",x:"27.9",y:"87.8",width:"38.8",height:"8.7",rx:"2.6",ry:"2.6"}),r.jsx("rect",{fill:"currentColor",x:"63.3",y:"100.1",width:"12.7",height:"9",rx:"2.6",ry:"2.6"}),r.jsx("rect",{fill:"currentColor",x:"108.1",y:"100.1",width:"13.7",height:"9",rx:"2.6",ry:"2.6"}),r.jsx("rect",{fill:"currentColor",x:"39.8",y:"100.1",width:"12.9",height:"9",rx:"2.6",ry:"2.6"}),r.jsx("rect",{fill:"currentColor",x:"124.1",y:"62.8",width:"33.1",height:"8.7",rx:"2.6",ry:"2.6"})]}),h=l.forwardRef((t,e)=>r.jsx(x,{ref:e,...t}));export{h as TwelveLabsIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as r,r as e}from"./index-
|
|
1
|
+
import{j as r,r as e}from"./index-pBO0SZLD.js";const t=s=>r.jsxs("svg",{fill:"none",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",...s,children:[r.jsx("path",{d:"M16 8.016A8.522 8.522 0 008.016 16h-.032A8.521 8.521 0 000 8.016v-.032A8.521 8.521 0 007.984 0h.032A8.522 8.522 0 0016 7.984v.032z",fill:"url(#prefix__paint0_radial_980_20147)"}),r.jsx("defs",{children:r.jsxs("radialGradient",{id:"prefix__paint0_radial_980_20147",cx:"0",cy:"0",r:"1",gradientUnits:"userSpaceOnUse",gradientTransform:"matrix(16.1326 5.4553 -43.70045 129.2322 1.588 6.503)",children:[r.jsx("stop",{offset:".067",stopColor:"#9168C0"}),r.jsx("stop",{offset:".343",stopColor:"#5684D1"}),r.jsx("stop",{offset:".672",stopColor:"#1BA1E3"})]})})]}),a=e.forwardRef((s,o)=>r.jsx(t,{ref:o,...s}));export{a as GoogleGenerativeAIIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as s,r}from"./index-
|
|
1
|
+
import{j as s,r}from"./index-pBO0SZLD.js";const o=t=>s.jsxs("svg",{width:"1.1em",height:"1.1em",viewBox:"0 0 501 434",fill:"none",xmlns:"http://www.w3.org/2000/svg",...t,children:[s.jsx("path",{d:"M221.202 0.944641C189.435 0.944641 160.93 20.4579 149.437 50.0725L0.462402 433.945H113.632L230.894 131.791H230.943C233.886 124.427 241.085 119.224 249.5 119.224C257.915 119.224 265.114 124.427 268.057 131.791H283.681V70.5011H254.679L281.673 0.944641H221.202Z",fill:"#213ED7"}),s.jsx("path",{d:"M149.445 50.0726C160.471 21.6619 187.153 2.54782 217.352 1.04075L217.315 0.944641H279.722C311.489 0.944641 339.993 20.4579 351.486 50.0725L500.461 433.945H385.356L240.893 61.6995C232.622 43.4564 214.251 30.7668 192.917 30.7668C171.53 30.7668 153.122 43.5188 144.88 61.834L149.445 50.0726Z",fill:"#566DE8"})]}),x=r.forwardRef((t,e)=>s.jsx(o,{ref:e,...t}));export{x as AssemblyAIIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as t,r}from"./index-
|
|
1
|
+
import{j as t,r}from"./index-pBO0SZLD.js";const h=s=>s.isDark?t.jsxs("svg",{width:"38",height:"38",viewBox:"0 0 280 196",fill:"none",xmlns:"http://www.w3.org/2000/svg",...s,children:[t.jsx("path",{d:"M201.88 0H159.04L237.16 196H280L201.88 0Z",fill:"#FAFAF8"}),t.jsx("path",{d:"M78.12 0L0 196H43.68L59.6568 154.84H141.383L157.36 196H201.04L122.92 0H78.12ZM73.7856 118.44L100.52 49.56L127.254 118.44H73.7856Z",fill:"#FAFAF8"})]}):t.jsxs("svg",{width:"38",height:"38",viewBox:"0 0 280 196",fill:"none",xmlns:"http://www.w3.org/2000/svg",...s,children:[t.jsx("path",{d:"M201.88 0H159.04L237.16 196H280L201.88 0Z",fill:"#1F1F1E"}),t.jsx("path",{d:"M78.12 0L0 196H43.68L59.6568 154.84H141.383L157.36 196H201.04L122.92 0H78.12ZM73.7856 118.44L100.52 49.56L127.254 118.44H73.7856Z",fill:"#1F1F1E"})]}),n=r.forwardRef((s,i)=>t.jsx(h,{ref:i,...s}));export{n as AnthropicIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as L,r as s}from"./index-
|
|
1
|
+
import{j as L,r as s}from"./index-pBO0SZLD.js";const t=l=>{const C=l.isDark?"#fff":"#000";return L.jsxs("svg",{viewBox:"0 0 646 854",fill:"none",xmlns:"http://www.w3.org/2000/svg",...l,children:[L.jsx("path",{d:"M140.629 0.239929C132.66 1.52725 123.097 5.69568 116.354 10.845C95.941 26.3541 80.1253 59.2728 73.4435 100.283C70.9302 115.792 69.2138 137.309 69.2138 153.738C69.2138 173.109 71.4819 197.874 74.7309 214.977C75.4665 218.778 75.8343 222.15 75.5278 222.395C75.2826 222.64 72.2788 225.092 68.9072 227.789C57.3827 236.984 44.2029 251.145 35.1304 264.08C17.7209 288.784 6.44151 316.86 1.72133 347.265C-0.117698 359.28 -0.608106 383.555 0.863118 395.57C4.11207 423.278 12.449 446.695 26.7321 468.151L31.391 475.078L30.0424 477.346C20.4794 493.407 12.3264 516.64 8.52575 538.953C5.522 556.608 5.15419 561.328 5.15419 584.99C5.15419 608.837 5.4607 613.557 8.28054 630.047C11.6521 649.786 18.5178 670.689 26.1804 684.605C28.6938 689.141 34.8239 698.581 35.5595 699.072C35.8047 699.194 35.0691 701.462 33.9044 704.098C25.077 723.408 17.537 749.093 14.4106 770.733C12.2038 785.567 11.8973 790.349 11.8973 805.981C11.8973 825.903 13.0007 835.589 17.1692 851.466L17.7822 853.795H44.019H70.3172L68.6007 850.546C57.9957 830.93 57.0149 794.517 66.1487 758.166C70.3172 741.369 75.0374 729.048 83.8647 712.067L89.1366 701.769V695.455C89.1366 689.57 89.014 688.896 87.1137 685.034C85.6424 682.091 83.6808 679.578 80.1866 676.145C74.2404 670.383 69.9494 664.314 66.5165 656.835C51.4365 624.1 48.494 575.489 59.0991 534.049C63.5128 516.762 70.8076 501.376 78.4702 492.978C83.6808 487.215 86.378 480.779 86.378 474.097C86.378 467.17 83.926 461.469 78.4089 455.523C62.5932 438.604 52.8464 418.006 49.3522 394.038C44.3868 359.893 53.3981 322.683 73.8726 293.198C93.9181 264.263 122.055 245.689 153.503 240.724C160.552 239.559 173.732 239.743 181.088 241.092C189.119 242.502 194.145 242.072 199.295 239.62C205.67 236.617 208.858 232.877 212.597 224.295C215.907 216.633 218.482 212.464 225.409 203.821C233.746 193.461 241.776 186.411 254.649 177.89C269.362 168.266 286.097 161.278 302.771 157.906C308.839 156.68 311.659 156.496 323 156.496C334.341 156.496 337.161 156.68 343.229 157.906C367.688 162.872 391.964 175.5 411.335 193.399C415.503 197.261 425.495 209.644 428.683 214.794C429.909 216.816 432.055 221.108 433.403 224.295C437.142 232.877 440.33 236.617 446.705 239.62C451.671 242.011 456.881 242.502 464.605 241.214C476.804 239.13 486.183 239.314 498.137 241.766C538.841 249.98 574.273 283.512 589.966 328.446C603.636 367.862 599.774 409.118 579.422 440.626C575.989 445.96 572.556 450.251 567.591 455.523C556.863 466.986 556.863 481.208 567.53 492.978C585.062 512.165 596.035 559.367 592.724 600.99C590.518 628.453 583.468 653.035 573.782 666.95C572.066 669.402 568.511 673.57 565.813 676.145C562.319 679.578 560.358 682.091 558.886 685.034C556.986 688.896 556.863 689.57 556.863 695.455V701.769L562.135 712.067C570.963 729.048 575.683 741.369 579.851 758.166C588.863 794.027 588.066 829.704 577.767 849.995C576.909 851.711 576.173 853.305 576.173 853.489C576.173 853.673 587.882 853.795 602.226 853.795H628.218L628.892 851.159C629.26 849.75 629.873 847.604 630.179 846.378C630.854 843.681 632.202 835.712 633.306 828.049C634.348 820.325 634.348 791.881 633.306 783.299C629.383 752.158 622.823 727.454 612.096 704.098C610.931 701.462 610.195 699.194 610.44 699.072C610.747 698.888 612.463 696.436 614.302 693.677C627.666 673.448 635.88 648.008 640.049 614.415C641.152 605.158 641.152 565.374 640.049 556.485C637.106 533.559 633.551 517.988 627.666 502.234C625.214 495.675 618.716 481.821 615.958 477.346L614.609 475.078L619.268 468.151C633.551 446.695 641.888 423.278 645.137 395.57C646.608 383.555 646.118 359.28 644.279 347.265C639.497 316.798 628.279 288.845 610.87 264.08C601.797 251.145 588.617 236.984 577.093 227.789C573.721 225.092 570.717 222.64 570.472 222.395C570.166 222.15 570.534 218.778 571.269 214.977C578.687 176.296 578.441 128.053 570.656 90.3524C563.913 57.4951 551.653 31.3808 535.837 16.3008C523.209 4.28578 510.336 -0.863507 494.888 0.11731C459.456 2.20154 430.89 42.9667 419.61 107.21C417.771 117.57 416.178 129.708 416.178 133.018C416.178 134.305 415.932 135.347 415.626 135.347C415.319 135.347 412.929 134.121 410.354 132.589C383.014 116.405 352.608 107.762 323 107.762C293.392 107.762 262.986 116.405 235.646 132.589C233.071 134.121 230.681 135.347 230.374 135.347C230.068 135.347 229.822 134.305 229.822 133.018C229.822 129.585 228.167 117.08 226.39 107.21C216.152 49.5259 192.674 11.3354 161.472 1.71112C157.181 0.423799 144.982 -0.434382 140.629 0.239929ZM151.051 50.139C159.878 57.1273 169.686 77.1114 175.326 99.4863C176.368 103.532 177.471 108.191 177.778 109.907C178.023 111.563 178.697 115.302 179.249 118.183C181.64 131.179 182.743 145.217 182.866 162.32L182.927 179.178L178.697 185.43L174.468 191.744H164.598C153.074 191.744 141.61 193.216 130.637 196.158C126.714 197.139 122.913 198.12 122.178 198.304C121.013 198.549 120.829 198.181 120.155 193.154C116.538 165.875 116.722 135.654 120.707 110.52C125.12 82.5059 135.419 57.1273 145.472 49.6486C147.863 47.8708 148.292 47.9321 151.051 50.139ZM500.589 49.7098C506.658 54.1848 513.34 66.0772 518.305 81.2798C528.297 111.685 531.117 153.431 525.845 193.154C525.171 198.181 524.987 198.549 523.822 198.304C523.087 198.12 519.286 197.139 515.363 196.158C504.39 193.216 492.926 191.744 481.402 191.744H471.532L467.303 185.43L463.073 179.178L463.134 162.32C463.257 138.535 465.464 119.961 470.735 99.3024C476.314 77.1114 486.183 57.1273 494.949 50.139C497.708 47.9321 498.137 47.8708 500.589 49.7098Z",fill:C}),L.jsx("path",{d:"M313.498 358.237C300.195 359.525 296.579 360.015 290.203 361.303C279.843 363.448 265.989 368.23 256.365 372.95C222.895 389.317 199.846 416.596 192.796 448.166C191.386 454.419 191.202 456.503 191.202 467.047C191.202 477.468 191.386 479.736 192.735 485.682C202.114 526.938 240.12 557.405 289.284 562.983C299.95 564.148 346.049 564.148 356.715 562.983C396.193 558.508 430.154 537.114 445.418 507.076C449.463 499.046 451.425 493.835 453.264 485.682C454.613 479.736 454.797 477.468 454.797 467.047C454.797 456.503 454.613 454.419 453.203 448.166C442.965 402.313 398.461 366.207 343.903 359.341C336.792 358.483 318.157 357.747 313.498 358.237ZM336.424 391.585C354.631 393.547 372.96 400.045 387.672 409.853C395.58 415.125 406.737 426.159 411.518 433.393C417.403 442.342 420.774 451.476 422.307 462.572C422.981 467.66 422.614 471.522 420.774 479.736C417.893 491.996 408.943 504.808 396.867 513.758C391.227 517.865 379.519 523.812 372.347 526.141C358.738 530.493 349.849 531.29 318.095 531.045C297.376 530.861 293.697 530.677 287.751 529.574C267.461 525.773 251.4 517.681 239.753 505.36C230.312 495.429 226.021 486.357 223.692 471.706C222.65 464.901 224.611 453.622 228.596 444.12C233.439 432.534 245.944 418.129 258.327 409.853C272.671 400.29 291.552 393.486 308.9 391.647C315.582 390.911 329.742 390.911 336.424 391.585Z",fill:C}),L.jsx("path",{d:"M299.584 436.336C294.925 438.849 291.676 445.224 292.657 449.944C293.76 455.032 298.235 460.182 305.223 464.412C308.963 466.68 309.208 466.986 309.392 469.254C309.514 470.603 309.024 474.465 308.35 477.898C307.614 481.269 307.062 484.825 307.062 485.806C307.124 488.442 309.576 492.733 312.15 494.817C314.419 496.656 314.848 496.717 321.223 496.901C327.047 497.085 328.273 496.962 330.602 495.859C336.61 492.916 338.142 487.522 335.935 477.162C334.096 468.519 334.464 467.17 339.062 464.534C343.904 461.714 349.054 456.749 350.586 453.377C353.529 446.941 350.831 439.646 344.333 436.274C342.74 435.477 340.778 435.11 337.897 435.11C333.422 435.11 330.541 436.152 325.269 439.523L322.265 441.424L320.365 440.259C312.58 435.661 311.17 435.11 306.449 435.171C303.078 435.171 301.239 435.477 299.584 436.336Z",fill:C}),L.jsx("path",{d:"M150.744 365.165C139.894 368.598 131.802 376.567 127.634 387.908C125.611 393.303 124.63 401.824 125.488 406.421C127.511 417.394 136.522 427.386 146.76 430.145C159.633 433.516 169.257 431.309 177.778 422.85C182.743 418.007 185.441 413.777 188.138 406.911C190.099 402.069 190.222 401.211 190.222 394.345L190.283 386.989L187.709 381.717C183.601 373.38 176.184 367.188 167.602 364.92C162.759 363.694 154.974 363.756 150.744 365.165Z",fill:C}),L.jsx("path",{d:"M478.153 364.982C469.755 367.25 462.276 373.502 458.291 381.717L455.717 386.989L455.778 394.345C455.778 401.211 455.901 402.069 457.862 406.911C460.56 413.777 463.257 418.007 468.222 422.85C476.743 431.309 486.367 433.516 499.241 430.145C506.658 428.183 514.075 421.93 517.631 414.635C520.696 408.444 521.431 403.969 520.451 396.919C518.183 380.797 508.742 369.089 494.704 364.982C490.597 363.756 482.628 363.756 478.153 364.982Z",fill:C})]})},a=s.forwardRef((l,C)=>L.jsx(t,{ref:C,...l}));export{a as OllamaIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as l,r as c}from"./index-
|
|
1
|
+
import{j as l,r as c}from"./index-pBO0SZLD.js";const h=s=>l.jsxs("svg",{width:"1em",height:"1em",viewBox:"0 0 87.3 78",xmlns:"http://www.w3.org/2000/svg",...s,children:[l.jsx("path",{d:"m6.6 66.85 3.85 6.65c.8 1.4 1.95 2.5 3.3 3.3l13.75-23.8h-27.5c0 1.55.4 3.1 1.2 4.5z",fill:"#0066da"}),l.jsx("path",{d:"m43.65 25-13.75-23.8c-1.35.8-2.5 1.9-3.3 3.3l-25.4 44a9.06 9.06 0 0 0 -1.2 4.5h27.5z",fill:"#00ac47"}),l.jsx("path",{d:"m73.55 76.8c1.35-.8 2.5-1.9 3.3-3.3l1.6-2.75 7.65-13.25c.8-1.4 1.2-2.95 1.2-4.5h-27.502l5.852 11.5z",fill:"#ea4335"}),l.jsx("path",{d:"m43.65 25 13.75-23.8c-1.35-.8-2.9-1.2-4.5-1.2h-18.5c-1.6 0-3.15.45-4.5 1.2z",fill:"#00832d"}),l.jsx("path",{d:"m59.8 53h-32.3l-13.75 23.8c1.35.8 2.9 1.2 4.5 1.2h50.8c1.6 0 3.15-.45 4.5-1.2z",fill:"#2684fc"}),l.jsx("path",{d:"m73.4 26.5-12.7-22c-.8-1.4-1.95-2.5-3.3-3.3l-13.75 23.8 16.15 28h27.45c0-1.55-.4-3.1-1.2-4.5z",fill:"#ffba00"})]}),e=c.forwardRef((s,t)=>l.jsx(h,{ref:t,...s}));export{e as GoogleDriveIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as c,r as h}from"./index-D234yKNJ.js";const e=l=>c.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 256 256",...l,children:[c.jsx("path",{fill:"#fff",d:"M230.721 172.7a18.97 18.97 0 0 0-2.575-5.692c.25-.917.441-1.849.568-2.791.829-5.976-1.243-11.447-5.147-15.68-2.115-2.312-4.382-3.839-6.783-4.776a90.602 90.602 0 0 0 2.377-20.568c0-3.163-.179-6.261-.479-9.313a105.88 105.88 0 0 0-.567-4.56 90.985 90.985 0 0 0-3.051-13.21 91.22 91.22 0 0 0-3.054-8.374 91.93 91.93 0 0 0-6.041-11.754 81.369 81.369 0 0 0-4.907-7.262 68.979 68.979 0 0 0-2.704-3.446 90.535 90.535 0 0 0-9.033-9.486 69.938 69.938 0 0 0-3.315-2.862 81.76 81.76 0 0 0-3.424-2.704 96.056 96.056 0 0 0-7.262-4.907c-13.781-8.37-29.942-13.17-47.215-13.17-50.292 0-91.052 40.762-91.052 91.051-.002 7.012.81 14 2.42 20.824-2.16.938-4.23 2.4-6.15 4.515-3.903 4.231-5.976 9.682-5.147 15.658.126.949.315 1.889.567 2.813a19.006 19.006 0 0 0-2.573 5.694c-1.2 4.561-.805 8.674.72 12.278-1.658 4.71-1.244 9.726.915 14.087 1.57 3.185 3.817 5.649 6.587 7.851 3.293 2.618 7.415 4.842 12.387 6.976 5.932 2.53 13.173 4.907 16.466 5.779 8.506 2.202 16.662 3.598 24.928 3.666 11.777.109 21.919-2.66 29.18-9.747a88.02 88.02 0 0 0 10.752.654 93.752 93.752 0 0 0 11.358-.715c7.244 7.132 17.425 9.926 29.245 9.814 8.265-.066 16.421-1.462 24.905-3.667 3.315-.872 10.553-3.249 16.488-5.779 4.972-2.137 9.094-4.361 12.409-6.975 2.749-2.203 4.994-4.666 6.565-7.851 2.181-4.362 2.573-9.378.938-14.088 1.51-3.604 1.903-7.726.704-12.283Zm-8.44 11.973c1.671 3.171 1.778 6.754.304 10.091-2.236 5.057-7.79 9.041-18.577 13.318-6.708 2.66-12.85 4.361-12.904 4.376-8.872 2.301-16.896 3.47-23.842 3.47-11.502 0-20.061-3.174-25.489-9.442a85.461 85.461 0 0 1-27.747.158c-5.435 6.164-13.945 9.284-25.35 9.284-6.947 0-14.97-1.169-23.843-3.47-.054-.015-6.194-1.716-12.904-4.376-10.786-4.277-16.342-8.258-18.577-13.318-1.474-3.337-1.367-6.92.304-10.091.154-.295.32-.582.497-.86a12.803 12.803 0 0 1-1.728-10.341c.664-2.523 2.035-4.621 3.897-6.128a12.75 12.75 0 0 1-1.73-4.822c-.536-3.714.697-7.422 3.47-10.446 2.16-2.353 5.213-3.648 8.593-3.648h.09a84.45 84.45 0 0 1-3.832-25.235c0-46.671 37.836-84.51 84.514-84.51 46.677 0 84.513 37.835 84.513 84.51a84.398 84.398 0 0 1-3.859 25.299c.408-.04.808-.06 1.201-.061 3.38 0 6.434 1.295 8.592 3.648 2.773 3.021 4.007 6.732 3.47 10.446a12.757 12.757 0 0 1-1.729 4.822c1.862 1.507 3.234 3.605 3.897 6.128a12.803 12.803 0 0 1-1.728 10.341c.177.275.345.562.497.857Z"}),c.jsx("path",{fill:"#FF9D00",d:"M221.784 183.816a12.798 12.798 0 0 0 1.728-10.341c-.664-2.523-2.036-4.621-3.897-6.128a12.74 12.74 0 0 0 1.729-4.822c.537-3.714-.696-7.422-3.47-10.446-2.158-2.353-5.212-3.648-8.592-3.648-.393 0-.793.021-1.201.061a84.415 84.415 0 0 0 3.852-25.297c0-46.672-37.836-84.51-84.509-84.51-46.674 0-84.514 37.834-84.514 84.51a84.46 84.46 0 0 0 3.832 25.235h-.09c-3.38 0-6.433 1.294-8.592 3.647-2.773 3.021-4.007 6.733-3.47 10.446a12.762 12.762 0 0 0 1.73 4.823c-1.862 1.506-3.234 3.604-3.898 6.127a12.808 12.808 0 0 0 1.73 10.343c-.178.278-.342.565-.497.86-1.67 3.171-1.778 6.754-.303 10.091 2.236 5.057 7.79 9.041 18.577 13.318 6.707 2.66 12.85 4.361 12.904 4.376 8.872 2.301 16.896 3.47 23.842 3.47 11.406 0 19.916-3.12 25.351-9.284a85.49 85.49 0 0 0 27.747-.158c5.428 6.268 13.987 9.442 25.489 9.442 6.946 0 14.97-1.169 23.841-3.47.055-.015 6.195-1.716 12.905-4.376 10.787-4.277 16.342-8.261 18.577-13.318 1.474-3.337 1.367-6.92-.304-10.091-.152-.297-.32-.585-.497-.86Zm-111.647 13.181a34.659 34.659 0 0 1-1.502 2.394c-1.405 2.057-3.253 3.629-5.398 4.797-4.1 2.236-9.29 3.017-14.562 3.017-8.329 0-16.867-1.949-21.652-3.19-.236-.061-29.334-8.28-25.65-15.276.62-1.177 1.64-1.647 2.925-1.647 5.187 0 14.632 7.724 18.69 7.724.908 0 1.548-.386 1.809-1.328 1.73-6.204-26.293-8.812-23.933-17.796.416-1.59 1.546-2.236 3.134-2.236 6.858-.001 22.25 12.06 25.469 12.06.247 0 .424-.073.52-.225.014-.023.028-.045.041-.069 1.511-2.495.644-4.309-9.707-10.649l-.994-.605c-11.391-6.894-19.386-11.043-14.84-15.993.524-.571 1.266-.824 2.167-.824 1.068 0 2.36.357 3.785.957 6.016 2.537 14.354 9.456 17.837 12.473a146 146 0 0 1 1.633 1.441s4.41 4.586 7.076 4.586c.614 0 1.135-.242 1.488-.84 1.891-3.188-17.563-17.93-18.66-24.013-.744-4.121.522-6.209 2.862-6.209 1.113 0 2.47.474 3.97 1.425 4.65 2.951 13.628 18.379 16.915 24.381 1.102 2.011 2.983 2.861 4.678 2.861 3.363 0 5.992-3.343.308-7.591-8.543-6.392-5.545-16.84-1.468-17.483.174-.028.35-.042.525-.042 3.708 0 5.343 6.389 5.343 6.389s4.794 12.038 13.029 20.267c7.472 7.469 8.516 13.598 4.162 21.244Zm26.629 1.41-.427.051-.728.083c-.383.04-.767.078-1.152.113l-.375.034-.343.029-.486.039-.537.039-.536.035-.119.008c-.14.008-.28.017-.422.024l-.179.01c-.166.009-.332.017-.5.024l-.581.025-.527.018-.352.01h-.179c-.11 0-.219.006-.329.007h-.174c-.11 0-.219 0-.329.005l-.448.006h-.625c-.491 0-.981-.005-1.469-.015l-.396-.009c-.113 0-.226-.005-.337-.009l-.42-.012-.521-.02-.47-.021-.121-.005-.447-.023c-.125-.007-.248-.013-.372-.022l-.289-.017a79.64 79.64 0 0 1-1.089-.076l-.38-.031c-.16-.012-.32-.027-.479-.041-.187-.016-.374-.034-.561-.052a59.687 59.687 0 0 1-.939-.095h-.015c4.57-10.195 2.259-19.717-6.976-28.944-6.057-6.049-10.086-14.981-10.922-16.942-1.692-5.805-6.17-12.258-13.607-12.258-.629 0-1.257.05-1.878.148-3.258.513-6.106 2.388-8.138 5.21-2.196-2.731-4.33-4.902-6.26-6.128-2.91-1.845-5.814-2.781-8.643-2.781-3.531 0-6.687 1.45-8.887 4.08l-.056.067c-.042-.173-.082-.346-.123-.52l-.005-.023a73.685 73.685 0 0 1-1.054-5.412c0-.012 0-.024-.006-.036-.022-.137-.042-.275-.063-.412-.062-.406-.12-.813-.173-1.22-.024-.185-.05-.37-.073-.555l-.068-.555c-.022-.185-.04-.353-.06-.529l-.006-.044c-.08-.72-.15-1.44-.21-2.162l-.022-.277-.035-.472c-.01-.129-.02-.259-.027-.389 0-.031-.005-.061-.006-.09a52.476 52.476 0 0 1-.065-1.088c-.01-.189-.02-.377-.028-.567l-.02-.496-.005-.15-.016-.457-.01-.389c0-.155-.008-.31-.01-.465-.003-.155-.007-.325-.008-.489-.002-.164 0-.326-.005-.489-.004-.164 0-.327 0-.49 0-41.853 33.93-75.784 75.788-75.784 41.856 0 75.786 33.93 75.786 75.784v.979c0 .163-.005.327-.008.489 0 .135-.006.268-.01.405 0 .12-.005.241-.009.357 0 .153-.009.306-.014.459v.012l-.021.531c-.007.155-.013.311-.021.466l-.005.11-.027.496a80.723 80.723 0 0 1-.241 3.184v.013c-.017.174-.034.348-.053.522l-.045.411-.089.804-.051.407-.063.479c-.023.174-.046.349-.072.522-.026.195-.055.389-.084.583l-.069.459-.082.52c-.028.173-.058.345-.09.517-.033.173-.059.345-.089.517-.06.344-.123.688-.189 1.031-.101.513-.204 1.025-.31 1.537l-.11.507c-.036.169-.075.339-.113.508-2.133-2.073-4.958-3.202-8.073-3.202-2.827 0-5.734.935-8.643 2.78-1.93 1.226-4.063 3.398-6.26 6.128-2.035-2.822-4.883-4.697-8.139-5.21a12.05 12.05 0 0 0-1.878-.148c-7.439 0-11.914 6.453-13.607 12.258-.84 1.961-4.87 10.893-10.932 16.951-9.229 9.198-11.557 18.677-7.059 28.83Zm78.241-20.409-.03.089a5.416 5.416 0 0 1-.263.587c-.075.14-.156.276-.244.408-.167.249-.35.487-.549.711-.046.052-.09.104-.142.155a7.853 7.853 0 0 1-.22.227c-1.346 1.334-3.398 2.504-5.718 3.577-.263.119-.53.238-.799.358l-.268.119c-.179.079-.358.157-.546.234-.179.078-.365.156-.551.232l-.558.23c-1.305.537-2.642 1.049-3.946 1.554l-.558.217-.551.216c-.367.143-.729.286-1.085.429l-.531.214-.522.213-.256.108c-.171.071-.338.142-.505.213-3.837 1.647-6.598 3.322-6.018 5.4.016.059.034.115.054.17.052.154.123.299.212.436.052.081.112.158.179.228.682.709 1.923.597 3.488.034.22-.081.439-.165.656-.253l.136-.056c.358-.152.737-.322 1.124-.506.097-.046.195-.09.293-.141 1.914-.936 4.083-2.196 6.235-3.343a55.812 55.812 0 0 1 2.618-1.325c2.038-.959 3.954-1.639 5.494-1.639.723 0 1.361.148 1.893.488l.089.059c.334.235.614.537.823.887.041.067.081.138.12.211.761 1.445.124 2.941-1.367 4.408-1.431 1.409-3.657 2.79-6.187 4.068-.188.095-.376.19-.567.283-7.53 3.698-17.391 6.483-17.528 6.518-2.628.681-6.386 1.575-10.62 2.244l-.626.098-.103.015c-.474.072-.949.139-1.425.201-.483.065-.971.124-1.462.179l-.09.01a68.56 68.56 0 0 1-5.358.406h-.026c-.648.023-1.295.035-1.943.035h-.747a46.38 46.38 0 0 1-2.959-.134c-.023 0-.048 0-.071-.006a39.666 39.666 0 0 1-2.149-.231 24.641 24.641 0 0 1-.715-.107 57.653 57.653 0 0 1-.725-.121l-.329-.062-.025-.005a26.107 26.107 0 0 1-1.036-.219c-.2-.045-.399-.089-.596-.143l-.119-.03c-.098-.024-.193-.05-.29-.076l-.053-.014-.308-.09c-.112-.031-.224-.065-.336-.098l-.039-.011-.291-.089c-.11-.034-.22-.07-.329-.106l-.268-.089-.197-.069c-.19-.067-.379-.136-.566-.208l-.178-.07-.147-.058a23.243 23.243 0 0 1-.845-.358l-.185-.09-.031-.014c-.066-.031-.131-.062-.197-.089a17.142 17.142 0 0 1-.384-.191l-.039-.019-.184-.097a15.943 15.943 0 0 1-.961-.546l-.172-.106a8.547 8.547 0 0 1-.256-.164l-.224-.148-.241-.166-.144-.103c-.152-.108-.301-.22-.447-.335l-.233-.179a15.173 15.173 0 0 1-.276-.228c-.077-.063-.152-.129-.227-.195l-.006-.005c-.081-.071-.16-.142-.239-.215a11.85 11.85 0 0 1-.232-.216l-.009-.009a8.569 8.569 0 0 1-.235-.232c-.077-.078-.156-.156-.231-.236-.075-.079-.152-.16-.226-.243-.074-.082-.142-.157-.212-.238l-.023-.027a9.34 9.34 0 0 1-.201-.238 12.442 12.442 0 0 1-.416-.525c-.135-.18-.267-.364-.396-.551l-.123-.184c-.164-.24-.324-.482-.479-.728a18.6 18.6 0 0 1-.339-.536c-.071-.113-.139-.227-.207-.339l-.028-.046c-.065-.11-.129-.218-.191-.327a3.17 3.17 0 0 1-.102-.179c-.033-.062-.071-.125-.106-.188l-.057-.099-.035-.064c-.067-.12-.133-.241-.197-.363-.03-.054-.059-.108-.09-.16l-.089-.173-.09-.171c-.225-.45-.438-.906-.638-1.368l-.071-.169c-.046-.113-.089-.225-.135-.336-.022-.054-.044-.107-.063-.161a16.731 16.731 0 0 1-.776-2.639c-.011-.055-.022-.11-.031-.163a11.54 11.54 0 0 1-.127-.806c-.008-.053-.014-.106-.02-.159l-.017-.162a11.337 11.337 0 0 1-.049-.638c0-.054-.005-.108-.007-.16a8.436 8.436 0 0 1-.008-.318c-.056-4.273 2.106-8.381 6.729-13.002 8.235-8.227 13.029-20.266 13.029-20.266s.129-.505.397-1.232c.037-.101.076-.205.12-.314.156-.407.332-.807.527-1.197l.039-.075c.166-.332.348-.656.544-.971.046-.073.09-.145.141-.218.147-.217.302-.429.465-.634.089-.111.186-.221.283-.328.039-.042.077-.084.118-.124.477-.493 1.022-.895 1.639-1.109l.078-.026c.052-.017.104-.033.157-.048.061-.016.122-.03.185-.043l.029-.006c.13-.026.262-.043.395-.052h.011c.069 0 .139-.007.21-.007.089 0 .172 0 .259.009.09.008.179.018.269.032.742.118 1.448.56 2.056 1.242.231.26.439.54.621.836.12.192.233.395.34.609.043.089.084.171.124.259a7.8 7.8 0 0 1 .28.691c.195.55.342 1.116.439 1.692.084.505.134 1.015.15 1.526.008.273.008.55 0 .829a11.936 11.936 0 0 1-.787 3.792c-.042.111-.089.223-.134.335a9.264 9.264 0 0 1-.302.665c-.081.165-.166.331-.258.496-.06.11-.123.22-.186.33-.161.274-.335.546-.522.817l-.113.162a13.628 13.628 0 0 1-1.472 1.728 15.425 15.425 0 0 1-1.699 1.47c-.602.446-1.167.94-1.689 1.477-1.503 1.577-1.853 2.969-1.515 4.024.054.166.125.327.211.479.101.174.221.334.357.48l.053.055.054.054c.054.052.111.103.172.153l.06.048c.145.112.299.212.46.3.047.025.089.05.142.074.174.085.353.158.537.217.051.017.102.032.154.048l.065.017.09.024.077.019.084.018.083.017.079.013c.058.01.118.02.178.027l.057.009.104.01.064.007.105.007h.062l.11.006h.346l.099-.006.114-.007.139-.013.13-.015c.03 0 .06-.008.09-.014.4-.058.792-.164 1.167-.316l.159-.067a4.819 4.819 0 0 0 .772-.421c.229-.15.445-.318.647-.503.048-.043.095-.089.141-.133.023-.022.045-.043.067-.067.044-.045.089-.089.133-.138.32-.352.597-.74.825-1.157a228.925 228.925 0 0 1 6.151-10.514l.294-.471.297-.471c.148-.239.298-.474.447-.708l.15-.234c.498-.78 1.004-1.555 1.519-2.324l.305-.456c.612-.907 1.222-1.789 1.827-2.627l.301-.415a56.224 56.224 0 0 1 2.054-2.661l.282-.338c.047-.056.09-.112.141-.166.093-.11.186-.217.277-.321.046-.053.089-.105.138-.157l.268-.302.134-.147c.135-.145.267-.284.397-.417.09-.09.173-.179.259-.263a10.5 10.5 0 0 1 1.669-1.386l.14-.09c.134-.09.273-.174.415-.25 2.364-1.342 4.321-1.441 5.448-.314.682.682 1.06 1.813 1.039 3.387 0 .069 0 .139-.005.211v.077c0 .072-.006.144-.012.217 0 .09-.01.179-.019.269-.009.089-.014.157-.023.237 0 .022-.004.045-.008.069-.006.069-.015.14-.025.211 0 .021 0 .043-.008.065a5.354 5.354 0 0 1-.041.283c-.011.09-.026.174-.042.262l-.026.149a4.007 4.007 0 0 1-.1.42 6.16 6.16 0 0 1-.283.758 10.99 10.99 0 0 1-.514.987c-.104.178-.211.353-.322.526-.114.179-.234.36-.358.543-.316.452-.644.895-.985 1.328l-.156.197a50.56 50.56 0 0 1-1.722 2.035l-.187.21c-.252.281-.508.564-.77.848l-.197.214c-.131.143-.268.286-.4.43-.131.143-.268.288-.406.433l-.411.433-.417.436-.42.436c-.282.292-.565.584-.85.876-4.055 4.159-8.327 8.304-9.773 10.888a5.365 5.365 0 0 0-.262.519c-.206.47-.292.872-.233 1.197a.914.914 0 0 0 .111.303c.081.141.18.271.295.387.053.052.109.1.168.144.298.212.657.321 1.023.311h.114l.117-.009.117-.013.097-.014c.013-.002.027-.004.04-.008l.089-.017.023-.005.099-.021.035-.009.104-.028c.035-.01.083-.023.125-.037.176-.053.348-.116.517-.188.089-.036.176-.075.262-.117.045-.02.09-.041.132-.063l.134-.066c.32-.166.632-.347.936-.541l.133-.09c.045-.028.09-.057.133-.089l.133-.089.071-.049.192-.135c.179-.123.346-.25.515-.379l.015-.012.269-.208c.367-.29.715-.582 1.031-.857l.21-.184.019-.018.11-.097c.258-.232.488-.448.679-.626l.079-.077c.069-.065.132-.126.189-.178l.112-.111.04-.039.011-.011.117-.117.074-.077.009-.007.035-.032.044-.04.014-.013.037-.034.204-.179.114-.102c.061-.053.12-.107.179-.162l.136-.121c.025-.02.049-.042.074-.064l.143-.125.21-.185.112-.097c.435-.378.964-.835 1.572-1.35l.249-.211.411-.345.421-.351c.55-.457 1.142-.942 1.768-1.445l.411-.33c.35-.279.709-.563 1.073-.849.147-.115.296-.23.448-.344a100.786 100.786 0 0 1 3.762-2.788l.384-.268c.269-.185.537-.371.805-.552l.243-.164c.479-.325.965-.642 1.455-.951l.243-.153.241-.15c.242-.15.482-.297.721-.44l.239-.143.478-.278.469-.269.095-.052.371-.204c.155-.084.309-.165.463-.244l.229-.118.223-.112c.078-.037.155-.076.231-.113a21.446 21.446 0 0 1 1.954-.845l.41-.144c.123-.041.243-.08.358-.115l.04-.012c.062-.02.124-.038.185-.054l.018-.005c.128-.037.255-.069.38-.099h.009a8.156 8.156 0 0 1 1.077-.183c.167-.017.334-.026.502-.025h.084c.112 0 .22.007.327.018.049 0 .098.01.146.016h.02c.048.006.096.013.144.024.047.009.095.017.141.028h.015c.047.01.089.022.138.036.254.071.496.181.718.325.109.071.211.151.305.24l.027.026a.805.805 0 0 1 .051.05l.049.053c.402.421.734.904.984 1.43l.038.09a3.309 3.309 0 0 1 .042 2.553 4.676 4.676 0 0 1-.339.715 8.141 8.141 0 0 1-1.099 1.452l-.089.095c-.133.14-.271.28-.416.42-.064.063-.131.125-.198.188l-.205.189-.107.095a22.682 22.682 0 0 1-1.285 1.057c-.586.448-1.183.88-1.791 1.297a59.56 59.56 0 0 1-1.11.743 99.67 99.67 0 0 1-2.786 1.763c-1.968 1.21-4.149 2.504-6.474 3.911l-.602.365c-.659.402-1.281.786-1.867 1.152l-.295.185-.558.358c-.37.237-.739.476-1.108.715l-.297.196c-.145.094-.289.19-.433.286l-.141.09-.432.291-.229.157-.268.186-.249.173c-.417.295-.805.576-1.162.843l-.134.102c-.21.159-.418.321-.623.486-.309.249-.591.487-.844.716l-.124.113c-.071.065-.141.13-.208.194-.046.045-.089.09-.137.133l-.064.064c-.143.144-.283.291-.418.442l-.066.076c-.147.17-.275.333-.387.492l-.05.071c-.088.128-.169.26-.242.396-.019.034-.036.068-.053.102l-.049.102-.033.074-.021.05-.017.045-.023.061a2.55 2.55 0 0 0-.13.523l-.008.062-.006.058v.315c0 .026 0 .052.007.08l.005.048c0 .026.006.051.01.079.004.026.011.073.019.11v.005c.007.035.014.069.023.104.009.035.018.075.029.111.019.071.043.141.068.211.016.042.031.083.048.124 0 .008.006.017.01.025l.036.081.05.111c.054.115.113.227.177.336l.066.114.068.114a.426.426 0 0 0 .041.054l.022.023.025.023.026.02a.487.487 0 0 0 .122.063c.023.008.047.014.071.02.577.13 1.763-.347 3.339-1.179.089-.048.187-.098.282-.15l.48-.262.234-.13c.167-.089.337-.19.511-.289l.317-.179c2.083-1.199 4.571-2.739 7.143-4.243.241-.141.483-.282.725-.421l.486-.311c.564-.323 1.131-.642 1.7-.957a80.121 80.121 0 0 1 2.168-1.15l.476-.241c.316-.156.629-.308.938-.456a40.899 40.899 0 0 1 1.815-.809l.335-.136.04-.016c1.775-.703 3.384-1.137 4.686-1.137.281-.003.563.021.84.069h.009c.089.016.17.034.253.054h.015c.213.054.42.131.616.23.275.142.522.331.731.559.096.106.181.221.256.343.14.215.25.448.329.692.032.095.06.188.089.287a3.93 3.93 0 0 1-.06 2.305Z"}),c.jsx("path",{fill:"#FFD21E",fillRule:"evenodd",d:"M203.21 123.685v-.491c0-41.854-33.918-75.783-75.775-75.783-41.856 0-75.787 33.931-75.787 75.783v.164a7.13 7.13 0 0 0 0 .327c.005.163.007.326.005.489l.005.36.003.129c0 .06.002.119.004.179.003.095.005.191.005.286l.011.389.016.457.005.15.02.473v.023c.008.185.018.369.027.553l.001.014c.01.188.02.377.032.566.01.174.02.348.033.522l.002.031c.009.149.019.299.03.448l.003.04.033.432.003.028c.006.084.012.168.02.249.06.721.13 1.442.21 2.161l.004.045.061.529.068.555.05.377.023.177c.053.408.111.815.173 1.221l.004.027.059.384c.285 1.829.64 3.647 1.06 5.45l.005.022.032.135.091.385.056-.067c2.2-2.63 5.356-4.08 8.887-4.08 2.83 0 5.733.936 8.643 2.781 1.93 1.226 4.064 3.397 6.26 6.128 2.032-2.822 4.88-4.698 8.138-5.21.621-.098 1.25-.147 1.878-.148 7.436 0 11.915 6.453 13.607 12.258.836 1.961 4.865 10.893 10.941 16.935 9.236 9.227 11.547 18.748 6.976 28.943h.016c.311.035.624.067.939.096.187.018.373.036.561.052l.066.006.413.035.38.03c.362.028.725.054 1.089.077l.289.017.229.014.142.008.447.023.122.005.469.021.522.02.419.012.07.002c.089.004.178.007.267.007l.096.003c.59.014 1.179.021 1.769.02h.626l.447-.005c.11-.005.219-.005.33-.005h.174l.151-.004c.059-.002.118-.004.178-.004h.179l.351-.009.528-.018.581-.026c.168-.006.334-.015.5-.023l.179-.011.266-.014.156-.009.118-.008.537-.035.536-.039.487-.039.342-.029.376-.034a62.347 62.347 0 0 0 1.88-.197l.427-.051c-4.499-10.152-2.17-19.632 7.027-28.822 6.063-6.058 10.092-14.99 10.932-16.952 1.693-5.804 6.169-12.257 13.607-12.257.629 0 1.258.05 1.879.148 3.255.512 6.103 2.388 8.138 5.21 2.197-2.73 4.33-4.903 6.261-6.129 2.909-1.844 5.815-2.78 8.642-2.78 3.116 0 5.94 1.13 8.073 3.203.039-.169.077-.338.114-.508l.109-.506c.039-.185.078-.37.115-.555.066-.327.132-.654.195-.984.066-.342.129-.686.189-1.03l.031-.186c.019-.11.037-.22.058-.331.034-.172.062-.344.09-.518l.011-.066.071-.453.07-.459v-.004c.051-.339.099-.678.144-1.017l.011-.084.063-.478.051-.408.09-.804.035-.323.009-.088c.019-.174.037-.348.053-.522v-.014c.013-.138.027-.277.039-.416.071-.788.131-1.58.179-2.375.009-.13.016-.261.024-.392v-.006l.026-.491.006-.11c.016-.332.03-.664.041-.996v-.012l.005-.13c.005-.109.009-.219.009-.329l.002-.044c.004-.103.008-.209.008-.314l.003-.09c.003-.105.006-.209.006-.314l.002-.089c.003-.133.006-.267.006-.4v-.489Zm-94.572 75.706c6.002-8.801 5.576-15.407-2.658-23.637-8.236-8.231-13.029-20.267-13.029-20.267s-1.789-6.991-5.869-6.349c-4.08.642-7.073 11.089 1.47 17.484 8.542 6.395-1.7 10.731-4.988 4.73-3.288-6.002-12.265-21.429-16.919-24.38-4.654-2.951-7.927-1.297-6.83 4.785.545 3.019 5.613 8.172 10.348 12.986 4.804 4.884 9.265 9.42 8.311 11.025-1.893 3.187-8.56-3.745-8.56-3.745s-20.876-18.998-25.42-14.047c-4.19 4.563 2.271 8.442 12.227 14.421.846.508 1.718 1.032 2.611 1.572 11.391 6.896 12.277 8.715 10.66 11.324-.597.964-4.41-1.325-9.1-4.14-7.995-4.801-18.537-11.13-20.026-5.465-1.288 4.903 6.468 7.907 13.502 10.632 5.86 2.27 11.22 4.346 10.431 7.164-.817 2.922-5.246.485-10.087-2.179-5.435-2.991-11.39-6.267-13.339-2.57-3.683 6.99 25.41 15.219 25.65 15.28 9.4 2.438 33.272 7.604 41.615-4.624Zm38.665 0c-6.002-8.801-5.576-15.407 2.659-23.637 8.235-8.231 13.028-20.267 13.028-20.267s1.789-6.991 5.869-6.349c4.08.642 7.073 11.089-1.469 17.484-8.543 6.395 1.699 10.731 4.987 4.73 3.289-6.002 12.26-21.429 16.914-24.38 4.654-2.951 7.929-1.297 6.831 4.785-.544 3.019-5.613 8.172-10.348 12.987-4.804 4.884-9.265 9.419-8.312 11.024 1.893 3.187 8.565-3.749 8.565-3.749s20.875-18.997 25.421-14.046c4.189 4.562-2.272 8.442-12.229 14.421-.871.523-1.741 1.047-2.61 1.572-11.391 6.896-12.277 8.715-10.661 11.323.598.965 4.411-1.325 9.1-4.14 7.996-4.8 18.538-11.13 20.027-5.464 1.289 4.903-6.468 7.907-13.502 10.632-5.86 2.27-11.22 4.346-10.432 7.164.816 2.921 5.244.484 10.084-2.18 5.435-2.991 11.391-6.269 13.339-2.569 3.684 6.994-25.414 15.215-25.649 15.275-9.4 2.446-33.272 7.612-41.612-4.616Z",clipRule:"evenodd"}),c.jsx("path",{fill:"#32343D",fillRule:"evenodd",d:"M152.047 102.567c1.182.418 2.061 1.69 2.897 2.901 1.13 1.636 2.182 3.159 3.796 2.301a10.909 10.909 0 0 0 4.247-15.214 10.912 10.912 0 0 0-7.742-5.198 10.904 10.904 0 0 0-11.689 6.589 10.909 10.909 0 0 0 .436 9.314c.748 1.407 2.408.743 4.16.042 1.373-.549 2.804-1.121 3.895-.735Zm-51.375 0c-1.182.418-2.061 1.691-2.897 2.901-1.13 1.637-2.183 3.159-3.796 2.301a10.903 10.903 0 0 1 8.263-20.068 10.909 10.909 0 0 1 7.707 9.348 10.906 10.906 0 0 1-1.221 6.211c-.749 1.407-2.409.743-4.161.043-1.374-.55-2.803-1.122-3.895-.736Zm43.427 46.751c8.143-6.415 11.134-16.889 11.134-23.341 0-5.1-3.431-3.495-8.924-.775l-.31.153c-5.042 2.497-11.754 5.822-19.122 5.822-7.369 0-14.081-3.325-19.122-5.823-5.671-2.809-9.228-4.571-9.228.624 0 6.656 3.182 17.585 11.916 23.934a18.968 18.968 0 0 1 11.575-9.786c.872-.26 1.77 1.241 2.689 2.778.887 1.482 1.794 2.998 2.716 2.998.983 0 1.948-1.494 2.891-2.952.985-1.525 1.946-3.01 2.875-2.713a18.967 18.967 0 0 1 10.91 9.081Z",clipRule:"evenodd"}),c.jsx("path",{fill:"#FF323D",d:"M144.097 149.317c-4.241 3.342-9.878 5.583-17.219 5.583-6.897 0-12.291-1.978-16.435-4.989a18.966 18.966 0 0 1 11.575-9.786c1.712-.511 3.527 5.776 5.405 5.776 2.01 0 3.947-6.246 5.766-5.665a18.974 18.974 0 0 1 10.908 9.081Z"}),c.jsx("path",{fill:"#FFAD03",fillRule:"evenodd",d:"M81.2 111.64a7.078 7.078 0 0 1-6.65.655 7.062 7.062 0 0 1-3.837-3.837 7.082 7.082 0 0 1 .657-6.65 7.087 7.087 0 1 1 9.83 9.832Zm101.413 0a7.08 7.08 0 0 1-6.651.655 7.064 7.064 0 0 1-3.837-3.837 7.102 7.102 0 0 1-.504-3.407 7.103 7.103 0 0 1 3.411-5.385 7.083 7.083 0 0 1 8.656 1.07 7.079 7.079 0 0 1 1.536 7.724 7.089 7.089 0 0 1-2.611 3.18Z",clipRule:"evenodd"})]}),v=h.forwardRef((l,a)=>c.jsx(e,{ref:a,...l}));export{v as HuggingFaceIcon};
|
|
1
|
+
import{j as c,r as h}from"./index-pBO0SZLD.js";const e=l=>c.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 256 256",...l,children:[c.jsx("path",{fill:"#fff",d:"M230.721 172.7a18.97 18.97 0 0 0-2.575-5.692c.25-.917.441-1.849.568-2.791.829-5.976-1.243-11.447-5.147-15.68-2.115-2.312-4.382-3.839-6.783-4.776a90.602 90.602 0 0 0 2.377-20.568c0-3.163-.179-6.261-.479-9.313a105.88 105.88 0 0 0-.567-4.56 90.985 90.985 0 0 0-3.051-13.21 91.22 91.22 0 0 0-3.054-8.374 91.93 91.93 0 0 0-6.041-11.754 81.369 81.369 0 0 0-4.907-7.262 68.979 68.979 0 0 0-2.704-3.446 90.535 90.535 0 0 0-9.033-9.486 69.938 69.938 0 0 0-3.315-2.862 81.76 81.76 0 0 0-3.424-2.704 96.056 96.056 0 0 0-7.262-4.907c-13.781-8.37-29.942-13.17-47.215-13.17-50.292 0-91.052 40.762-91.052 91.051-.002 7.012.81 14 2.42 20.824-2.16.938-4.23 2.4-6.15 4.515-3.903 4.231-5.976 9.682-5.147 15.658.126.949.315 1.889.567 2.813a19.006 19.006 0 0 0-2.573 5.694c-1.2 4.561-.805 8.674.72 12.278-1.658 4.71-1.244 9.726.915 14.087 1.57 3.185 3.817 5.649 6.587 7.851 3.293 2.618 7.415 4.842 12.387 6.976 5.932 2.53 13.173 4.907 16.466 5.779 8.506 2.202 16.662 3.598 24.928 3.666 11.777.109 21.919-2.66 29.18-9.747a88.02 88.02 0 0 0 10.752.654 93.752 93.752 0 0 0 11.358-.715c7.244 7.132 17.425 9.926 29.245 9.814 8.265-.066 16.421-1.462 24.905-3.667 3.315-.872 10.553-3.249 16.488-5.779 4.972-2.137 9.094-4.361 12.409-6.975 2.749-2.203 4.994-4.666 6.565-7.851 2.181-4.362 2.573-9.378.938-14.088 1.51-3.604 1.903-7.726.704-12.283Zm-8.44 11.973c1.671 3.171 1.778 6.754.304 10.091-2.236 5.057-7.79 9.041-18.577 13.318-6.708 2.66-12.85 4.361-12.904 4.376-8.872 2.301-16.896 3.47-23.842 3.47-11.502 0-20.061-3.174-25.489-9.442a85.461 85.461 0 0 1-27.747.158c-5.435 6.164-13.945 9.284-25.35 9.284-6.947 0-14.97-1.169-23.843-3.47-.054-.015-6.194-1.716-12.904-4.376-10.786-4.277-16.342-8.258-18.577-13.318-1.474-3.337-1.367-6.92.304-10.091.154-.295.32-.582.497-.86a12.803 12.803 0 0 1-1.728-10.341c.664-2.523 2.035-4.621 3.897-6.128a12.75 12.75 0 0 1-1.73-4.822c-.536-3.714.697-7.422 3.47-10.446 2.16-2.353 5.213-3.648 8.593-3.648h.09a84.45 84.45 0 0 1-3.832-25.235c0-46.671 37.836-84.51 84.514-84.51 46.677 0 84.513 37.835 84.513 84.51a84.398 84.398 0 0 1-3.859 25.299c.408-.04.808-.06 1.201-.061 3.38 0 6.434 1.295 8.592 3.648 2.773 3.021 4.007 6.732 3.47 10.446a12.757 12.757 0 0 1-1.729 4.822c1.862 1.507 3.234 3.605 3.897 6.128a12.803 12.803 0 0 1-1.728 10.341c.177.275.345.562.497.857Z"}),c.jsx("path",{fill:"#FF9D00",d:"M221.784 183.816a12.798 12.798 0 0 0 1.728-10.341c-.664-2.523-2.036-4.621-3.897-6.128a12.74 12.74 0 0 0 1.729-4.822c.537-3.714-.696-7.422-3.47-10.446-2.158-2.353-5.212-3.648-8.592-3.648-.393 0-.793.021-1.201.061a84.415 84.415 0 0 0 3.852-25.297c0-46.672-37.836-84.51-84.509-84.51-46.674 0-84.514 37.834-84.514 84.51a84.46 84.46 0 0 0 3.832 25.235h-.09c-3.38 0-6.433 1.294-8.592 3.647-2.773 3.021-4.007 6.733-3.47 10.446a12.762 12.762 0 0 0 1.73 4.823c-1.862 1.506-3.234 3.604-3.898 6.127a12.808 12.808 0 0 0 1.73 10.343c-.178.278-.342.565-.497.86-1.67 3.171-1.778 6.754-.303 10.091 2.236 5.057 7.79 9.041 18.577 13.318 6.707 2.66 12.85 4.361 12.904 4.376 8.872 2.301 16.896 3.47 23.842 3.47 11.406 0 19.916-3.12 25.351-9.284a85.49 85.49 0 0 0 27.747-.158c5.428 6.268 13.987 9.442 25.489 9.442 6.946 0 14.97-1.169 23.841-3.47.055-.015 6.195-1.716 12.905-4.376 10.787-4.277 16.342-8.261 18.577-13.318 1.474-3.337 1.367-6.92-.304-10.091-.152-.297-.32-.585-.497-.86Zm-111.647 13.181a34.659 34.659 0 0 1-1.502 2.394c-1.405 2.057-3.253 3.629-5.398 4.797-4.1 2.236-9.29 3.017-14.562 3.017-8.329 0-16.867-1.949-21.652-3.19-.236-.061-29.334-8.28-25.65-15.276.62-1.177 1.64-1.647 2.925-1.647 5.187 0 14.632 7.724 18.69 7.724.908 0 1.548-.386 1.809-1.328 1.73-6.204-26.293-8.812-23.933-17.796.416-1.59 1.546-2.236 3.134-2.236 6.858-.001 22.25 12.06 25.469 12.06.247 0 .424-.073.52-.225.014-.023.028-.045.041-.069 1.511-2.495.644-4.309-9.707-10.649l-.994-.605c-11.391-6.894-19.386-11.043-14.84-15.993.524-.571 1.266-.824 2.167-.824 1.068 0 2.36.357 3.785.957 6.016 2.537 14.354 9.456 17.837 12.473a146 146 0 0 1 1.633 1.441s4.41 4.586 7.076 4.586c.614 0 1.135-.242 1.488-.84 1.891-3.188-17.563-17.93-18.66-24.013-.744-4.121.522-6.209 2.862-6.209 1.113 0 2.47.474 3.97 1.425 4.65 2.951 13.628 18.379 16.915 24.381 1.102 2.011 2.983 2.861 4.678 2.861 3.363 0 5.992-3.343.308-7.591-8.543-6.392-5.545-16.84-1.468-17.483.174-.028.35-.042.525-.042 3.708 0 5.343 6.389 5.343 6.389s4.794 12.038 13.029 20.267c7.472 7.469 8.516 13.598 4.162 21.244Zm26.629 1.41-.427.051-.728.083c-.383.04-.767.078-1.152.113l-.375.034-.343.029-.486.039-.537.039-.536.035-.119.008c-.14.008-.28.017-.422.024l-.179.01c-.166.009-.332.017-.5.024l-.581.025-.527.018-.352.01h-.179c-.11 0-.219.006-.329.007h-.174c-.11 0-.219 0-.329.005l-.448.006h-.625c-.491 0-.981-.005-1.469-.015l-.396-.009c-.113 0-.226-.005-.337-.009l-.42-.012-.521-.02-.47-.021-.121-.005-.447-.023c-.125-.007-.248-.013-.372-.022l-.289-.017a79.64 79.64 0 0 1-1.089-.076l-.38-.031c-.16-.012-.32-.027-.479-.041-.187-.016-.374-.034-.561-.052a59.687 59.687 0 0 1-.939-.095h-.015c4.57-10.195 2.259-19.717-6.976-28.944-6.057-6.049-10.086-14.981-10.922-16.942-1.692-5.805-6.17-12.258-13.607-12.258-.629 0-1.257.05-1.878.148-3.258.513-6.106 2.388-8.138 5.21-2.196-2.731-4.33-4.902-6.26-6.128-2.91-1.845-5.814-2.781-8.643-2.781-3.531 0-6.687 1.45-8.887 4.08l-.056.067c-.042-.173-.082-.346-.123-.52l-.005-.023a73.685 73.685 0 0 1-1.054-5.412c0-.012 0-.024-.006-.036-.022-.137-.042-.275-.063-.412-.062-.406-.12-.813-.173-1.22-.024-.185-.05-.37-.073-.555l-.068-.555c-.022-.185-.04-.353-.06-.529l-.006-.044c-.08-.72-.15-1.44-.21-2.162l-.022-.277-.035-.472c-.01-.129-.02-.259-.027-.389 0-.031-.005-.061-.006-.09a52.476 52.476 0 0 1-.065-1.088c-.01-.189-.02-.377-.028-.567l-.02-.496-.005-.15-.016-.457-.01-.389c0-.155-.008-.31-.01-.465-.003-.155-.007-.325-.008-.489-.002-.164 0-.326-.005-.489-.004-.164 0-.327 0-.49 0-41.853 33.93-75.784 75.788-75.784 41.856 0 75.786 33.93 75.786 75.784v.979c0 .163-.005.327-.008.489 0 .135-.006.268-.01.405 0 .12-.005.241-.009.357 0 .153-.009.306-.014.459v.012l-.021.531c-.007.155-.013.311-.021.466l-.005.11-.027.496a80.723 80.723 0 0 1-.241 3.184v.013c-.017.174-.034.348-.053.522l-.045.411-.089.804-.051.407-.063.479c-.023.174-.046.349-.072.522-.026.195-.055.389-.084.583l-.069.459-.082.52c-.028.173-.058.345-.09.517-.033.173-.059.345-.089.517-.06.344-.123.688-.189 1.031-.101.513-.204 1.025-.31 1.537l-.11.507c-.036.169-.075.339-.113.508-2.133-2.073-4.958-3.202-8.073-3.202-2.827 0-5.734.935-8.643 2.78-1.93 1.226-4.063 3.398-6.26 6.128-2.035-2.822-4.883-4.697-8.139-5.21a12.05 12.05 0 0 0-1.878-.148c-7.439 0-11.914 6.453-13.607 12.258-.84 1.961-4.87 10.893-10.932 16.951-9.229 9.198-11.557 18.677-7.059 28.83Zm78.241-20.409-.03.089a5.416 5.416 0 0 1-.263.587c-.075.14-.156.276-.244.408-.167.249-.35.487-.549.711-.046.052-.09.104-.142.155a7.853 7.853 0 0 1-.22.227c-1.346 1.334-3.398 2.504-5.718 3.577-.263.119-.53.238-.799.358l-.268.119c-.179.079-.358.157-.546.234-.179.078-.365.156-.551.232l-.558.23c-1.305.537-2.642 1.049-3.946 1.554l-.558.217-.551.216c-.367.143-.729.286-1.085.429l-.531.214-.522.213-.256.108c-.171.071-.338.142-.505.213-3.837 1.647-6.598 3.322-6.018 5.4.016.059.034.115.054.17.052.154.123.299.212.436.052.081.112.158.179.228.682.709 1.923.597 3.488.034.22-.081.439-.165.656-.253l.136-.056c.358-.152.737-.322 1.124-.506.097-.046.195-.09.293-.141 1.914-.936 4.083-2.196 6.235-3.343a55.812 55.812 0 0 1 2.618-1.325c2.038-.959 3.954-1.639 5.494-1.639.723 0 1.361.148 1.893.488l.089.059c.334.235.614.537.823.887.041.067.081.138.12.211.761 1.445.124 2.941-1.367 4.408-1.431 1.409-3.657 2.79-6.187 4.068-.188.095-.376.19-.567.283-7.53 3.698-17.391 6.483-17.528 6.518-2.628.681-6.386 1.575-10.62 2.244l-.626.098-.103.015c-.474.072-.949.139-1.425.201-.483.065-.971.124-1.462.179l-.09.01a68.56 68.56 0 0 1-5.358.406h-.026c-.648.023-1.295.035-1.943.035h-.747a46.38 46.38 0 0 1-2.959-.134c-.023 0-.048 0-.071-.006a39.666 39.666 0 0 1-2.149-.231 24.641 24.641 0 0 1-.715-.107 57.653 57.653 0 0 1-.725-.121l-.329-.062-.025-.005a26.107 26.107 0 0 1-1.036-.219c-.2-.045-.399-.089-.596-.143l-.119-.03c-.098-.024-.193-.05-.29-.076l-.053-.014-.308-.09c-.112-.031-.224-.065-.336-.098l-.039-.011-.291-.089c-.11-.034-.22-.07-.329-.106l-.268-.089-.197-.069c-.19-.067-.379-.136-.566-.208l-.178-.07-.147-.058a23.243 23.243 0 0 1-.845-.358l-.185-.09-.031-.014c-.066-.031-.131-.062-.197-.089a17.142 17.142 0 0 1-.384-.191l-.039-.019-.184-.097a15.943 15.943 0 0 1-.961-.546l-.172-.106a8.547 8.547 0 0 1-.256-.164l-.224-.148-.241-.166-.144-.103c-.152-.108-.301-.22-.447-.335l-.233-.179a15.173 15.173 0 0 1-.276-.228c-.077-.063-.152-.129-.227-.195l-.006-.005c-.081-.071-.16-.142-.239-.215a11.85 11.85 0 0 1-.232-.216l-.009-.009a8.569 8.569 0 0 1-.235-.232c-.077-.078-.156-.156-.231-.236-.075-.079-.152-.16-.226-.243-.074-.082-.142-.157-.212-.238l-.023-.027a9.34 9.34 0 0 1-.201-.238 12.442 12.442 0 0 1-.416-.525c-.135-.18-.267-.364-.396-.551l-.123-.184c-.164-.24-.324-.482-.479-.728a18.6 18.6 0 0 1-.339-.536c-.071-.113-.139-.227-.207-.339l-.028-.046c-.065-.11-.129-.218-.191-.327a3.17 3.17 0 0 1-.102-.179c-.033-.062-.071-.125-.106-.188l-.057-.099-.035-.064c-.067-.12-.133-.241-.197-.363-.03-.054-.059-.108-.09-.16l-.089-.173-.09-.171c-.225-.45-.438-.906-.638-1.368l-.071-.169c-.046-.113-.089-.225-.135-.336-.022-.054-.044-.107-.063-.161a16.731 16.731 0 0 1-.776-2.639c-.011-.055-.022-.11-.031-.163a11.54 11.54 0 0 1-.127-.806c-.008-.053-.014-.106-.02-.159l-.017-.162a11.337 11.337 0 0 1-.049-.638c0-.054-.005-.108-.007-.16a8.436 8.436 0 0 1-.008-.318c-.056-4.273 2.106-8.381 6.729-13.002 8.235-8.227 13.029-20.266 13.029-20.266s.129-.505.397-1.232c.037-.101.076-.205.12-.314.156-.407.332-.807.527-1.197l.039-.075c.166-.332.348-.656.544-.971.046-.073.09-.145.141-.218.147-.217.302-.429.465-.634.089-.111.186-.221.283-.328.039-.042.077-.084.118-.124.477-.493 1.022-.895 1.639-1.109l.078-.026c.052-.017.104-.033.157-.048.061-.016.122-.03.185-.043l.029-.006c.13-.026.262-.043.395-.052h.011c.069 0 .139-.007.21-.007.089 0 .172 0 .259.009.09.008.179.018.269.032.742.118 1.448.56 2.056 1.242.231.26.439.54.621.836.12.192.233.395.34.609.043.089.084.171.124.259a7.8 7.8 0 0 1 .28.691c.195.55.342 1.116.439 1.692.084.505.134 1.015.15 1.526.008.273.008.55 0 .829a11.936 11.936 0 0 1-.787 3.792c-.042.111-.089.223-.134.335a9.264 9.264 0 0 1-.302.665c-.081.165-.166.331-.258.496-.06.11-.123.22-.186.33-.161.274-.335.546-.522.817l-.113.162a13.628 13.628 0 0 1-1.472 1.728 15.425 15.425 0 0 1-1.699 1.47c-.602.446-1.167.94-1.689 1.477-1.503 1.577-1.853 2.969-1.515 4.024.054.166.125.327.211.479.101.174.221.334.357.48l.053.055.054.054c.054.052.111.103.172.153l.06.048c.145.112.299.212.46.3.047.025.089.05.142.074.174.085.353.158.537.217.051.017.102.032.154.048l.065.017.09.024.077.019.084.018.083.017.079.013c.058.01.118.02.178.027l.057.009.104.01.064.007.105.007h.062l.11.006h.346l.099-.006.114-.007.139-.013.13-.015c.03 0 .06-.008.09-.014.4-.058.792-.164 1.167-.316l.159-.067a4.819 4.819 0 0 0 .772-.421c.229-.15.445-.318.647-.503.048-.043.095-.089.141-.133.023-.022.045-.043.067-.067.044-.045.089-.089.133-.138.32-.352.597-.74.825-1.157a228.925 228.925 0 0 1 6.151-10.514l.294-.471.297-.471c.148-.239.298-.474.447-.708l.15-.234c.498-.78 1.004-1.555 1.519-2.324l.305-.456c.612-.907 1.222-1.789 1.827-2.627l.301-.415a56.224 56.224 0 0 1 2.054-2.661l.282-.338c.047-.056.09-.112.141-.166.093-.11.186-.217.277-.321.046-.053.089-.105.138-.157l.268-.302.134-.147c.135-.145.267-.284.397-.417.09-.09.173-.179.259-.263a10.5 10.5 0 0 1 1.669-1.386l.14-.09c.134-.09.273-.174.415-.25 2.364-1.342 4.321-1.441 5.448-.314.682.682 1.06 1.813 1.039 3.387 0 .069 0 .139-.005.211v.077c0 .072-.006.144-.012.217 0 .09-.01.179-.019.269-.009.089-.014.157-.023.237 0 .022-.004.045-.008.069-.006.069-.015.14-.025.211 0 .021 0 .043-.008.065a5.354 5.354 0 0 1-.041.283c-.011.09-.026.174-.042.262l-.026.149a4.007 4.007 0 0 1-.1.42 6.16 6.16 0 0 1-.283.758 10.99 10.99 0 0 1-.514.987c-.104.178-.211.353-.322.526-.114.179-.234.36-.358.543-.316.452-.644.895-.985 1.328l-.156.197a50.56 50.56 0 0 1-1.722 2.035l-.187.21c-.252.281-.508.564-.77.848l-.197.214c-.131.143-.268.286-.4.43-.131.143-.268.288-.406.433l-.411.433-.417.436-.42.436c-.282.292-.565.584-.85.876-4.055 4.159-8.327 8.304-9.773 10.888a5.365 5.365 0 0 0-.262.519c-.206.47-.292.872-.233 1.197a.914.914 0 0 0 .111.303c.081.141.18.271.295.387.053.052.109.1.168.144.298.212.657.321 1.023.311h.114l.117-.009.117-.013.097-.014c.013-.002.027-.004.04-.008l.089-.017.023-.005.099-.021.035-.009.104-.028c.035-.01.083-.023.125-.037.176-.053.348-.116.517-.188.089-.036.176-.075.262-.117.045-.02.09-.041.132-.063l.134-.066c.32-.166.632-.347.936-.541l.133-.09c.045-.028.09-.057.133-.089l.133-.089.071-.049.192-.135c.179-.123.346-.25.515-.379l.015-.012.269-.208c.367-.29.715-.582 1.031-.857l.21-.184.019-.018.11-.097c.258-.232.488-.448.679-.626l.079-.077c.069-.065.132-.126.189-.178l.112-.111.04-.039.011-.011.117-.117.074-.077.009-.007.035-.032.044-.04.014-.013.037-.034.204-.179.114-.102c.061-.053.12-.107.179-.162l.136-.121c.025-.02.049-.042.074-.064l.143-.125.21-.185.112-.097c.435-.378.964-.835 1.572-1.35l.249-.211.411-.345.421-.351c.55-.457 1.142-.942 1.768-1.445l.411-.33c.35-.279.709-.563 1.073-.849.147-.115.296-.23.448-.344a100.786 100.786 0 0 1 3.762-2.788l.384-.268c.269-.185.537-.371.805-.552l.243-.164c.479-.325.965-.642 1.455-.951l.243-.153.241-.15c.242-.15.482-.297.721-.44l.239-.143.478-.278.469-.269.095-.052.371-.204c.155-.084.309-.165.463-.244l.229-.118.223-.112c.078-.037.155-.076.231-.113a21.446 21.446 0 0 1 1.954-.845l.41-.144c.123-.041.243-.08.358-.115l.04-.012c.062-.02.124-.038.185-.054l.018-.005c.128-.037.255-.069.38-.099h.009a8.156 8.156 0 0 1 1.077-.183c.167-.017.334-.026.502-.025h.084c.112 0 .22.007.327.018.049 0 .098.01.146.016h.02c.048.006.096.013.144.024.047.009.095.017.141.028h.015c.047.01.089.022.138.036.254.071.496.181.718.325.109.071.211.151.305.24l.027.026a.805.805 0 0 1 .051.05l.049.053c.402.421.734.904.984 1.43l.038.09a3.309 3.309 0 0 1 .042 2.553 4.676 4.676 0 0 1-.339.715 8.141 8.141 0 0 1-1.099 1.452l-.089.095c-.133.14-.271.28-.416.42-.064.063-.131.125-.198.188l-.205.189-.107.095a22.682 22.682 0 0 1-1.285 1.057c-.586.448-1.183.88-1.791 1.297a59.56 59.56 0 0 1-1.11.743 99.67 99.67 0 0 1-2.786 1.763c-1.968 1.21-4.149 2.504-6.474 3.911l-.602.365c-.659.402-1.281.786-1.867 1.152l-.295.185-.558.358c-.37.237-.739.476-1.108.715l-.297.196c-.145.094-.289.19-.433.286l-.141.09-.432.291-.229.157-.268.186-.249.173c-.417.295-.805.576-1.162.843l-.134.102c-.21.159-.418.321-.623.486-.309.249-.591.487-.844.716l-.124.113c-.071.065-.141.13-.208.194-.046.045-.089.09-.137.133l-.064.064c-.143.144-.283.291-.418.442l-.066.076c-.147.17-.275.333-.387.492l-.05.071c-.088.128-.169.26-.242.396-.019.034-.036.068-.053.102l-.049.102-.033.074-.021.05-.017.045-.023.061a2.55 2.55 0 0 0-.13.523l-.008.062-.006.058v.315c0 .026 0 .052.007.08l.005.048c0 .026.006.051.01.079.004.026.011.073.019.11v.005c.007.035.014.069.023.104.009.035.018.075.029.111.019.071.043.141.068.211.016.042.031.083.048.124 0 .008.006.017.01.025l.036.081.05.111c.054.115.113.227.177.336l.066.114.068.114a.426.426 0 0 0 .041.054l.022.023.025.023.026.02a.487.487 0 0 0 .122.063c.023.008.047.014.071.02.577.13 1.763-.347 3.339-1.179.089-.048.187-.098.282-.15l.48-.262.234-.13c.167-.089.337-.19.511-.289l.317-.179c2.083-1.199 4.571-2.739 7.143-4.243.241-.141.483-.282.725-.421l.486-.311c.564-.323 1.131-.642 1.7-.957a80.121 80.121 0 0 1 2.168-1.15l.476-.241c.316-.156.629-.308.938-.456a40.899 40.899 0 0 1 1.815-.809l.335-.136.04-.016c1.775-.703 3.384-1.137 4.686-1.137.281-.003.563.021.84.069h.009c.089.016.17.034.253.054h.015c.213.054.42.131.616.23.275.142.522.331.731.559.096.106.181.221.256.343.14.215.25.448.329.692.032.095.06.188.089.287a3.93 3.93 0 0 1-.06 2.305Z"}),c.jsx("path",{fill:"#FFD21E",fillRule:"evenodd",d:"M203.21 123.685v-.491c0-41.854-33.918-75.783-75.775-75.783-41.856 0-75.787 33.931-75.787 75.783v.164a7.13 7.13 0 0 0 0 .327c.005.163.007.326.005.489l.005.36.003.129c0 .06.002.119.004.179.003.095.005.191.005.286l.011.389.016.457.005.15.02.473v.023c.008.185.018.369.027.553l.001.014c.01.188.02.377.032.566.01.174.02.348.033.522l.002.031c.009.149.019.299.03.448l.003.04.033.432.003.028c.006.084.012.168.02.249.06.721.13 1.442.21 2.161l.004.045.061.529.068.555.05.377.023.177c.053.408.111.815.173 1.221l.004.027.059.384c.285 1.829.64 3.647 1.06 5.45l.005.022.032.135.091.385.056-.067c2.2-2.63 5.356-4.08 8.887-4.08 2.83 0 5.733.936 8.643 2.781 1.93 1.226 4.064 3.397 6.26 6.128 2.032-2.822 4.88-4.698 8.138-5.21.621-.098 1.25-.147 1.878-.148 7.436 0 11.915 6.453 13.607 12.258.836 1.961 4.865 10.893 10.941 16.935 9.236 9.227 11.547 18.748 6.976 28.943h.016c.311.035.624.067.939.096.187.018.373.036.561.052l.066.006.413.035.38.03c.362.028.725.054 1.089.077l.289.017.229.014.142.008.447.023.122.005.469.021.522.02.419.012.07.002c.089.004.178.007.267.007l.096.003c.59.014 1.179.021 1.769.02h.626l.447-.005c.11-.005.219-.005.33-.005h.174l.151-.004c.059-.002.118-.004.178-.004h.179l.351-.009.528-.018.581-.026c.168-.006.334-.015.5-.023l.179-.011.266-.014.156-.009.118-.008.537-.035.536-.039.487-.039.342-.029.376-.034a62.347 62.347 0 0 0 1.88-.197l.427-.051c-4.499-10.152-2.17-19.632 7.027-28.822 6.063-6.058 10.092-14.99 10.932-16.952 1.693-5.804 6.169-12.257 13.607-12.257.629 0 1.258.05 1.879.148 3.255.512 6.103 2.388 8.138 5.21 2.197-2.73 4.33-4.903 6.261-6.129 2.909-1.844 5.815-2.78 8.642-2.78 3.116 0 5.94 1.13 8.073 3.203.039-.169.077-.338.114-.508l.109-.506c.039-.185.078-.37.115-.555.066-.327.132-.654.195-.984.066-.342.129-.686.189-1.03l.031-.186c.019-.11.037-.22.058-.331.034-.172.062-.344.09-.518l.011-.066.071-.453.07-.459v-.004c.051-.339.099-.678.144-1.017l.011-.084.063-.478.051-.408.09-.804.035-.323.009-.088c.019-.174.037-.348.053-.522v-.014c.013-.138.027-.277.039-.416.071-.788.131-1.58.179-2.375.009-.13.016-.261.024-.392v-.006l.026-.491.006-.11c.016-.332.03-.664.041-.996v-.012l.005-.13c.005-.109.009-.219.009-.329l.002-.044c.004-.103.008-.209.008-.314l.003-.09c.003-.105.006-.209.006-.314l.002-.089c.003-.133.006-.267.006-.4v-.489Zm-94.572 75.706c6.002-8.801 5.576-15.407-2.658-23.637-8.236-8.231-13.029-20.267-13.029-20.267s-1.789-6.991-5.869-6.349c-4.08.642-7.073 11.089 1.47 17.484 8.542 6.395-1.7 10.731-4.988 4.73-3.288-6.002-12.265-21.429-16.919-24.38-4.654-2.951-7.927-1.297-6.83 4.785.545 3.019 5.613 8.172 10.348 12.986 4.804 4.884 9.265 9.42 8.311 11.025-1.893 3.187-8.56-3.745-8.56-3.745s-20.876-18.998-25.42-14.047c-4.19 4.563 2.271 8.442 12.227 14.421.846.508 1.718 1.032 2.611 1.572 11.391 6.896 12.277 8.715 10.66 11.324-.597.964-4.41-1.325-9.1-4.14-7.995-4.801-18.537-11.13-20.026-5.465-1.288 4.903 6.468 7.907 13.502 10.632 5.86 2.27 11.22 4.346 10.431 7.164-.817 2.922-5.246.485-10.087-2.179-5.435-2.991-11.39-6.267-13.339-2.57-3.683 6.99 25.41 15.219 25.65 15.28 9.4 2.438 33.272 7.604 41.615-4.624Zm38.665 0c-6.002-8.801-5.576-15.407 2.659-23.637 8.235-8.231 13.028-20.267 13.028-20.267s1.789-6.991 5.869-6.349c4.08.642 7.073 11.089-1.469 17.484-8.543 6.395 1.699 10.731 4.987 4.73 3.289-6.002 12.26-21.429 16.914-24.38 4.654-2.951 7.929-1.297 6.831 4.785-.544 3.019-5.613 8.172-10.348 12.987-4.804 4.884-9.265 9.419-8.312 11.024 1.893 3.187 8.565-3.749 8.565-3.749s20.875-18.997 25.421-14.046c4.189 4.562-2.272 8.442-12.229 14.421-.871.523-1.741 1.047-2.61 1.572-11.391 6.896-12.277 8.715-10.661 11.323.598.965 4.411-1.325 9.1-4.14 7.996-4.8 18.538-11.13 20.027-5.464 1.289 4.903-6.468 7.907-13.502 10.632-5.86 2.27-11.22 4.346-10.432 7.164.816 2.921 5.244.484 10.084-2.18 5.435-2.991 11.391-6.269 13.339-2.569 3.684 6.994-25.414 15.215-25.649 15.275-9.4 2.446-33.272 7.612-41.612-4.616Z",clipRule:"evenodd"}),c.jsx("path",{fill:"#32343D",fillRule:"evenodd",d:"M152.047 102.567c1.182.418 2.061 1.69 2.897 2.901 1.13 1.636 2.182 3.159 3.796 2.301a10.909 10.909 0 0 0 4.247-15.214 10.912 10.912 0 0 0-7.742-5.198 10.904 10.904 0 0 0-11.689 6.589 10.909 10.909 0 0 0 .436 9.314c.748 1.407 2.408.743 4.16.042 1.373-.549 2.804-1.121 3.895-.735Zm-51.375 0c-1.182.418-2.061 1.691-2.897 2.901-1.13 1.637-2.183 3.159-3.796 2.301a10.903 10.903 0 0 1 8.263-20.068 10.909 10.909 0 0 1 7.707 9.348 10.906 10.906 0 0 1-1.221 6.211c-.749 1.407-2.409.743-4.161.043-1.374-.55-2.803-1.122-3.895-.736Zm43.427 46.751c8.143-6.415 11.134-16.889 11.134-23.341 0-5.1-3.431-3.495-8.924-.775l-.31.153c-5.042 2.497-11.754 5.822-19.122 5.822-7.369 0-14.081-3.325-19.122-5.823-5.671-2.809-9.228-4.571-9.228.624 0 6.656 3.182 17.585 11.916 23.934a18.968 18.968 0 0 1 11.575-9.786c.872-.26 1.77 1.241 2.689 2.778.887 1.482 1.794 2.998 2.716 2.998.983 0 1.948-1.494 2.891-2.952.985-1.525 1.946-3.01 2.875-2.713a18.967 18.967 0 0 1 10.91 9.081Z",clipRule:"evenodd"}),c.jsx("path",{fill:"#FF323D",d:"M144.097 149.317c-4.241 3.342-9.878 5.583-17.219 5.583-6.897 0-12.291-1.978-16.435-4.989a18.966 18.966 0 0 1 11.575-9.786c1.712-.511 3.527 5.776 5.405 5.776 2.01 0 3.947-6.246 5.766-5.665a18.974 18.974 0 0 1 10.908 9.081Z"}),c.jsx("path",{fill:"#FFAD03",fillRule:"evenodd",d:"M81.2 111.64a7.078 7.078 0 0 1-6.65.655 7.062 7.062 0 0 1-3.837-3.837 7.082 7.082 0 0 1 .657-6.65 7.087 7.087 0 1 1 9.83 9.832Zm101.413 0a7.08 7.08 0 0 1-6.651.655 7.064 7.064 0 0 1-3.837-3.837 7.102 7.102 0 0 1-.504-3.407 7.103 7.103 0 0 1 3.411-5.385 7.083 7.083 0 0 1 8.656 1.07 7.079 7.079 0 0 1 1.536 7.724 7.089 7.089 0 0 1-2.611 3.18Z",clipRule:"evenodd"})]}),v=h.forwardRef((l,a)=>c.jsx(e,{ref:a,...l}));export{v as HuggingFaceIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as r,r as x}from"./index-
|
|
1
|
+
import{j as r,r as x}from"./index-pBO0SZLD.js";const o=s=>r.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",width:"23px",height:"23px",viewBox:"0 0 23 23",version:"1.1",fill:"currentColor",...s,children:r.jsxs("g",{id:"surface1",children:[r.jsx("path",{d:"M 2.910156 12.402344 C 3.105469 14.300781 3.933594 16.144531 5.386719 17.597656 C 6.839844 19.050781 8.683594 19.878906 10.582031 20.078125 Z M 2.910156 12.402344 "}),r.jsx("path",{d:"M 2.875 11.015625 L 11.972656 20.113281 C 12.742188 20.066406 13.511719 19.921875 14.25 19.671875 L 3.3125 8.734375 C 3.066406 9.476562 2.917969 10.242188 2.875 11.015625 Z M 2.875 11.015625 "}),r.jsx("path",{d:"M 3.707031 7.773438 L 15.214844 19.28125 C 15.8125 18.996094 16.382812 18.636719 16.914062 18.203125 L 4.78125 6.074219 C 4.351562 6.605469 3.992188 7.175781 3.707031 7.773438 Z M 3.707031 7.773438 "}),r.jsx("path",{d:"M 5.425781 5.363281 C 8.796875 2.03125 14.230469 2.046875 17.585938 5.402344 C 20.941406 8.757812 20.953125 14.1875 17.625 17.558594 Z M 5.425781 5.363281 "})]})}),e=x.forwardRef((s,t)=>r.jsx(o,{ref:t,...s}));export{e as LinearIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as c,r as l}from"./index-
|
|
1
|
+
import{j as c,r as l}from"./index-pBO0SZLD.js";const s=e=>c.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",style:{enableBackground:"new 0 0 841.89 595.28"},viewBox:"0 0 841.89 595.28",width:"1em",height:"1em",...e,children:c.jsx("path",{d:"M349.6 124.45c48.94-54.99 129.98-71.12 196.61-39.38 88.52 42.17 120.82 149.6 72.62 232.48L510.41 503.76c-6.06 10.41-16.03 18-27.72 21.11a45.99 45.99 0 0 1-34.64-4.51l131.26-225.49c34.97-60.15 11.58-138.11-52.6-168.8-48.16-23.03-107.02-11.53-142.6 28.08-19.62 21.74-30.64 49.82-31.01 79.01-.37 29.2 9.94 57.53 29.01 79.76 3.43 3.99 7.12 7.75 11.04 11.25l-76.63 131.88c-3 5.16-6.99 9.67-11.74 13.3a45.845 45.845 0 0 1-15.97 7.82 46.098 46.098 0 0 1-17.77 1.16 46.124 46.124 0 0 1-16.87-5.68l83.19-143.17a164.492 164.492 0 0 1-25.29-56.58l-50.97 87.9c-6.06 10.41-16.03 18-27.72 21.11a45.99 45.99 0 0 1-34.64-4.51l131.83-226.76a168.65 168.65 0 0 1 19.03-26.19zm152.16 72.18c31.75 18.21 42.71 58.7 24.34 90.22L399.69 503.74c-6.06 10.41-16.03 18-27.72 21.11a45.99 45.99 0 0 1-34.64-4.51l117.38-201.93a66.675 66.675 0 0 1-26.01-11.65 66.228 66.228 0 0 1-18.7-21.4 65.82 65.82 0 0 1-7.95-27.22c-.64-9.54.82-19.1 4.27-28.02 3.45-8.92 8.8-17 15.7-23.67a66.558 66.558 0 0 1 24.24-14.95c9.08-3.18 18.74-4.37 28.32-3.49s18.85 3.82 27.18 8.62zm-45.98 40.76c-2.17 1.66-4 3.72-5.36 6.08h-.01a20.613 20.613 0 0 0-2.75 11.71c.27 4.09 1.76 8 4.27 11.25s5.94 5.69 9.84 7c3.91 1.32 8.12 1.45 12.1.39 3.99-1.06 7.56-3.27 10.28-6.35 2.72-3.08 4.46-6.89 5-10.95s-.15-8.19-1.97-11.87a20.806 20.806 0 0 0-8.28-8.78 20.964 20.964 0 0 0-15.83-2.07c-2.64.72-5.12 1.93-7.29 3.59z",style:{fillRule:"evenodd",clipRule:"evenodd",fill:"#505aa5"}})}),t=l.forwardRef((e,a)=>c.jsx(s,{ref:a,...e}));export{t as AirbyteIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as r,r as t}from"./index-
|
|
1
|
+
import{j as r,r as t}from"./index-pBO0SZLD.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 +1 @@
|
|
|
1
|
-
import{j as e,r}from"./index-D234yKNJ.js";const o=t=>e.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1.5em",height:"1.5em",viewBox:"0 0 271.68 271.44",...t,children:[e.jsx("path",{fill:"#4b28be",fillRule:"evenodd",stroke:"#4b28be",strokeLinecap:"square",strokeLinejoin:"bevel",strokeWidth:"0.372",d:"M0 0H236.16V200.16H0z",transform:"translate(16.8 33.6)"}),e.jsx("path",{fill:"#4b28be",stroke:"#000",strokeLinecap:"square",strokeLinejoin:"bevel",strokeOpacity:"0",strokeWidth:"0",d:"M271.438 211.394c.352 6.937-.443 13.75-2.614 20.34-2.327 7.064-5.873 13.473-10.703 19.19-4.434 5.25-9.531 9.648-15.478 13.082-5.521 3.188-11.408 5.458-17.703 6.396-3.903.582-7.89.602-12.213.876-29.839-.003-59.304-.01-88.77-.008-21.55.001-43.101.017-64.651.026-7.198.248-14.2-.73-21.033-3.084-6.44-2.22-12.137-5.627-17.396-9.925-9.476-7.743-15.557-17.645-18.872-29.302-1.522-5.354-2.134-10.862-1.812-16.82 0-12.484-.02-24.595.016-36.706.117-40.516.255-81.032.385-121.549.783-10.437 3.87-20.055 9.783-28.786C15.52 17.53 22.195 11.63 30.125 7.279c5.944-3.26 12.392-5.275 19.239-6.146C56.162.268 62.942.018 69.772.023c47.72.033 95.44-.083 143.16.104 9.438.036 18.839 1.547 27.249 6.296 3.968 2.24 7.638 5.06 11.254 7.862 6.317 4.895 10.991 11.184 14.38 18.37 2.683 5.686 4.512 11.692 5.174 17.967.353 3.348.317 6.737.433 10.481a1974.9 1974.9 0 00-.05 13.548c-.002 27.216-.01 54.432.002 81.647.007 18.365.041 36.73.064 55.096m-71.57 14.931c.194.042.39.12.584.12 10.57.007 21.141.127 31.708-.058 3.554-.062 6.769-1.583 8.802-4.744 2.357-3.665 2.788-7.602.902-11.587-2.08-4.395-5.844-6.167-10.526-6.248-9.103-.156-18.208-.313-27.312-.383-1.36-.01-2.724.45-4.413.613-1.053-.116-2.106-.333-3.16-.333-16.836-.007-33.671.009-50.508.036-1.995.003-3.998.01-5.984.174-4.559.375-7.655 2.96-9.495 6.957-1.726 3.75-1.124 7.38 1.304 10.734 2.508 3.464 5.958 5.006 10.132 5.01 18.167.02 36.335.015 54.502-.009 1.053-.001 2.104-.246 3.463-.282m-34.406-30.618c2.127.055 4.255.161 6.381.156 8.972-.023 17.95.118 26.912-.19 6.22-.215 10.965-5.693 10.761-11.687-.204-6.01-5.264-10.889-11.478-10.993-9.575-.16-19.15-.296-28.725-.392-1.245-.012-2.493.271-4.112.372-1.262-.034-2.525-.096-3.788-.097-29.802-.005-59.605-.015-89.407.018-2.38.003-4.772.217-7.137.507-4.912.602-8.257 3.765-9.092 8.43-.968 5.404.976 10.397 5.434 12.382 2.399 1.069 5.24 1.586 7.884 1.595 30.866.106 61.733.07 92.6.059 1.126 0 2.252-.142 3.767-.16m-33.916-30.538c.26.053.52.152.78.153 10.903.013 21.812.23 32.707-.062 6.042-.161 11.023-6.043 10.917-11.94-.113-6.298-5.103-11.248-11.906-11.3-9.574-.071-15.429.1-25.004.13-.848.004-5.776.003-6.995.075-.996-.038-1.992-.109-2.988-.109-31.332-.006-62.663-.006-93.995-.002-.93 0-1.866-.011-2.792.066-5.449.45-9.537 3.899-10.47 8.799-1.084 5.698.915 10.817 5.68 12.766 2.543 1.04 5.565 1.24 8.373 1.252 26.674.11 53.35.1 80.025.118 5.119.004 10.238-.03 15.668.054m34.378-55.225c-1.061-.055-2.122-.159-3.184-.159-31.267.01-62.533.028-93.8.056-1.194.001-2.402.024-3.58.196-5.91.867-9.494 4.807-9.831 10.733-.333 5.836 3.05 10.554 8.796 11.86 2.31.526 4.743.698 7.12.701 29.87.036 59.74.012 89.609-.002 1.063 0 2.127-.059 3.582-.028 6.047.066 12.093.162 18.14.187 4.985.021 9.975.097 14.953-.102 6.363-.254 12.095-5.974 12.102-11.894.005-4.857-3.841-11.69-11.479-11.67-10.689.03-21.378.116-32.428.122M144.75 48.498c-1.264-.023-2.528-.074-3.792-.065-7.121.048-14.243.227-21.363.143-11.378-.135-22.754-.462-34.132-.67-8.178-.15-16.358-.393-24.534-.304-5.435.059-10.961.107-16.276 1.086-9.787 1.804-10.814 11.04-6.7 17.956 2.134 3.586 5.693 4.878 9.896 4.87 26.092-.05 52.184.005 78.276-.002 6.587-.001 13.174-.098 20.15-.082 12.045.028 24.09.137 36.136.04 4.331-.035 7.48-3.111 7.992-7.463.278-2.367.357-4.785.232-7.165-.279-5.297-3.992-8.213-9.275-8.264-8.648-.085-15.617-.022-24.266-.04-3.514-.008-8.468-.182-12.344-.04M192.3 78.792c-.399-.018-.797-.052-1.196-.052-31.617.008-63.234.01-94.85.056-1.58.002-3.207.21-4.727.63-5.403 1.489-8.849 5.923-8.864 11.187-.016 5.283 3.31 9.742 8.615 11.108 1.961.505 4.084.52 6.133.524 27.624.044 55.247.052 82.87.054 4.258 0 8.515-.07 13.132-.043 10.369.102 20.738.214 31.107.287.99.007 1.986-.195 2.969-.361 4.645-.785 8.307-4.333 9.173-8.859 1.535-8.026-3.65-14.499-11.9-14.587-10.167-.108-20.337-.022-30.506-.013-.53 0-1.061.067-1.956.069z"}),e.jsx("path",{fill:"#fff",stroke:"#000",strokeLinecap:"square",strokeLinejoin:"bevel",strokeOpacity:"0",strokeWidth:"0",d:"M193.236 102.058c-4.259.037-8.516.106-12.774.106-27.624-.002-55.246-.01-82.87-.054-2.049-.003-4.172-.019-6.133-.524-5.305-1.366-8.63-5.825-8.615-11.108.015-5.265 3.461-9.698 8.864-11.187a18.09 18.09 0 014.726-.63c31.617-.046 63.234-.048 94.85-.056.4 0 2.227.485 1.453.177 2.11 1.044 3.568 2.207 4.52 3.715 3.834 4.268 4.287 10.821.555 15.43-.439 2.172-2.404 3.217-4.576 4.13z"}),e.jsx("path",{fill:"#fff",stroke:"#000",strokeLinecap:"square",strokeLinejoin:"bevel",strokeOpacity:"0",strokeWidth:"0",d:"M146.064 71.227c-6.586.052-13.173.149-19.76.15-26.092.007-52.184-.048-78.276.002-4.203.008-7.762-1.284-9.896-4.87-4.114-6.916-3.087-16.152 6.7-17.956 5.314-.98 10.84-1.027 16.276-1.086 8.176-.09 16.357.153 24.534.303 11.378.21 22.754.535 34.132.67 7.12.085 14.242-.094 21.363-.143a45.935 45.935 0 014.07.165c.973.482 1.663.877 2.367 1.244 8.685 4.53 9.57 14.355 1.344 19.628a87.625 87.625 0 00-2.854 1.893z"}),e.jsx("path",{fill:"#fff",stroke:"#000",strokeLinecap:"square",strokeLinejoin:"bevel",strokeOpacity:"0",strokeWidth:"0",d:"M164.423 133.103c-1.063.032-2.127.091-3.19.092-29.87.014-59.74.037-89.61.001-2.377-.003-4.81-.175-7.119-.7-5.745-1.307-9.129-6.025-8.796-11.86.337-5.927 3.92-9.867 9.83-10.733 1.179-.173 2.387-.196 3.58-.197 31.268-.028 62.535-.046 93.801-.056 1.061 0 3.563 1.319 4.867 1.516 1.527 1.392 1.41 1.39 2.646 2.686 4.339 4.545 4.02 11.574-.783 15.606-1.26 1.941-3.059 3.114-5.226 3.645z"}),e.jsx("path",{fill:"#fff",stroke:"#000",strokeLinecap:"square",strokeLinejoin:"bevel",strokeOpacity:"0",strokeWidth:"0",d:"M131.415 164.935c-5.12.016-10.239.048-15.358.045-26.675-.017-53.35-.008-80.025-.118-2.808-.012-5.83-.211-8.372-1.252-4.766-1.95-6.765-7.068-5.68-12.766.932-4.9 5.02-8.348 10.47-8.8.925-.076 1.86-.065 2.791-.065 31.332-.003 62.663-.004 93.995.002.996 0 1.992.071 3.247.246 1.877.977 3.464 2.02 4.353 3.411 5.006 5.198 3.583 13.637-2.365 17.73-1.037.715-2.017.855-3.056 1.567z"}),e.jsx("path",{fill:"#fff",stroke:"#000",strokeLinecap:"square",strokeLinejoin:"bevel",strokeOpacity:"0",strokeWidth:"0",d:"M165.253 195.515c-1.127.075-2.253.217-3.38.217-30.866.012-61.733.047-92.6-.059-2.644-.009-5.485-.526-7.883-1.595-4.458-1.985-6.402-6.978-5.434-12.383.835-4.664 4.18-7.828 9.092-8.429 2.365-.29 4.757-.504 7.137-.507 29.803-.034 59.605-.023 89.407-.018 1.263 0 2.526.063 4.063.218 1.513 1.115 2.83 2.027 3.974 3.118 5.934 5.657 4.87 13.972-2.249 18.003-.742.42-1.42.954-2.127 1.435z"}),e.jsx("path",{fill:"#fff",stroke:"#000",strokeLinecap:"square",strokeLinejoin:"bevel",strokeOpacity:"0",strokeWidth:"0",d:"M199.74 226.094c-1.051.132-2.104.377-3.156.378-18.167.024-36.335.029-54.502.009-4.174-.005-7.624-1.545-10.132-5.01-2.428-3.354-3.03-6.983-1.304-10.734 1.84-3.997 4.936-6.582 9.495-6.957 1.986-.164 3.989-.171 5.984-.175 16.836-.026 33.673-.042 50.508-.035 1.054 0 2.197.487 3.506.74 1.067.716 1.8 1.007 2.596 1.603 6.008 4.498 6.166 12.992.323 17.66-1.085.867-2.21 1.682-3.317 2.521z"}),e.jsx("path",{fill:"#5a5571",stroke:"#000",strokeLinecap:"square",strokeLinejoin:"bevel",strokeOpacity:"0",strokeWidth:"0",d:"M146.259 71.261c.616-.607 1.405-1.212 2.24-1.747 7.478-5.273 7.067-15.278-.925-19.808a44.945 44.945 0 01-2.187-1.233c3.418-.252 7.832-.047 11.346-.04 8.649.018 13.862-.075 22.511.01 3.706.208 8.706.029 12.83 5.729 1.731 2.468 1.595 9.188.06 11.657-3.51 4.838-6.914 5.331-9.545 5.506-12.044.097-24.09-.012-36.33-.074z"}),e.jsx("path",{fill:"#5a5571",stroke:"#000",strokeLinecap:"square",strokeLinejoin:"bevel",strokeOpacity:"0",strokeWidth:"0",d:"M193.415 102.09c1.38-1.05 2.989-2.126 4.397-4.164 3.516-4.436 3.192-10.974-.555-15.43-1.006-1.353-3.001-2.791-5.058-3.908.457-.143 1.707 0 2.238 0 10.169-.01 20.338-.095 30.506.013 8.25.088 13.434 6.561 11.9 14.587-.866 4.526-4.528 8.074-9.173 8.859-.983.166-1.98.368-2.969.361-10.37-.073-20.738-.185-31.286-.318z"}),e.jsx("path",{fill:"#595471",stroke:"#000",strokeLinecap:"square",strokeLinejoin:"bevel",strokeOpacity:"0",strokeWidth:"0",d:"M164.62 133.135c1.704-.782 3.556-1.875 5.03-3.677 4.802-4.032 5.12-11.06.782-15.606-1.384-2.276-5.855-3.918-6.875-4.234 10.626-.175 24.285.098 34.974.07 7.638-.02 11.484 6.812 11.479 11.668-.006 5.921-5.74 11.641-12.102 11.895-4.978.199-9.968.123-14.953.102-6.047-.025-12.093-.121-18.336-.218z"}),e.jsx("path",{fill:"#595471",stroke:"#000",strokeLinecap:"square",strokeLinejoin:"bevel",strokeOpacity:"0",strokeWidth:"0",d:"M131.57 164.984c.893-.73 2.056-1.05 2.961-2.185 5.625-4.03 6.8-11.287 2.621-16.65-.617-1.56-4.183-3.575-6.149-4.253.775-.238 3.288-.117 4.136-.12 9.575-.031 19.15-.082 28.724-.01 6.803.05 12.153 5.12 12.266 11.42.106 5.896-4.875 11.778-10.917 11.94-10.895.29-21.804.074-32.707.06-.26 0-.52-.099-.936-.202z"}),e.jsx("path",{fill:"#585170",stroke:"#000",strokeLinecap:"square",strokeLinejoin:"bevel",strokeOpacity:"0",strokeWidth:"0",d:"M165.447 195.543c.513-.51 1.528-.706 2.27-1.126 7.12-4.03 7.847-12.683 1.912-18.34-1.145-1.091-2.462-2.003-3.788-3.095 1.158-.245 2.406-.528 3.651-.516 9.575.096 19.15.232 28.725.392 6.214.104 11.274 4.982 11.478 10.993.204 5.994-4.542 11.473-10.76 11.686-8.963.309-17.941.168-26.913.19-2.127.006-4.254-.1-6.575-.184z"}),e.jsx("path",{fill:"#554e6e",stroke:"#000",strokeLinecap:"square",strokeLinejoin:"bevel",strokeOpacity:"0",strokeWidth:"0",d:"M199.894 226.142c.953-.887 2.079-1.702 3.164-2.569 5.843-4.668 5.685-13.162-.323-17.66-.585-.878-4.018-2.084-5.245-2.328 1.27-.34 5.356-.306 6.716-.295 9.105.07 18.208.227 27.312.383 4.682.08 8.447 1.853 10.526 6.248 1.886 3.985 1.454 7.922-.902 11.587-2.033 3.16-5.248 4.682-8.802 4.744-10.567.185-21.138.065-31.708.058-.195 0-.39-.078-.738-.168z"})]}),a=r.forwardRef((t,s)=>e.jsx(o,{ref:s,...t}));export{a as LMStudioIcon};
|
|
1
|
+
import{j as e,r}from"./index-pBO0SZLD.js";const o=t=>e.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1.5em",height:"1.5em",viewBox:"0 0 271.68 271.44",...t,children:[e.jsx("path",{fill:"#4b28be",fillRule:"evenodd",stroke:"#4b28be",strokeLinecap:"square",strokeLinejoin:"bevel",strokeWidth:"0.372",d:"M0 0H236.16V200.16H0z",transform:"translate(16.8 33.6)"}),e.jsx("path",{fill:"#4b28be",stroke:"#000",strokeLinecap:"square",strokeLinejoin:"bevel",strokeOpacity:"0",strokeWidth:"0",d:"M271.438 211.394c.352 6.937-.443 13.75-2.614 20.34-2.327 7.064-5.873 13.473-10.703 19.19-4.434 5.25-9.531 9.648-15.478 13.082-5.521 3.188-11.408 5.458-17.703 6.396-3.903.582-7.89.602-12.213.876-29.839-.003-59.304-.01-88.77-.008-21.55.001-43.101.017-64.651.026-7.198.248-14.2-.73-21.033-3.084-6.44-2.22-12.137-5.627-17.396-9.925-9.476-7.743-15.557-17.645-18.872-29.302-1.522-5.354-2.134-10.862-1.812-16.82 0-12.484-.02-24.595.016-36.706.117-40.516.255-81.032.385-121.549.783-10.437 3.87-20.055 9.783-28.786C15.52 17.53 22.195 11.63 30.125 7.279c5.944-3.26 12.392-5.275 19.239-6.146C56.162.268 62.942.018 69.772.023c47.72.033 95.44-.083 143.16.104 9.438.036 18.839 1.547 27.249 6.296 3.968 2.24 7.638 5.06 11.254 7.862 6.317 4.895 10.991 11.184 14.38 18.37 2.683 5.686 4.512 11.692 5.174 17.967.353 3.348.317 6.737.433 10.481a1974.9 1974.9 0 00-.05 13.548c-.002 27.216-.01 54.432.002 81.647.007 18.365.041 36.73.064 55.096m-71.57 14.931c.194.042.39.12.584.12 10.57.007 21.141.127 31.708-.058 3.554-.062 6.769-1.583 8.802-4.744 2.357-3.665 2.788-7.602.902-11.587-2.08-4.395-5.844-6.167-10.526-6.248-9.103-.156-18.208-.313-27.312-.383-1.36-.01-2.724.45-4.413.613-1.053-.116-2.106-.333-3.16-.333-16.836-.007-33.671.009-50.508.036-1.995.003-3.998.01-5.984.174-4.559.375-7.655 2.96-9.495 6.957-1.726 3.75-1.124 7.38 1.304 10.734 2.508 3.464 5.958 5.006 10.132 5.01 18.167.02 36.335.015 54.502-.009 1.053-.001 2.104-.246 3.463-.282m-34.406-30.618c2.127.055 4.255.161 6.381.156 8.972-.023 17.95.118 26.912-.19 6.22-.215 10.965-5.693 10.761-11.687-.204-6.01-5.264-10.889-11.478-10.993-9.575-.16-19.15-.296-28.725-.392-1.245-.012-2.493.271-4.112.372-1.262-.034-2.525-.096-3.788-.097-29.802-.005-59.605-.015-89.407.018-2.38.003-4.772.217-7.137.507-4.912.602-8.257 3.765-9.092 8.43-.968 5.404.976 10.397 5.434 12.382 2.399 1.069 5.24 1.586 7.884 1.595 30.866.106 61.733.07 92.6.059 1.126 0 2.252-.142 3.767-.16m-33.916-30.538c.26.053.52.152.78.153 10.903.013 21.812.23 32.707-.062 6.042-.161 11.023-6.043 10.917-11.94-.113-6.298-5.103-11.248-11.906-11.3-9.574-.071-15.429.1-25.004.13-.848.004-5.776.003-6.995.075-.996-.038-1.992-.109-2.988-.109-31.332-.006-62.663-.006-93.995-.002-.93 0-1.866-.011-2.792.066-5.449.45-9.537 3.899-10.47 8.799-1.084 5.698.915 10.817 5.68 12.766 2.543 1.04 5.565 1.24 8.373 1.252 26.674.11 53.35.1 80.025.118 5.119.004 10.238-.03 15.668.054m34.378-55.225c-1.061-.055-2.122-.159-3.184-.159-31.267.01-62.533.028-93.8.056-1.194.001-2.402.024-3.58.196-5.91.867-9.494 4.807-9.831 10.733-.333 5.836 3.05 10.554 8.796 11.86 2.31.526 4.743.698 7.12.701 29.87.036 59.74.012 89.609-.002 1.063 0 2.127-.059 3.582-.028 6.047.066 12.093.162 18.14.187 4.985.021 9.975.097 14.953-.102 6.363-.254 12.095-5.974 12.102-11.894.005-4.857-3.841-11.69-11.479-11.67-10.689.03-21.378.116-32.428.122M144.75 48.498c-1.264-.023-2.528-.074-3.792-.065-7.121.048-14.243.227-21.363.143-11.378-.135-22.754-.462-34.132-.67-8.178-.15-16.358-.393-24.534-.304-5.435.059-10.961.107-16.276 1.086-9.787 1.804-10.814 11.04-6.7 17.956 2.134 3.586 5.693 4.878 9.896 4.87 26.092-.05 52.184.005 78.276-.002 6.587-.001 13.174-.098 20.15-.082 12.045.028 24.09.137 36.136.04 4.331-.035 7.48-3.111 7.992-7.463.278-2.367.357-4.785.232-7.165-.279-5.297-3.992-8.213-9.275-8.264-8.648-.085-15.617-.022-24.266-.04-3.514-.008-8.468-.182-12.344-.04M192.3 78.792c-.399-.018-.797-.052-1.196-.052-31.617.008-63.234.01-94.85.056-1.58.002-3.207.21-4.727.63-5.403 1.489-8.849 5.923-8.864 11.187-.016 5.283 3.31 9.742 8.615 11.108 1.961.505 4.084.52 6.133.524 27.624.044 55.247.052 82.87.054 4.258 0 8.515-.07 13.132-.043 10.369.102 20.738.214 31.107.287.99.007 1.986-.195 2.969-.361 4.645-.785 8.307-4.333 9.173-8.859 1.535-8.026-3.65-14.499-11.9-14.587-10.167-.108-20.337-.022-30.506-.013-.53 0-1.061.067-1.956.069z"}),e.jsx("path",{fill:"#fff",stroke:"#000",strokeLinecap:"square",strokeLinejoin:"bevel",strokeOpacity:"0",strokeWidth:"0",d:"M193.236 102.058c-4.259.037-8.516.106-12.774.106-27.624-.002-55.246-.01-82.87-.054-2.049-.003-4.172-.019-6.133-.524-5.305-1.366-8.63-5.825-8.615-11.108.015-5.265 3.461-9.698 8.864-11.187a18.09 18.09 0 014.726-.63c31.617-.046 63.234-.048 94.85-.056.4 0 2.227.485 1.453.177 2.11 1.044 3.568 2.207 4.52 3.715 3.834 4.268 4.287 10.821.555 15.43-.439 2.172-2.404 3.217-4.576 4.13z"}),e.jsx("path",{fill:"#fff",stroke:"#000",strokeLinecap:"square",strokeLinejoin:"bevel",strokeOpacity:"0",strokeWidth:"0",d:"M146.064 71.227c-6.586.052-13.173.149-19.76.15-26.092.007-52.184-.048-78.276.002-4.203.008-7.762-1.284-9.896-4.87-4.114-6.916-3.087-16.152 6.7-17.956 5.314-.98 10.84-1.027 16.276-1.086 8.176-.09 16.357.153 24.534.303 11.378.21 22.754.535 34.132.67 7.12.085 14.242-.094 21.363-.143a45.935 45.935 0 014.07.165c.973.482 1.663.877 2.367 1.244 8.685 4.53 9.57 14.355 1.344 19.628a87.625 87.625 0 00-2.854 1.893z"}),e.jsx("path",{fill:"#fff",stroke:"#000",strokeLinecap:"square",strokeLinejoin:"bevel",strokeOpacity:"0",strokeWidth:"0",d:"M164.423 133.103c-1.063.032-2.127.091-3.19.092-29.87.014-59.74.037-89.61.001-2.377-.003-4.81-.175-7.119-.7-5.745-1.307-9.129-6.025-8.796-11.86.337-5.927 3.92-9.867 9.83-10.733 1.179-.173 2.387-.196 3.58-.197 31.268-.028 62.535-.046 93.801-.056 1.061 0 3.563 1.319 4.867 1.516 1.527 1.392 1.41 1.39 2.646 2.686 4.339 4.545 4.02 11.574-.783 15.606-1.26 1.941-3.059 3.114-5.226 3.645z"}),e.jsx("path",{fill:"#fff",stroke:"#000",strokeLinecap:"square",strokeLinejoin:"bevel",strokeOpacity:"0",strokeWidth:"0",d:"M131.415 164.935c-5.12.016-10.239.048-15.358.045-26.675-.017-53.35-.008-80.025-.118-2.808-.012-5.83-.211-8.372-1.252-4.766-1.95-6.765-7.068-5.68-12.766.932-4.9 5.02-8.348 10.47-8.8.925-.076 1.86-.065 2.791-.065 31.332-.003 62.663-.004 93.995.002.996 0 1.992.071 3.247.246 1.877.977 3.464 2.02 4.353 3.411 5.006 5.198 3.583 13.637-2.365 17.73-1.037.715-2.017.855-3.056 1.567z"}),e.jsx("path",{fill:"#fff",stroke:"#000",strokeLinecap:"square",strokeLinejoin:"bevel",strokeOpacity:"0",strokeWidth:"0",d:"M165.253 195.515c-1.127.075-2.253.217-3.38.217-30.866.012-61.733.047-92.6-.059-2.644-.009-5.485-.526-7.883-1.595-4.458-1.985-6.402-6.978-5.434-12.383.835-4.664 4.18-7.828 9.092-8.429 2.365-.29 4.757-.504 7.137-.507 29.803-.034 59.605-.023 89.407-.018 1.263 0 2.526.063 4.063.218 1.513 1.115 2.83 2.027 3.974 3.118 5.934 5.657 4.87 13.972-2.249 18.003-.742.42-1.42.954-2.127 1.435z"}),e.jsx("path",{fill:"#fff",stroke:"#000",strokeLinecap:"square",strokeLinejoin:"bevel",strokeOpacity:"0",strokeWidth:"0",d:"M199.74 226.094c-1.051.132-2.104.377-3.156.378-18.167.024-36.335.029-54.502.009-4.174-.005-7.624-1.545-10.132-5.01-2.428-3.354-3.03-6.983-1.304-10.734 1.84-3.997 4.936-6.582 9.495-6.957 1.986-.164 3.989-.171 5.984-.175 16.836-.026 33.673-.042 50.508-.035 1.054 0 2.197.487 3.506.74 1.067.716 1.8 1.007 2.596 1.603 6.008 4.498 6.166 12.992.323 17.66-1.085.867-2.21 1.682-3.317 2.521z"}),e.jsx("path",{fill:"#5a5571",stroke:"#000",strokeLinecap:"square",strokeLinejoin:"bevel",strokeOpacity:"0",strokeWidth:"0",d:"M146.259 71.261c.616-.607 1.405-1.212 2.24-1.747 7.478-5.273 7.067-15.278-.925-19.808a44.945 44.945 0 01-2.187-1.233c3.418-.252 7.832-.047 11.346-.04 8.649.018 13.862-.075 22.511.01 3.706.208 8.706.029 12.83 5.729 1.731 2.468 1.595 9.188.06 11.657-3.51 4.838-6.914 5.331-9.545 5.506-12.044.097-24.09-.012-36.33-.074z"}),e.jsx("path",{fill:"#5a5571",stroke:"#000",strokeLinecap:"square",strokeLinejoin:"bevel",strokeOpacity:"0",strokeWidth:"0",d:"M193.415 102.09c1.38-1.05 2.989-2.126 4.397-4.164 3.516-4.436 3.192-10.974-.555-15.43-1.006-1.353-3.001-2.791-5.058-3.908.457-.143 1.707 0 2.238 0 10.169-.01 20.338-.095 30.506.013 8.25.088 13.434 6.561 11.9 14.587-.866 4.526-4.528 8.074-9.173 8.859-.983.166-1.98.368-2.969.361-10.37-.073-20.738-.185-31.286-.318z"}),e.jsx("path",{fill:"#595471",stroke:"#000",strokeLinecap:"square",strokeLinejoin:"bevel",strokeOpacity:"0",strokeWidth:"0",d:"M164.62 133.135c1.704-.782 3.556-1.875 5.03-3.677 4.802-4.032 5.12-11.06.782-15.606-1.384-2.276-5.855-3.918-6.875-4.234 10.626-.175 24.285.098 34.974.07 7.638-.02 11.484 6.812 11.479 11.668-.006 5.921-5.74 11.641-12.102 11.895-4.978.199-9.968.123-14.953.102-6.047-.025-12.093-.121-18.336-.218z"}),e.jsx("path",{fill:"#595471",stroke:"#000",strokeLinecap:"square",strokeLinejoin:"bevel",strokeOpacity:"0",strokeWidth:"0",d:"M131.57 164.984c.893-.73 2.056-1.05 2.961-2.185 5.625-4.03 6.8-11.287 2.621-16.65-.617-1.56-4.183-3.575-6.149-4.253.775-.238 3.288-.117 4.136-.12 9.575-.031 19.15-.082 28.724-.01 6.803.05 12.153 5.12 12.266 11.42.106 5.896-4.875 11.778-10.917 11.94-10.895.29-21.804.074-32.707.06-.26 0-.52-.099-.936-.202z"}),e.jsx("path",{fill:"#585170",stroke:"#000",strokeLinecap:"square",strokeLinejoin:"bevel",strokeOpacity:"0",strokeWidth:"0",d:"M165.447 195.543c.513-.51 1.528-.706 2.27-1.126 7.12-4.03 7.847-12.683 1.912-18.34-1.145-1.091-2.462-2.003-3.788-3.095 1.158-.245 2.406-.528 3.651-.516 9.575.096 19.15.232 28.725.392 6.214.104 11.274 4.982 11.478 10.993.204 5.994-4.542 11.473-10.76 11.686-8.963.309-17.941.168-26.913.19-2.127.006-4.254-.1-6.575-.184z"}),e.jsx("path",{fill:"#554e6e",stroke:"#000",strokeLinecap:"square",strokeLinejoin:"bevel",strokeOpacity:"0",strokeWidth:"0",d:"M199.894 226.142c.953-.887 2.079-1.702 3.164-2.569 5.843-4.668 5.685-13.162-.323-17.66-.585-.878-4.018-2.084-5.245-2.328 1.27-.34 5.356-.306 6.716-.295 9.105.07 18.208.227 27.312.383 4.682.08 8.447 1.853 10.526 6.248 1.886 3.985 1.454 7.922-.902 11.587-2.033 3.16-5.248 4.682-8.802 4.744-10.567.185-21.138.065-31.708.058-.195 0-.39-.078-.738-.168z"})]}),a=r.forwardRef((t,s)=>e.jsx(o,{ref:s,...t}));export{a as LMStudioIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as s,r as l}from"./index-
|
|
1
|
+
import{j as s,r as l}from"./index-pBO0SZLD.js";const r=e=>s.jsxs("svg",{fill:e.isDark?"#ffffff":"#0A0A0A",fillRule:"evenodd",style:{flex:"none",lineHeight:1},viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg",...e,children:[s.jsx("title",{children:"Grok"}),s.jsx("path",{d:"M6.469 8.776L16.512 23h-4.464L2.005 8.776H6.47zm-.004 7.9l2.233 3.164L6.467 23H2l4.465-6.324zM22 2.582V23h-3.659V7.764L22 2.582zM22 1l-9.952 14.095-2.233-3.163L17.533 1H22z"})]}),f=l.forwardRef((e,t)=>s.jsx(r,{ref:t,...e}));export{f as XAIIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as t,r}from"./index-
|
|
1
|
+
import{j as t,r}from"./index-pBO0SZLD.js";const n=e=>e.isDark?t.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0,0,256,256",fillRule:"nonzero",...e,children:t.jsx("g",{fill:"#ffffff",fillRule:"nonzero",stroke:"none",strokeWidth:"1",strokeLinecap:"butt",strokeLinejoin:"miter",strokeMiterlimit:"10",strokeDasharray:"",strokeDashoffset:"0",fontFamily:"none",fontWeight:"none",fontSize:"none",textAnchor:"none",style:{mixBlendMode:"normal"},children:t.jsx("g",{transform:"scale(8.53333,8.53333)",children:t.jsx("path",{d:"M26.37,26l-8.795,-12.822l0.015,0.012l7.93,-9.19h-2.65l-6.46,7.48l-5.13,-7.48h-6.95l8.211,11.971l-0.001,-0.001l-8.66,10.03h2.65l7.182,-8.322l5.708,8.322zM10.23,6l12.34,18h-2.1l-12.35,-18z"})})})}):t.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",...e,viewBox:"0 0 30 30",width:"30px",height:"30px",fill:"#000000",children:t.jsx("path",{d:"M26.37,26l-8.795-12.822l0.015,0.012L25.52,4h-2.65l-6.46,7.48L11.28,4H4.33l8.211,11.971L12.54,15.97L3.88,26h2.65 l7.182-8.322L19.42,26H26.37z M10.23,6l12.34,18h-2.1L8.12,6H10.23z"})}),s=r.forwardRef((e,l)=>t.jsx(n,{ref:l,...e}));export{s as TwitterXIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as t,r as l}from"./index-
|
|
1
|
+
import{j as t,r as l}from"./index-pBO0SZLD.js";const r=c=>t.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"#7fce2c",viewBox:"0 0 32 32",...c,children:t.jsx("path",{d:"M29.343 16.818c.1 1.695-.08 3.368-.305 5.045-.225 1.712-.508 3.416-.964 5.084-.3 1.067-.673 2.1-1.202 3.074-.65 1.192-1.635 1.87-2.992 1.924l-3.832.036c-.636-.017-1.278-.146-1.9-.297-1.192-.3-1.862-1.1-2.06-2.3a8.976 8.976 0 0 1 .04-3.264c.252-1.23 1-1.96 2.234-2.103.817-.1 1.65-.077 2.476-.1.205-.007.275.098.203.287a2.695 2.695 0 0 0-.098 1.623c.053.207-.023.307-.26.305a7.77 7.77 0 0 0-1.123.053c-.636.086-.96.47-.96 1.112 0 .205.026.416.066.622.103.507.45.78.944.837 1.123.127 2.247.138 3.37-.05.675-.114 1.08-.54 1.16-1.208.152-1.3.155-2.587-.228-3.845-.33-1.092-1.006-1.565-2.134-1.7l-3.36-.54c-1.06-.193-1.7-.887-1.92-1.9-.13-.572-.14-1.17-.214-1.757-.013-.106-.074-.208-.1-.3-.04.1-.106.212-.117.326-.066.68-.053 1.373-.185 2.04-.16.8-.404 1.566-.67 2.33-.185.535-.616.837-1.205.8a37.76 37.76 0 0 1-7.123-1.353l-.64-.207c-.927-.26-1.487-.903-1.74-1.787l-1-3.853-.74-4.3c-.115-.755-.2-1.523-.083-2.293.154-1.112.914-1.903 2.04-1.964l3.558-.062c.127 0 .254.003.373-.026a1.23 1.23 0 0 0 1.01-1.255l-.05-3.036c-.048-1.576.8-2.38 2.156-2.622a10.58 10.58 0 0 1 4.91.26c.933.275 1.467.923 1.715 1.83.058.22.146.3.37.287l2.582.01 3.333.37c.686.095 1.364.25 2.032.42 1.165.298 1.793 1.112 1.962 2.256l.357 3.355.3 5.577.01 2.277zm-4.534-1.155c-.02-.666-.07-1.267-.444-1.784a1.66 1.66 0 0 0-2.469-.15c-.364.4-.494.88-.564 1.4-.008.034.106.126.16.126l.8-.053c.768.007 1.523.113 2.25.393.066.026.136.04.265.077zM8.787 1.154a3.82 3.82 0 0 0-.278 1.592l.05 2.934c.005.357-.075.45-.433.45L5.1 6.156c-.583 0-1.143.1-1.554.278l5.2-5.332c.02.013.04.033.06.053z"})}),a=l.forwardRef((c,e)=>t.jsx(r,{ref:e,...c}));export{a as EvernoteIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as C,r}from"./index-
|
|
1
|
+
import{j as C,r}from"./index-pBO0SZLD.js";const i=e=>C.jsxs("svg",{width:"32",height:"32",viewBox:"0 0 32 32",fill:"none",xmlns:"http://www.w3.org/2000/svg",...e,children:[C.jsx("rect",{width:"32",height:"32",rx:"6",fill:"black"}),C.jsx("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M16.9653 6.03765C13.5255 6.45749 9.90087 9.93043 8.09435 14.5374C5.84081 20.2844 8.24463 25.3107 13.5622 25.9704C13.878 26.0096 15.1952 26.0099 15.4857 25.9709C16.0316 25.8975 16.1811 25.8744 16.4369 25.8239C20.1819 25.0836 23.8347 22.0721 24.5932 19.0997C25.1286 17.0016 24.2448 15.0964 22.6725 14.9591C22.3813 14.9337 22.3898 14.9548 22.5371 14.6224C23.605 12.2127 23.6023 10.4331 22.5287 8.89098C21.5397 7.47036 20.0623 6.44414 18.4872 6.0837C18.0871 5.99218 17.4869 5.97399 16.9653 6.03765ZM18.1808 7.81294C19.5337 8.11597 21.1637 9.51345 21.4969 10.656C21.7926 11.6702 21.5581 12.6883 20.5433 14.796C20.2342 15.438 20.1608 15.6058 19.9766 16.0906C19.6716 16.8934 19.5566 17.027 19.1742 17.0225C18.3746 17.0132 17.3748 16.0635 17.1372 15.0876C16.9391 14.2742 17.2553 13.0324 18.1167 11.2404C18.5022 10.4382 18.5308 10.2006 18.2601 10.0517L18.1822 10.0089L18.0326 10.0608C17.2396 10.3357 15.7131 12.0891 14.5838 14.0223C13.4032 16.0432 13.0645 17.0663 13.0627 18.6172C13.0602 20.7944 13.9868 21.4439 16.4369 20.9827C18.5205 20.5904 20.3253 19.3138 21.6852 17.2704C22.3435 16.2812 23.0153 16.5989 23.0085 17.8963C23.003 18.9503 22.4766 19.9988 21.3725 21.1549C18.6388 24.0173 14.3656 25.0805 11.6093 23.5841C8.73851 22.0256 8.16341 18.1762 10.192 14.0976C12.0204 10.4215 14.5416 8.1588 17.2401 7.77237C17.3884 7.75112 18.028 7.77872 18.1808 7.81294Z",fill:"white"})]}),s=r.forwardRef((e,t)=>C.jsx(i,{ref:t,...e}));export{s as CrewAiIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as e,r as o}from"./index-
|
|
1
|
+
import{j as e,r as o}from"./index-pBO0SZLD.js";const r=s=>e.jsx("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",preserveAspectRatio:"xMidYMid",viewBox:"0 0 256 256",...s,children:e.jsx("path",{fill:"#ED2226",d:"M128 0C57.426 0 0 57.233 0 128c0 70.574 57.233 128 128 128 70.574 0 128-57.233 128-128S198.574 0 128 0zm86.429 150.429c0 7.734-4.447 14.502-13.148 16.048-15.082 2.707-46.792 4.254-73.281 4.254-26.49 0-58.2-1.547-73.281-4.254-8.7-1.546-13.148-8.314-13.148-16.048v-49.885c0-7.734 5.994-14.888 13.148-16.049 4.447-.773 14.888-1.546 23.01-1.546 3.093 0 5.606 2.32 5.606 5.994v34.997l44.858-.967 44.858.967V88.943c0-3.674 2.514-5.994 5.608-5.994 8.12 0 18.562.773 23.009 1.546 7.347 1.16 13.148 8.315 13.148 16.049-.387 16.435-.387 33.257-.387 49.885z"})}),i=o.forwardRef((s,t)=>e.jsx(r,{ref:t,...s}));export{i as CouchbaseIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as l,r as c}from"./index-
|
|
1
|
+
import{j as l,r as c}from"./index-pBO0SZLD.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 e,r as i}from"./index-
|
|
1
|
+
import{j as e,r as i}from"./index-pBO0SZLD.js";const s=t=>e.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",x:"0",y:"0",version:"1.1",viewBox:"0 0 1080 1080",width:"1.1em",height:"1.1em",...t,children:[e.jsx("path",{fill:"#97d700",d:"M189.7 149c-75.3 10.7-127.1 79.6-116.5 154.1l81 576.8L493 106.4z"}),e.jsx("path",{fill:"#71c5e8",d:"M1008 629.2 976 186c-5.7-75.3-71-131.4-145.6-126.4-2.8 0-6.4.7-9.2.7L690.4 78.7l287.7 645.7c21.3-26.3 32-60.4 29.9-95.2"}),e.jsx("path",{fill:"#ff9013",d:"M277 1019.9c23.4 2.8 46.9-.7 68.2-9.9l493.7-208.8L604.5 274z"})]}),o=""+new URL("apify_white-uCJdZkTU.png",import.meta.url).href,p=i.forwardRef((t,r)=>e.jsx(s,{ref:r,...t})),c=i.forwardRef((t,r)=>e.jsx("img",{src:o,alt:"Apify White Logo",...t}));export{p as ApifyIcon,c as ApifyWhiteIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as l,r as s}from"./index-
|
|
1
|
+
import{j as l,r as s}from"./index-pBO0SZLD.js";const t=c=>l.jsxs("svg",{xmlns:"http://www.w3.org/2000/svg",fill:"none",viewBox:"0 0 100 100",...c,children:[l.jsx("path",{fill:"#fff",d:"M6.017 4.313 61.35.226c6.797-.583 8.543-.19 12.817 2.917L91.83 15.586c2.913 2.14 3.883 2.723 3.883 5.053v68.243c0 4.277-1.553 6.807-6.99 7.193l-64.256 3.892c-4.08.193-6.023-.39-8.16-3.113L3.3 79.94C.967 76.827 0 74.497 0 71.773v-60.66c0-3.497 1.553-6.413 6.017-6.8z"}),l.jsx("path",{fill:"#000",fillRule:"evenodd",d:"M61.35.227 6.017 4.314C1.553 4.7 0 7.617 0 11.113v60.66c0 2.723.967 5.053 3.3 8.167l13.007 16.913c2.137 2.723 4.08 3.307 8.16 3.113l64.257-3.89c5.433-.387 6.99-2.917 6.99-7.193V20.64c0-2.21-.873-2.847-3.443-4.733L74.167 3.143C69.894.036 68.147-.357 61.35.226zM25.92 19.523c-5.247.353-6.437.433-9.417-1.99l-7.576-6.026c-.77-.78-.383-1.753 1.557-1.947l53.193-3.887c4.467-.39 6.793 1.167 8.54 2.527l9.123 6.61c.39.197 1.36 1.36.193 1.36L26.6 19.477l-.68.047zM19.803 88.3V30.367c0-2.53.777-3.697 3.103-3.893L86 22.78c2.14-.193 3.107 1.167 3.107 3.693V84.02c0 2.53-.39 4.67-3.883 4.863l-60.377 3.5c-3.493.193-5.043-.97-5.043-4.083zm59.6-54.827c.387 1.75 0 3.5-1.75 3.7l-2.91.577v42.773c-2.527 1.36-4.853 2.137-6.797 2.137-3.107 0-3.883-.973-6.21-3.887l-19.03-29.94V77.8l6.02 1.363s0 3.5-4.857 3.5l-13.39.777c-.39-.78 0-2.723 1.357-3.11l3.497-.97v-38.3l-4.853-.393c-.39-1.75.58-4.277 3.3-4.473l14.367-.967 19.8 30.327v-26.83l-5.047-.58c-.39-2.143 1.163-3.7 3.103-3.89l13.4-.78z",clipRule:"evenodd"})]}),n=s.forwardRef((c,o)=>l.jsx(t,{ref:o,...c}));export{n as NotionIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as t,c as e,r as l}from"./index-
|
|
1
|
+
import{j as t,c as e,r as l}from"./index-pBO0SZLD.js";const x=({className:i,...h})=>t.jsxs("svg",{width:"300",className:e("dark:invert",i),height:"239",viewBox:"0 0 300 239",fill:"none",xmlns:"http://www.w3.org/2000/svg",...h,children:[t.jsx("path",{d:"M275.757 193.713L300 234.575H275.757H251.515L275.757 193.713Z",fill:"#CDCDCD"}),t.jsx("path",{d:"M39.7102 193.713L63.9528 234.575H15.4676L39.7102 193.713Z",fill:"#CDCDCD"}),t.jsx("rect",{x:"39.7432",y:"193.713",width:"236.049",height:"40.8621",fill:"#CDCDCD"}),t.jsx("rect",{x:"58.9604",y:"97.006",width:"37.4384",height:"89.8965",fill:"#CDCDCD"}),t.jsx("rect",{x:"112.872",y:"97.006",width:"37.4384",height:"89.8965",fill:"#CDCDCD"}),t.jsx("rect",{x:"166.783",y:"97.006",width:"37.4384",height:"89.8965",fill:"#CDCDCD"}),t.jsx("rect",{x:"220.695",y:"97.006",width:"37.4384",height:"89.8965",fill:"#CDCDCD"}),t.jsx("rect",{x:"34.5449",y:"62.4897",width:"245.628",height:"24.7484",fill:"#CDCDCD"}),t.jsx("rect",{x:"34.5449",y:"62.6381",width:"137.972",height:"27.8419",transform:"rotate(-27 34.5449 62.6381)",fill:"#CDCDCD"}),t.jsx("rect",{x:"157.315",width:"137.972",height:"27.8419",transform:"rotate(27 157.315 0)",fill:"#CDCDCD"}),t.jsx("path",{d:"M260.29 197.425L284.532 238.287H260.29H236.047L260.29 197.425Z",fill:"#242424"}),t.jsx("path",{d:"M24.2426 197.425L48.4852 238.287H4.61771e-05L24.2426 197.425Z",fill:"#242424"}),t.jsx("rect",{x:"24.2749",y:"197.425",width:"236.049",height:"40.8621",fill:"#242424"}),t.jsx("rect",{x:"43.4932",y:"100.718",width:"37.4384",height:"89.8965",fill:"#242424"}),t.jsx("rect",{x:"97.4047",y:"100.718",width:"37.4384",height:"89.8965",fill:"#242424"}),t.jsx("rect",{x:"151.316",y:"100.718",width:"37.4384",height:"89.8965",fill:"#242424"}),t.jsx("rect",{x:"205.227",y:"100.718",width:"37.4384",height:"89.8965",fill:"#242424"}),t.jsx("rect",{x:"19.0771",y:"66.2019",width:"245.628",height:"24.7484",fill:"#242424"}),t.jsx("rect",{x:"19.0771",y:"66.3504",width:"137.972",height:"27.8419",transform:"rotate(-27 19.0771 66.3504)",fill:"#242424"}),t.jsx("rect",{x:"141.847",y:"3.71234",width:"137.972",height:"27.8419",transform:"rotate(27 141.847 3.71234)",fill:"#242424"})]}),s=l.forwardRef((i,h)=>t.jsx(x,{ref:h,...i}));export{s as AthenaIcon};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{j as c,r as o}from"./index-
|
|
1
|
+
import{j as c,r as o}from"./index-pBO0SZLD.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 r,r as e}from"./index-
|
|
1
|
+
import{j as r,r as e}from"./index-pBO0SZLD.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:"M3.75 15H5.25H6.75",fill:"currentColor"}),r.jsx("path",{d:"M5.25 9.75V15V9.75Z",fill:"currentColor"}),r.jsx("path",{d:"M8.25 11.25V9.75H5.25H2.25V11.25",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.061M3.75 15H5.25M6.75 15H5.25M5.25 9.75V15M5.25 9.75H8.25V11.25M5.25 9.75H2.25V11.25",stroke:"currentColor","stroke-width":"1.5","stroke-linecap":"round","stroke-linejoin":"round"})]}),n=e.forwardRef((o,t)=>r.jsx(s,{ref:t,...o}));export{n as SearchLexicalIcon};
|