open-swarm 0.1.1745275181__py3-none-any.whl → 0.1.1748636295__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.
- open_swarm-0.1.1748636295.dist-info/METADATA +257 -0
- open_swarm-0.1.1748636295.dist-info/RECORD +89 -0
- {open_swarm-0.1.1745275181.dist-info → open_swarm-0.1.1748636295.dist-info}/WHEEL +2 -1
- open_swarm-0.1.1748636295.dist-info/entry_points.txt +3 -0
- open_swarm-0.1.1748636295.dist-info/top_level.txt +1 -0
- swarm/__init__.py +2 -0
- swarm/agent/agent.py +49 -0
- swarm/auth.py +48 -113
- swarm/consumers.py +0 -19
- swarm/core.py +411 -0
- swarm/extensions/blueprint/__init__.py +16 -30
- swarm/extensions/blueprint/agent_utils.py +45 -0
- swarm/extensions/blueprint/blueprint_base.py +562 -0
- swarm/extensions/blueprint/blueprint_discovery.py +112 -0
- swarm/extensions/blueprint/django_utils.py +79 -181
- swarm/extensions/blueprint/interactive_mode.py +72 -67
- swarm/extensions/blueprint/output_utils.py +82 -0
- swarm/{core → extensions/blueprint}/spinner.py +21 -30
- swarm/extensions/cli/cli_args.py +0 -6
- swarm/extensions/cli/commands/blueprint_management.py +9 -47
- swarm/extensions/cli/commands/config_management.py +6 -5
- swarm/extensions/cli/commands/edit_config.py +7 -16
- swarm/extensions/cli/commands/list_blueprints.py +1 -1
- swarm/extensions/cli/commands/validate_env.py +4 -11
- swarm/extensions/cli/commands/validate_envvars.py +6 -6
- swarm/extensions/cli/interactive_shell.py +2 -16
- swarm/extensions/config/config_loader.py +345 -107
- swarm/{core → extensions/config}/config_manager.py +38 -50
- swarm/{core → extensions/config}/server_config.py +0 -32
- swarm/extensions/launchers/build_launchers.py +14 -0
- swarm/{core → extensions/launchers}/build_swarm_wrapper.py +0 -0
- swarm/extensions/launchers/swarm_api.py +64 -8
- swarm/extensions/launchers/swarm_cli.py +300 -8
- swarm/extensions/mcp/__init__.py +1 -0
- swarm/extensions/mcp/cache_utils.py +32 -0
- swarm/extensions/mcp/mcp_client.py +233 -0
- swarm/extensions/mcp/mcp_tool_provider.py +135 -0
- swarm/extensions/mcp/mcp_utils.py +260 -0
- swarm/llm/chat_completion.py +166 -0
- swarm/serializers.py +5 -96
- swarm/settings.py +133 -85
- swarm/types.py +91 -0
- swarm/urls.py +74 -57
- swarm/utils/context_utils.py +4 -10
- swarm/utils/general_utils.py +0 -21
- swarm/utils/redact.py +36 -23
- swarm/views/api_views.py +39 -48
- swarm/views/chat_views.py +76 -236
- swarm/views/core_views.py +87 -80
- swarm/views/model_views.py +121 -64
- swarm/views/utils.py +439 -65
- swarm/views/web_views.py +2 -2
- open_swarm-0.1.1745275181.dist-info/METADATA +0 -874
- open_swarm-0.1.1745275181.dist-info/RECORD +0 -319
- open_swarm-0.1.1745275181.dist-info/entry_points.txt +0 -4
- swarm/blueprints/README.md +0 -68
- swarm/blueprints/blueprint_audit_status.json +0 -27
- swarm/blueprints/chatbot/README.md +0 -40
- swarm/blueprints/chatbot/blueprint_chatbot.py +0 -471
- swarm/blueprints/chatbot/metadata.json +0 -23
- swarm/blueprints/chatbot/templates/chatbot/chatbot.html +0 -33
- swarm/blueprints/chucks_angels/README.md +0 -11
- swarm/blueprints/chucks_angels/blueprint_chucks_angels.py +0 -7
- swarm/blueprints/chucks_angels/test_basic.py +0 -3
- swarm/blueprints/codey/CODEY.md +0 -15
- swarm/blueprints/codey/README.md +0 -115
- swarm/blueprints/codey/blueprint_codey.py +0 -1072
- swarm/blueprints/codey/codey_cli.py +0 -373
- swarm/blueprints/codey/instructions.md +0 -17
- swarm/blueprints/codey/metadata.json +0 -23
- swarm/blueprints/common/operation_box_utils.py +0 -83
- swarm/blueprints/digitalbutlers/README.md +0 -11
- swarm/blueprints/digitalbutlers/__init__.py +0 -1
- swarm/blueprints/digitalbutlers/blueprint_digitalbutlers.py +0 -7
- swarm/blueprints/digitalbutlers/test_basic.py +0 -3
- swarm/blueprints/divine_code/README.md +0 -3
- swarm/blueprints/divine_code/__init__.py +0 -10
- swarm/blueprints/divine_code/apps.py +0 -11
- swarm/blueprints/divine_code/blueprint_divine_code.py +0 -270
- swarm/blueprints/django_chat/apps.py +0 -6
- swarm/blueprints/django_chat/blueprint_django_chat.py +0 -268
- swarm/blueprints/django_chat/templates/django_chat/django_chat_webpage.html +0 -37
- swarm/blueprints/django_chat/urls.py +0 -8
- swarm/blueprints/django_chat/views.py +0 -32
- swarm/blueprints/echocraft/blueprint_echocraft.py +0 -384
- swarm/blueprints/flock/README.md +0 -11
- swarm/blueprints/flock/__init__.py +0 -8
- swarm/blueprints/flock/blueprint_flock.py +0 -7
- swarm/blueprints/flock/test_basic.py +0 -3
- swarm/blueprints/geese/README.md +0 -10
- swarm/blueprints/geese/__init__.py +0 -8
- swarm/blueprints/geese/blueprint_geese.py +0 -384
- swarm/blueprints/geese/geese_cli.py +0 -102
- swarm/blueprints/jeeves/README.md +0 -41
- swarm/blueprints/jeeves/blueprint_jeeves.py +0 -722
- swarm/blueprints/jeeves/jeeves_cli.py +0 -55
- swarm/blueprints/jeeves/metadata.json +0 -24
- swarm/blueprints/mcp_demo/blueprint_mcp_demo.py +0 -473
- swarm/blueprints/messenger/templates/messenger/messenger.html +0 -46
- swarm/blueprints/mission_improbable/blueprint_mission_improbable.py +0 -423
- swarm/blueprints/monkai_magic/blueprint_monkai_magic.py +0 -340
- swarm/blueprints/nebula_shellz/blueprint_nebula_shellz.py +0 -265
- swarm/blueprints/omniplex/blueprint_omniplex.py +0 -298
- swarm/blueprints/poets/blueprint_poets.py +0 -546
- swarm/blueprints/poets/poets_cli.py +0 -23
- swarm/blueprints/rue_code/README.md +0 -8
- swarm/blueprints/rue_code/blueprint_rue_code.py +0 -448
- swarm/blueprints/rue_code/rue_code_cli.py +0 -43
- swarm/blueprints/stewie/apps.py +0 -12
- swarm/blueprints/stewie/blueprint_family_ties.py +0 -349
- swarm/blueprints/stewie/models.py +0 -19
- swarm/blueprints/stewie/serializers.py +0 -10
- swarm/blueprints/stewie/settings.py +0 -17
- swarm/blueprints/stewie/urls.py +0 -11
- swarm/blueprints/stewie/views.py +0 -26
- swarm/blueprints/suggestion/blueprint_suggestion.py +0 -222
- swarm/blueprints/whinge_surf/README.md +0 -22
- swarm/blueprints/whinge_surf/__init__.py +0 -1
- swarm/blueprints/whinge_surf/blueprint_whinge_surf.py +0 -565
- swarm/blueprints/whinge_surf/whinge_surf_cli.py +0 -99
- swarm/blueprints/whiskeytango_foxtrot/__init__.py +0 -0
- swarm/blueprints/whiskeytango_foxtrot/apps.py +0 -11
- swarm/blueprints/whiskeytango_foxtrot/blueprint_whiskeytango_foxtrot.py +0 -339
- swarm/blueprints/zeus/__init__.py +0 -2
- swarm/blueprints/zeus/apps.py +0 -4
- swarm/blueprints/zeus/blueprint_zeus.py +0 -270
- swarm/blueprints/zeus/zeus_cli.py +0 -13
- swarm/cli/async_input.py +0 -65
- swarm/cli/async_input_demo.py +0 -32
- swarm/core/agent_utils.py +0 -21
- swarm/core/blueprint_base.py +0 -769
- swarm/core/blueprint_discovery.py +0 -125
- swarm/core/blueprint_runner.py +0 -59
- swarm/core/blueprint_ux.py +0 -109
- swarm/core/build_launchers.py +0 -15
- swarm/core/cli/__init__.py +0 -1
- swarm/core/cli/commands/__init__.py +0 -1
- swarm/core/cli/commands/blueprint_management.py +0 -7
- swarm/core/cli/interactive_shell.py +0 -14
- swarm/core/cli/main.py +0 -50
- swarm/core/cli/utils/__init__.py +0 -1
- swarm/core/cli/utils/discover_commands.py +0 -18
- swarm/core/config_loader.py +0 -122
- swarm/core/output_utils.py +0 -193
- swarm/core/session_logger.py +0 -42
- swarm/core/slash_commands.py +0 -89
- swarm/core/swarm_api.py +0 -68
- swarm/core/swarm_cli.py +0 -216
- swarm/core/utils/__init__.py +0 -0
- swarm/extensions/blueprint/cli_handler.py +0 -197
- swarm/extensions/blueprint/runnable_blueprint.py +0 -42
- swarm/extensions/cli/utils/__init__.py +0 -1
- swarm/extensions/cli/utils/async_input.py +0 -46
- swarm/extensions/cli/utils/prompt_user.py +0 -3
- swarm/management/__init__.py +0 -0
- swarm/management/commands/__init__.py +0 -0
- swarm/management/commands/runserver.py +0 -58
- swarm/middleware.py +0 -65
- swarm/permissions.py +0 -38
- swarm/static/contrib/fonts/fontawesome-webfont.ttf +0 -7
- swarm/static/contrib/fonts/fontawesome-webfont.woff +0 -7
- swarm/static/contrib/fonts/fontawesome-webfont.woff2 +0 -7
- swarm/static/contrib/markedjs/marked.min.js +0 -6
- swarm/static/contrib/tabler-icons/adjustments-horizontal.svg +0 -27
- swarm/static/contrib/tabler-icons/alert-triangle.svg +0 -21
- swarm/static/contrib/tabler-icons/archive.svg +0 -21
- swarm/static/contrib/tabler-icons/artboard.svg +0 -27
- swarm/static/contrib/tabler-icons/automatic-gearbox.svg +0 -23
- swarm/static/contrib/tabler-icons/box-multiple.svg +0 -19
- swarm/static/contrib/tabler-icons/carambola.svg +0 -19
- swarm/static/contrib/tabler-icons/copy.svg +0 -20
- swarm/static/contrib/tabler-icons/download.svg +0 -21
- swarm/static/contrib/tabler-icons/edit.svg +0 -21
- swarm/static/contrib/tabler-icons/filled/carambola.svg +0 -13
- swarm/static/contrib/tabler-icons/filled/paint.svg +0 -13
- swarm/static/contrib/tabler-icons/headset.svg +0 -22
- swarm/static/contrib/tabler-icons/layout-sidebar-left-collapse.svg +0 -21
- swarm/static/contrib/tabler-icons/layout-sidebar-left-expand.svg +0 -21
- swarm/static/contrib/tabler-icons/layout-sidebar-right-collapse.svg +0 -21
- swarm/static/contrib/tabler-icons/layout-sidebar-right-expand.svg +0 -21
- swarm/static/contrib/tabler-icons/message-chatbot.svg +0 -22
- swarm/static/contrib/tabler-icons/message-star.svg +0 -22
- swarm/static/contrib/tabler-icons/message-x.svg +0 -23
- swarm/static/contrib/tabler-icons/message.svg +0 -21
- swarm/static/contrib/tabler-icons/paperclip.svg +0 -18
- swarm/static/contrib/tabler-icons/playlist-add.svg +0 -22
- swarm/static/contrib/tabler-icons/robot.svg +0 -26
- swarm/static/contrib/tabler-icons/search.svg +0 -19
- swarm/static/contrib/tabler-icons/settings.svg +0 -20
- swarm/static/contrib/tabler-icons/thumb-down.svg +0 -19
- swarm/static/contrib/tabler-icons/thumb-up.svg +0 -19
- swarm/static/css/dropdown.css +0 -22
- swarm/static/htmx/htmx.min.js +0 -0
- swarm/static/js/dropdown.js +0 -23
- swarm/static/rest_mode/css/base.css +0 -470
- swarm/static/rest_mode/css/chat-history.css +0 -286
- swarm/static/rest_mode/css/chat.css +0 -251
- swarm/static/rest_mode/css/chatbot.css +0 -74
- swarm/static/rest_mode/css/chatgpt.css +0 -62
- swarm/static/rest_mode/css/colors/corporate.css +0 -74
- swarm/static/rest_mode/css/colors/pastel.css +0 -81
- swarm/static/rest_mode/css/colors/tropical.css +0 -82
- swarm/static/rest_mode/css/general.css +0 -142
- swarm/static/rest_mode/css/layout.css +0 -167
- swarm/static/rest_mode/css/layouts/messenger-layout.css +0 -17
- swarm/static/rest_mode/css/layouts/minimalist-layout.css +0 -57
- swarm/static/rest_mode/css/layouts/mobile-layout.css +0 -8
- swarm/static/rest_mode/css/messages.css +0 -84
- swarm/static/rest_mode/css/messenger.css +0 -135
- swarm/static/rest_mode/css/settings.css +0 -91
- swarm/static/rest_mode/css/simple.css +0 -44
- swarm/static/rest_mode/css/slack.css +0 -58
- swarm/static/rest_mode/css/style.css +0 -156
- swarm/static/rest_mode/css/theme.css +0 -30
- swarm/static/rest_mode/css/toast.css +0 -40
- swarm/static/rest_mode/js/auth.js +0 -9
- swarm/static/rest_mode/js/blueprint.js +0 -41
- swarm/static/rest_mode/js/blueprintUtils.js +0 -12
- swarm/static/rest_mode/js/chatLogic.js +0 -79
- swarm/static/rest_mode/js/debug.js +0 -63
- swarm/static/rest_mode/js/events.js +0 -98
- swarm/static/rest_mode/js/main.js +0 -19
- swarm/static/rest_mode/js/messages.js +0 -264
- swarm/static/rest_mode/js/messengerLogic.js +0 -355
- swarm/static/rest_mode/js/modules/apiService.js +0 -84
- swarm/static/rest_mode/js/modules/blueprintManager.js +0 -162
- swarm/static/rest_mode/js/modules/chatHistory.js +0 -110
- swarm/static/rest_mode/js/modules/debugLogger.js +0 -14
- swarm/static/rest_mode/js/modules/eventHandlers.js +0 -107
- swarm/static/rest_mode/js/modules/messageProcessor.js +0 -120
- swarm/static/rest_mode/js/modules/state.js +0 -7
- swarm/static/rest_mode/js/modules/userInteractions.js +0 -29
- swarm/static/rest_mode/js/modules/validation.js +0 -23
- swarm/static/rest_mode/js/rendering.js +0 -119
- swarm/static/rest_mode/js/settings.js +0 -130
- swarm/static/rest_mode/js/sidebar.js +0 -94
- swarm/static/rest_mode/js/simpleLogic.js +0 -37
- swarm/static/rest_mode/js/slackLogic.js +0 -66
- swarm/static/rest_mode/js/splash.js +0 -76
- swarm/static/rest_mode/js/theme.js +0 -111
- swarm/static/rest_mode/js/toast.js +0 -36
- swarm/static/rest_mode/js/ui.js +0 -265
- swarm/static/rest_mode/js/validation.js +0 -57
- swarm/static/rest_mode/svg/animated_spinner.svg +0 -12
- swarm/static/rest_mode/svg/arrow_down.svg +0 -5
- swarm/static/rest_mode/svg/arrow_left.svg +0 -5
- swarm/static/rest_mode/svg/arrow_right.svg +0 -5
- swarm/static/rest_mode/svg/arrow_up.svg +0 -5
- swarm/static/rest_mode/svg/attach.svg +0 -8
- swarm/static/rest_mode/svg/avatar.svg +0 -7
- swarm/static/rest_mode/svg/canvas.svg +0 -6
- swarm/static/rest_mode/svg/chat_history.svg +0 -4
- swarm/static/rest_mode/svg/close.svg +0 -5
- swarm/static/rest_mode/svg/copy.svg +0 -4
- swarm/static/rest_mode/svg/dark_mode.svg +0 -3
- swarm/static/rest_mode/svg/edit.svg +0 -5
- swarm/static/rest_mode/svg/layout.svg +0 -9
- swarm/static/rest_mode/svg/logo.svg +0 -29
- swarm/static/rest_mode/svg/logout.svg +0 -5
- swarm/static/rest_mode/svg/mobile.svg +0 -5
- swarm/static/rest_mode/svg/new_chat.svg +0 -4
- swarm/static/rest_mode/svg/not_visible.svg +0 -5
- swarm/static/rest_mode/svg/plus.svg +0 -7
- swarm/static/rest_mode/svg/run_code.svg +0 -6
- swarm/static/rest_mode/svg/save.svg +0 -4
- swarm/static/rest_mode/svg/search.svg +0 -6
- swarm/static/rest_mode/svg/settings.svg +0 -4
- swarm/static/rest_mode/svg/speaker.svg +0 -5
- swarm/static/rest_mode/svg/stop.svg +0 -6
- swarm/static/rest_mode/svg/thumbs_down.svg +0 -3
- swarm/static/rest_mode/svg/thumbs_up.svg +0 -3
- swarm/static/rest_mode/svg/toggle_off.svg +0 -6
- swarm/static/rest_mode/svg/toggle_on.svg +0 -6
- swarm/static/rest_mode/svg/trash.svg +0 -10
- swarm/static/rest_mode/svg/undo.svg +0 -3
- swarm/static/rest_mode/svg/visible.svg +0 -8
- swarm/static/rest_mode/svg/voice.svg +0 -10
- swarm/templates/account/login.html +0 -22
- swarm/templates/account/signup.html +0 -32
- swarm/templates/base.html +0 -30
- swarm/templates/chat.html +0 -43
- swarm/templates/index.html +0 -35
- swarm/templates/rest_mode/components/chat_sidebar.html +0 -55
- swarm/templates/rest_mode/components/header.html +0 -45
- swarm/templates/rest_mode/components/main_chat_pane.html +0 -41
- swarm/templates/rest_mode/components/settings_dialog.html +0 -97
- swarm/templates/rest_mode/components/splash_screen.html +0 -7
- swarm/templates/rest_mode/components/top_bar.html +0 -28
- swarm/templates/rest_mode/message_ui.html +0 -50
- swarm/templates/rest_mode/slackbot.html +0 -30
- swarm/templates/simple_blueprint_page.html +0 -24
- swarm/templates/websocket_partials/final_system_message.html +0 -3
- swarm/templates/websocket_partials/system_message.html +0 -4
- swarm/templates/websocket_partials/user_message.html +0 -5
- swarm/utils/ansi_box.py +0 -34
- swarm/utils/disable_tracing.py +0 -38
- swarm/utils/log_utils.py +0 -63
- swarm/utils/openai_patch.py +0 -33
- swarm/ux/ansi_box.py +0 -43
- swarm/ux/spinner.py +0 -53
- {open_swarm-0.1.1745275181.dist-info → open_swarm-0.1.1748636295.dist-info}/licenses/LICENSE +0 -0
- /swarm/{core → extensions/blueprint}/blueprint_utils.py +0 -0
- /swarm/{core → extensions/blueprint}/common_utils.py +0 -0
- /swarm/{core → extensions/config}/setup_wizard.py +0 -0
- /swarm/{blueprints/rue_code → extensions/config/utils}/__init__.py +0 -0
- /swarm/{core → extensions/config}/utils/logger.py +0 -0
- /swarm/{core → extensions/launchers}/swarm_wrapper.py +0 -0
@@ -1,21 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
category: Document
|
3
|
-
tags: [box, index, records, old, collect]
|
4
|
-
version: "1.0"
|
5
|
-
unicode: "ea0b"
|
6
|
-
-->
|
7
|
-
<svg
|
8
|
-
xmlns="http://www.w3.org/2000/svg"
|
9
|
-
width="24"
|
10
|
-
height="24"
|
11
|
-
viewBox="0 0 24 24"
|
12
|
-
fill="none"
|
13
|
-
stroke="currentColor"
|
14
|
-
stroke-width="2"
|
15
|
-
stroke-linecap="round"
|
16
|
-
stroke-linejoin="round"
|
17
|
-
>
|
18
|
-
<path d="M3 4m0 2a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v0a2 2 0 0 1 -2 2h-14a2 2 0 0 1 -2 -2z" />
|
19
|
-
<path d="M5 8v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2 -2v-10" />
|
20
|
-
<path d="M10 12l4 0" />
|
21
|
-
</svg>
|
@@ -1,27 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
category: Design
|
3
|
-
tags: [graphics, drawing, design, art, canvas]
|
4
|
-
version: "1.1"
|
5
|
-
unicode: "ea2a"
|
6
|
-
-->
|
7
|
-
<svg
|
8
|
-
xmlns="http://www.w3.org/2000/svg"
|
9
|
-
width="24"
|
10
|
-
height="24"
|
11
|
-
viewBox="0 0 24 24"
|
12
|
-
fill="none"
|
13
|
-
stroke="currentColor"
|
14
|
-
stroke-width="2"
|
15
|
-
stroke-linecap="round"
|
16
|
-
stroke-linejoin="round"
|
17
|
-
>
|
18
|
-
<path d="M8 8m0 1a1 1 0 0 1 1 -1h6a1 1 0 0 1 1 1v6a1 1 0 0 1 -1 1h-6a1 1 0 0 1 -1 -1z" />
|
19
|
-
<path d="M3 8l1 0" />
|
20
|
-
<path d="M3 16l1 0" />
|
21
|
-
<path d="M8 3l0 1" />
|
22
|
-
<path d="M16 3l0 1" />
|
23
|
-
<path d="M20 8l1 0" />
|
24
|
-
<path d="M20 16l1 0" />
|
25
|
-
<path d="M8 20l0 1" />
|
26
|
-
<path d="M16 20l0 1" />
|
27
|
-
</svg>
|
@@ -1,23 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
tags: [transmission, gear, vehicle, automation, system, car, drive, mechanism, engage, control]
|
3
|
-
category: Vehicles
|
4
|
-
version: "2.35"
|
5
|
-
unicode: "fc89"
|
6
|
-
-->
|
7
|
-
<svg
|
8
|
-
xmlns="http://www.w3.org/2000/svg"
|
9
|
-
width="24"
|
10
|
-
height="24"
|
11
|
-
viewBox="0 0 24 24"
|
12
|
-
fill="none"
|
13
|
-
stroke="currentColor"
|
14
|
-
stroke-width="2"
|
15
|
-
stroke-linecap="round"
|
16
|
-
stroke-linejoin="round"
|
17
|
-
>
|
18
|
-
<path d="M17 17v4h1a2 2 0 1 0 0 -4h-1z" />
|
19
|
-
<path d="M17 11h1.5a1.5 1.5 0 0 0 0 -3h-1.5v5" />
|
20
|
-
<path d="M5 5m-2 0a2 2 0 1 0 4 0a2 2 0 1 0 -4 0" />
|
21
|
-
<path d="M5 7v3a1 1 0 0 0 1 1h3v7a1 1 0 0 0 1 1h3" />
|
22
|
-
<path d="M9 11h4" />
|
23
|
-
</svg>
|
@@ -1,19 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
tags: [css, cascading, style, sheet, background, section, website, layer]
|
3
|
-
version: "1.39"
|
4
|
-
unicode: "ee17"
|
5
|
-
-->
|
6
|
-
<svg
|
7
|
-
xmlns="http://www.w3.org/2000/svg"
|
8
|
-
width="24"
|
9
|
-
height="24"
|
10
|
-
viewBox="0 0 24 24"
|
11
|
-
fill="none"
|
12
|
-
stroke="currentColor"
|
13
|
-
stroke-width="2"
|
14
|
-
stroke-linecap="round"
|
15
|
-
stroke-linejoin="round"
|
16
|
-
>
|
17
|
-
<path d="M7 3m0 2a2 2 0 0 1 2 -2h10a2 2 0 0 1 2 2v10a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2z" />
|
18
|
-
<path d="M17 17v2a2 2 0 0 1 -2 2h-10a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h2" />
|
19
|
-
</svg>
|
@@ -1,19 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
category: Food
|
3
|
-
tags: [fruit, starfruit, carambola, tropical, exotic, five, five-pointed, star, healthy, vitamin, nutrition, diet]
|
4
|
-
unicode: "feb9"
|
5
|
-
version: "3.2"
|
6
|
-
-->
|
7
|
-
<svg
|
8
|
-
xmlns="http://www.w3.org/2000/svg"
|
9
|
-
width="24"
|
10
|
-
height="24"
|
11
|
-
viewBox="0 0 24 24"
|
12
|
-
fill="none"
|
13
|
-
stroke="currentColor"
|
14
|
-
stroke-width="2"
|
15
|
-
stroke-linecap="round"
|
16
|
-
stroke-linejoin="round"
|
17
|
-
>
|
18
|
-
<path d="M17.286 21.09q -1.69 .001 -5.288 -2.615q -3.596 2.617 -5.288 2.616q -2.726 0 -.495 -6.8q -9.389 -6.775 2.135 -6.775h.076q 1.785 -5.516 3.574 -5.516q 1.785 0 3.574 5.516h.076q 11.525 0 2.133 6.774q 2.23 6.802 -.497 6.8" />
|
19
|
-
</svg>
|
@@ -1,20 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
category: Text
|
3
|
-
tags: [clipboard, clone, duplicate]
|
4
|
-
version: "1.0"
|
5
|
-
unicode: "ea7a"
|
6
|
-
-->
|
7
|
-
<svg
|
8
|
-
xmlns="http://www.w3.org/2000/svg"
|
9
|
-
width="24"
|
10
|
-
height="24"
|
11
|
-
viewBox="0 0 24 24"
|
12
|
-
fill="none"
|
13
|
-
stroke="currentColor"
|
14
|
-
stroke-width="2"
|
15
|
-
stroke-linecap="round"
|
16
|
-
stroke-linejoin="round"
|
17
|
-
>
|
18
|
-
<path d="M7 7m0 2.667a2.667 2.667 0 0 1 2.667 -2.667h8.666a2.667 2.667 0 0 1 2.667 2.667v8.666a2.667 2.667 0 0 1 -2.667 2.667h-8.666a2.667 2.667 0 0 1 -2.667 -2.667z" />
|
19
|
-
<path d="M4.012 16.737a2.005 2.005 0 0 1 -1.012 -1.737v-10c0 -1.1 .9 -2 2 -2h10c.75 0 1.158 .385 1.5 1" />
|
20
|
-
</svg>
|
@@ -1,21 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
category: Arrows
|
3
|
-
tags: [save, arrow]
|
4
|
-
version: "1.0"
|
5
|
-
unicode: "ea96"
|
6
|
-
-->
|
7
|
-
<svg
|
8
|
-
xmlns="http://www.w3.org/2000/svg"
|
9
|
-
width="24"
|
10
|
-
height="24"
|
11
|
-
viewBox="0 0 24 24"
|
12
|
-
fill="none"
|
13
|
-
stroke="currentColor"
|
14
|
-
stroke-width="2"
|
15
|
-
stroke-linecap="round"
|
16
|
-
stroke-linejoin="round"
|
17
|
-
>
|
18
|
-
<path d="M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2 -2v-2" />
|
19
|
-
<path d="M7 11l5 5l5 -5" />
|
20
|
-
<path d="M12 4l0 12" />
|
21
|
-
</svg>
|
@@ -1,21 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
category: Design
|
3
|
-
tags: [pencil, change, update]
|
4
|
-
version: "1.0"
|
5
|
-
unicode: "ea98"
|
6
|
-
-->
|
7
|
-
<svg
|
8
|
-
xmlns="http://www.w3.org/2000/svg"
|
9
|
-
width="24"
|
10
|
-
height="24"
|
11
|
-
viewBox="0 0 24 24"
|
12
|
-
fill="none"
|
13
|
-
stroke="currentColor"
|
14
|
-
stroke-width="2"
|
15
|
-
stroke-linecap="round"
|
16
|
-
stroke-linejoin="round"
|
17
|
-
>
|
18
|
-
<path d="M7 7h-1a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-1" />
|
19
|
-
<path d="M20.385 6.585a2.1 2.1 0 0 0 -2.97 -2.97l-8.415 8.385v3h3l8.385 -8.415z" />
|
20
|
-
<path d="M16 5l3 3" />
|
21
|
-
</svg>
|
@@ -1,13 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
unicode: "10014"
|
3
|
-
version: "3.15"
|
4
|
-
-->
|
5
|
-
<svg
|
6
|
-
xmlns="http://www.w3.org/2000/svg"
|
7
|
-
width="24"
|
8
|
-
height="24"
|
9
|
-
viewBox="0 0 24 24"
|
10
|
-
fill="currentColor"
|
11
|
-
>
|
12
|
-
<path d="M17.108 22.085c-1.266 -.068 -2.924 -.859 -5.071 -2.355l-.04 -.027l-.037 .027c-2.147 1.497 -3.804 2.288 -5.072 2.356l-.178 .005c-2.747 0 -3.097 -2.64 -1.718 -7.244l.054 -.178l-.1 -.075c-6.056 -4.638 -5.046 -7.848 2.554 -8.066l.202 -.005l.115 -.326c1.184 -3.33 2.426 -5.085 4.027 -5.192l.156 -.005c1.674 0 2.957 1.76 4.182 5.197l.114 .326l.204 .005c7.6 .218 8.61 3.428 2.553 8.065l-.102 .075l.055 .178c1.35 4.512 1.04 7.137 -1.556 7.24l-.163 .003z" />
|
13
|
-
</svg>
|
@@ -1,13 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
version: "2.4"
|
3
|
-
unicode: "f75f"
|
4
|
-
-->
|
5
|
-
<svg
|
6
|
-
xmlns="http://www.w3.org/2000/svg"
|
7
|
-
width="24"
|
8
|
-
height="24"
|
9
|
-
viewBox="0 0 24 24"
|
10
|
-
fill="currentColor"
|
11
|
-
>
|
12
|
-
<path d="M17 2a3 3 0 0 1 2.995 2.824l.005 .176a3 3 0 0 1 3 3a6 6 0 0 1 -5.775 5.996l-.225 .004h-4l.15 .005a2 2 0 0 1 1.844 1.838l.006 .157v4a2 2 0 0 1 -1.85 1.995l-.15 .005h-2a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-4a2 2 0 0 1 1.85 -1.995l.15 -.005v-1a1 1 0 0 1 .883 -.993l.117 -.007h5a4 4 0 0 0 4 -4a1 1 0 0 0 -.883 -.993l-.117 -.007l-.005 .176a3 3 0 0 1 -2.819 2.819l-.176 .005h-10a3 3 0 0 1 -2.995 -2.824l-.005 -.176v-2a3 3 0 0 1 2.824 -2.995l.176 -.005h10z" />
|
13
|
-
</svg>
|
@@ -1,22 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
category: Media
|
3
|
-
tags: [music, headphones, audio, sound, customer]
|
4
|
-
version: "1.3"
|
5
|
-
unicode: "eb90"
|
6
|
-
-->
|
7
|
-
<svg
|
8
|
-
xmlns="http://www.w3.org/2000/svg"
|
9
|
-
width="24"
|
10
|
-
height="24"
|
11
|
-
viewBox="0 0 24 24"
|
12
|
-
fill="none"
|
13
|
-
stroke="currentColor"
|
14
|
-
stroke-width="2"
|
15
|
-
stroke-linecap="round"
|
16
|
-
stroke-linejoin="round"
|
17
|
-
>
|
18
|
-
<path d="M4 14v-3a8 8 0 1 1 16 0v3" />
|
19
|
-
<path d="M18 19c0 1.657 -2.686 3 -6 3" />
|
20
|
-
<path d="M4 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z" />
|
21
|
-
<path d="M15 14a2 2 0 0 1 2 -2h1a2 2 0 0 1 2 2v3a2 2 0 0 1 -2 2h-1a2 2 0 0 1 -2 -2v-3z" />
|
22
|
-
</svg>
|
@@ -1,21 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
tags: [grid, aside, column, columns, menu, navigation]
|
3
|
-
version: "1.53"
|
4
|
-
category: Design
|
5
|
-
unicode: "f004"
|
6
|
-
-->
|
7
|
-
<svg
|
8
|
-
xmlns="http://www.w3.org/2000/svg"
|
9
|
-
width="24"
|
10
|
-
height="24"
|
11
|
-
viewBox="0 0 24 24"
|
12
|
-
fill="none"
|
13
|
-
stroke="currentColor"
|
14
|
-
stroke-width="2"
|
15
|
-
stroke-linecap="round"
|
16
|
-
stroke-linejoin="round"
|
17
|
-
>
|
18
|
-
<path d="M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z" />
|
19
|
-
<path d="M9 4v16" />
|
20
|
-
<path d="M15 10l-2 2l2 2" />
|
21
|
-
</svg>
|
@@ -1,21 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
tags: [grid, aside, column, columns, menu, navigation]
|
3
|
-
version: "1.53"
|
4
|
-
category: Design
|
5
|
-
unicode: "f005"
|
6
|
-
-->
|
7
|
-
<svg
|
8
|
-
xmlns="http://www.w3.org/2000/svg"
|
9
|
-
width="24"
|
10
|
-
height="24"
|
11
|
-
viewBox="0 0 24 24"
|
12
|
-
fill="none"
|
13
|
-
stroke="currentColor"
|
14
|
-
stroke-width="2"
|
15
|
-
stroke-linecap="round"
|
16
|
-
stroke-linejoin="round"
|
17
|
-
>
|
18
|
-
<path d="M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z" />
|
19
|
-
<path d="M9 4v16" />
|
20
|
-
<path d="M14 10l2 2l-2 2" />
|
21
|
-
</svg>
|
@@ -1,21 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
tags: [grid, aside, column, columns, menu, navigation]
|
3
|
-
version: "1.53"
|
4
|
-
category: Design
|
5
|
-
unicode: "f006"
|
6
|
-
-->
|
7
|
-
<svg
|
8
|
-
xmlns="http://www.w3.org/2000/svg"
|
9
|
-
width="24"
|
10
|
-
height="24"
|
11
|
-
viewBox="0 0 24 24"
|
12
|
-
fill="none"
|
13
|
-
stroke="currentColor"
|
14
|
-
stroke-width="2"
|
15
|
-
stroke-linecap="round"
|
16
|
-
stroke-linejoin="round"
|
17
|
-
>
|
18
|
-
<path d="M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z" />
|
19
|
-
<path d="M15 4v16" />
|
20
|
-
<path d="M9 10l2 2l-2 2" />
|
21
|
-
</svg>
|
@@ -1,21 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
tags: [grid, aside, column, columns, menu, navigation]
|
3
|
-
version: "1.53"
|
4
|
-
category: Design
|
5
|
-
unicode: "f007"
|
6
|
-
-->
|
7
|
-
<svg
|
8
|
-
xmlns="http://www.w3.org/2000/svg"
|
9
|
-
width="24"
|
10
|
-
height="24"
|
11
|
-
viewBox="0 0 24 24"
|
12
|
-
fill="none"
|
13
|
-
stroke="currentColor"
|
14
|
-
stroke-width="2"
|
15
|
-
stroke-linecap="round"
|
16
|
-
stroke-linejoin="round"
|
17
|
-
>
|
18
|
-
<path d="M4 4m0 2a2 2 0 0 1 2 -2h12a2 2 0 0 1 2 2v12a2 2 0 0 1 -2 2h-12a2 2 0 0 1 -2 -2z" />
|
19
|
-
<path d="M15 4v16" />
|
20
|
-
<path d="M10 10l-2 2l2 2" />
|
21
|
-
</svg>
|
@@ -1,22 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
tags: [automatic, robot, assistant, support]
|
3
|
-
category: Communication
|
4
|
-
unicode: "f38a"
|
5
|
-
version: "1.91"
|
6
|
-
-->
|
7
|
-
<svg
|
8
|
-
xmlns="http://www.w3.org/2000/svg"
|
9
|
-
width="24"
|
10
|
-
height="24"
|
11
|
-
viewBox="0 0 24 24"
|
12
|
-
fill="none"
|
13
|
-
stroke="currentColor"
|
14
|
-
stroke-width="2"
|
15
|
-
stroke-linecap="round"
|
16
|
-
stroke-linejoin="round"
|
17
|
-
>
|
18
|
-
<path d="M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z" />
|
19
|
-
<path d="M9.5 9h.01" />
|
20
|
-
<path d="M14.5 9h.01" />
|
21
|
-
<path d="M9.5 13a3.5 3.5 0 0 0 5 0" />
|
22
|
-
</svg>
|
@@ -1,22 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
tags: [rate, highlight, bookmark, notable, exceptional, favorite, mark, distinguish, commend, applaud]
|
3
|
-
category: Communication
|
4
|
-
version: "2.10"
|
5
|
-
unicode: "f98d"
|
6
|
-
-->
|
7
|
-
<svg
|
8
|
-
xmlns="http://www.w3.org/2000/svg"
|
9
|
-
width="24"
|
10
|
-
height="24"
|
11
|
-
viewBox="0 0 24 24"
|
12
|
-
fill="none"
|
13
|
-
stroke="currentColor"
|
14
|
-
stroke-width="2"
|
15
|
-
stroke-linecap="round"
|
16
|
-
stroke-linejoin="round"
|
17
|
-
>
|
18
|
-
<path d="M8 9h8" />
|
19
|
-
<path d="M8 13h4.5" />
|
20
|
-
<path d="M10.325 19.605l-2.325 1.395v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v4.5" />
|
21
|
-
<path d="M17.8 20.817l-2.172 1.138a.392 .392 0 0 1 -.568 -.41l.415 -2.411l-1.757 -1.707a.389 .389 0 0 1 .217 -.665l2.428 -.352l1.086 -2.193a.392 .392 0 0 1 .702 0l1.086 2.193l2.428 .352a.39 .39 0 0 1 .217 .665l-1.757 1.707l.414 2.41a.39 .39 0 0 1 -.567 .411l-2.172 -1.138z" />
|
22
|
-
</svg>
|
@@ -1,23 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
tags: [remove, cancel, dismiss, close, terminate, delete, end, exit, annul, erase]
|
3
|
-
category: Communication
|
4
|
-
version: "2.10"
|
5
|
-
unicode: "f98f"
|
6
|
-
-->
|
7
|
-
<svg
|
8
|
-
xmlns="http://www.w3.org/2000/svg"
|
9
|
-
width="24"
|
10
|
-
height="24"
|
11
|
-
viewBox="0 0 24 24"
|
12
|
-
fill="none"
|
13
|
-
stroke="currentColor"
|
14
|
-
stroke-width="2"
|
15
|
-
stroke-linecap="round"
|
16
|
-
stroke-linejoin="round"
|
17
|
-
>
|
18
|
-
<path d="M8 9h8" />
|
19
|
-
<path d="M8 13h6" />
|
20
|
-
<path d="M13 18l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12a3 3 0 0 1 3 3v6" />
|
21
|
-
<path d="M22 22l-5 -5" />
|
22
|
-
<path d="M17 22l5 -5" />
|
23
|
-
</svg>
|
@@ -1,21 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
category: Communication
|
3
|
-
tags: [comment, chat, reply, communication, conversation, faq]
|
4
|
-
version: "1.0"
|
5
|
-
unicode: "eaef"
|
6
|
-
-->
|
7
|
-
<svg
|
8
|
-
xmlns="http://www.w3.org/2000/svg"
|
9
|
-
width="24"
|
10
|
-
height="24"
|
11
|
-
viewBox="0 0 24 24"
|
12
|
-
fill="none"
|
13
|
-
stroke="currentColor"
|
14
|
-
stroke-width="2"
|
15
|
-
stroke-linecap="round"
|
16
|
-
stroke-linejoin="round"
|
17
|
-
>
|
18
|
-
<path d="M8 9h8" />
|
19
|
-
<path d="M8 13h6" />
|
20
|
-
<path d="M18 4a3 3 0 0 1 3 3v8a3 3 0 0 1 -3 3h-5l-5 3v-3h-2a3 3 0 0 1 -3 -3v-8a3 3 0 0 1 3 -3h12z" />
|
21
|
-
</svg>
|
@@ -1,18 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
tags: [attachment, annex, hold]
|
3
|
-
version: "1.0"
|
4
|
-
unicode: "eb02"
|
5
|
-
-->
|
6
|
-
<svg
|
7
|
-
xmlns="http://www.w3.org/2000/svg"
|
8
|
-
width="24"
|
9
|
-
height="24"
|
10
|
-
viewBox="0 0 24 24"
|
11
|
-
fill="none"
|
12
|
-
stroke="currentColor"
|
13
|
-
stroke-width="2"
|
14
|
-
stroke-linecap="round"
|
15
|
-
stroke-linejoin="round"
|
16
|
-
>
|
17
|
-
<path d="M15 7l-6.5 6.5a1.5 1.5 0 0 0 3 3l6.5 -6.5a3 3 0 0 0 -6 -6l-6.5 6.5a4.5 4.5 0 0 0 9 9l6.5 -6.5" />
|
18
|
-
</svg>
|
@@ -1,22 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
tags: [music, spotify, new, create, library, album]
|
3
|
-
version: "1.53"
|
4
|
-
unicode: "f008"
|
5
|
-
-->
|
6
|
-
<svg
|
7
|
-
xmlns="http://www.w3.org/2000/svg"
|
8
|
-
width="24"
|
9
|
-
height="24"
|
10
|
-
viewBox="0 0 24 24"
|
11
|
-
fill="none"
|
12
|
-
stroke="currentColor"
|
13
|
-
stroke-width="2"
|
14
|
-
stroke-linecap="round"
|
15
|
-
stroke-linejoin="round"
|
16
|
-
>
|
17
|
-
<path d="M19 8h-14" />
|
18
|
-
<path d="M5 12h9" />
|
19
|
-
<path d="M11 16h-6" />
|
20
|
-
<path d="M15 16h6" />
|
21
|
-
<path d="M18 13v6" />
|
22
|
-
</svg>
|
@@ -1,26 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
tags: [technology, ai, machine, bot, android]
|
3
|
-
version: "1.53"
|
4
|
-
unicode: "f00b"
|
5
|
-
-->
|
6
|
-
<svg
|
7
|
-
xmlns="http://www.w3.org/2000/svg"
|
8
|
-
width="24"
|
9
|
-
height="24"
|
10
|
-
viewBox="0 0 24 24"
|
11
|
-
fill="none"
|
12
|
-
stroke="currentColor"
|
13
|
-
stroke-width="2"
|
14
|
-
stroke-linecap="round"
|
15
|
-
stroke-linejoin="round"
|
16
|
-
>
|
17
|
-
<path d="M6 4m0 2a2 2 0 0 1 2 -2h8a2 2 0 0 1 2 2v4a2 2 0 0 1 -2 2h-8a2 2 0 0 1 -2 -2z" />
|
18
|
-
<path d="M12 2v2" />
|
19
|
-
<path d="M9 12v9" />
|
20
|
-
<path d="M15 12v9" />
|
21
|
-
<path d="M5 16l4 -2" />
|
22
|
-
<path d="M15 14l4 2" />
|
23
|
-
<path d="M9 18h6" />
|
24
|
-
<path d="M10 8v.01" />
|
25
|
-
<path d="M14 8v.01" />
|
26
|
-
</svg>
|
@@ -1,19 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
tags: [find, magnifier, magnifying glass]
|
3
|
-
version: "1.0"
|
4
|
-
unicode: "eb1c"
|
5
|
-
-->
|
6
|
-
<svg
|
7
|
-
xmlns="http://www.w3.org/2000/svg"
|
8
|
-
width="24"
|
9
|
-
height="24"
|
10
|
-
viewBox="0 0 24 24"
|
11
|
-
fill="none"
|
12
|
-
stroke="currentColor"
|
13
|
-
stroke-width="2"
|
14
|
-
stroke-linecap="round"
|
15
|
-
stroke-linejoin="round"
|
16
|
-
>
|
17
|
-
<path d="M10 10m-7 0a7 7 0 1 0 14 0a7 7 0 1 0 -14 0" />
|
18
|
-
<path d="M21 21l-6 -6" />
|
19
|
-
</svg>
|
@@ -1,20 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
category: System
|
3
|
-
tags: [cog, edit, gear, preferences, tools]
|
4
|
-
version: "1.0"
|
5
|
-
unicode: "eb20"
|
6
|
-
-->
|
7
|
-
<svg
|
8
|
-
xmlns="http://www.w3.org/2000/svg"
|
9
|
-
width="24"
|
10
|
-
height="24"
|
11
|
-
viewBox="0 0 24 24"
|
12
|
-
fill="none"
|
13
|
-
stroke="currentColor"
|
14
|
-
stroke-width="2"
|
15
|
-
stroke-linecap="round"
|
16
|
-
stroke-linejoin="round"
|
17
|
-
>
|
18
|
-
<path d="M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z" />
|
19
|
-
<path d="M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0" />
|
20
|
-
</svg>
|
@@ -1,19 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
category: System
|
3
|
-
tags: [dislike, bad, emotion]
|
4
|
-
version: "1.0"
|
5
|
-
unicode: "eb3b"
|
6
|
-
-->
|
7
|
-
<svg
|
8
|
-
xmlns="http://www.w3.org/2000/svg"
|
9
|
-
width="24"
|
10
|
-
height="24"
|
11
|
-
viewBox="0 0 24 24"
|
12
|
-
fill="none"
|
13
|
-
stroke="currentColor"
|
14
|
-
stroke-width="2"
|
15
|
-
stroke-linecap="round"
|
16
|
-
stroke-linejoin="round"
|
17
|
-
>
|
18
|
-
<path d="M7 13v-8a1 1 0 0 0 -1 -1h-2a1 1 0 0 0 -1 1v7a1 1 0 0 0 1 1h3a4 4 0 0 1 4 4v1a2 2 0 0 0 4 0v-5h3a2 2 0 0 0 2 -2l-1 -5a2 3 0 0 0 -2 -2h-7a3 3 0 0 0 -3 3" />
|
19
|
-
</svg>
|
@@ -1,19 +0,0 @@
|
|
1
|
-
<!--
|
2
|
-
category: System
|
3
|
-
tags: [like, emotion, good, love]
|
4
|
-
version: "1.0"
|
5
|
-
unicode: "eb3c"
|
6
|
-
-->
|
7
|
-
<svg
|
8
|
-
xmlns="http://www.w3.org/2000/svg"
|
9
|
-
width="24"
|
10
|
-
height="24"
|
11
|
-
viewBox="0 0 24 24"
|
12
|
-
fill="none"
|
13
|
-
stroke="currentColor"
|
14
|
-
stroke-width="2"
|
15
|
-
stroke-linecap="round"
|
16
|
-
stroke-linejoin="round"
|
17
|
-
>
|
18
|
-
<path d="M7 11v8a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1v-7a1 1 0 0 1 1 -1h3a4 4 0 0 0 4 -4v-1a2 2 0 0 1 4 0v5h3a2 2 0 0 1 2 2l-1 5a2 3 0 0 1 -2 2h-7a3 3 0 0 1 -3 -3" />
|
19
|
-
</svg>
|
swarm/static/css/dropdown.css
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
/* Dropdown Styling */
|
2
|
-
.dropdown {
|
3
|
-
width: 100%;
|
4
|
-
background: #fff;
|
5
|
-
border: 1px solid #ccc;
|
6
|
-
border-radius: 0.25rem;
|
7
|
-
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
8
|
-
}
|
9
|
-
|
10
|
-
.dropdown-item {
|
11
|
-
padding: 0.5rem 1rem;
|
12
|
-
cursor: pointer;
|
13
|
-
}
|
14
|
-
|
15
|
-
.dropdown-item:hover {
|
16
|
-
background: #f0f0f0;
|
17
|
-
}
|
18
|
-
|
19
|
-
.dropdown-description {
|
20
|
-
font-size: 0.8rem;
|
21
|
-
color: #666;
|
22
|
-
}
|
swarm/static/htmx/htmx.min.js
DELETED
File without changes
|
swarm/static/js/dropdown.js
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
document.addEventListener("DOMContentLoaded", () => {
|
2
|
-
// Add event listener for HTMX after swap events to handle dropdown updates
|
3
|
-
document.addEventListener("htmx:afterSwap", (event) => {
|
4
|
-
const targetId = event.target.id;
|
5
|
-
|
6
|
-
// Check if the swap target is the blueprint dropdown
|
7
|
-
if (targetId === "blueprintDropdown") {
|
8
|
-
// Attach click listeners to dynamically created dropdown items
|
9
|
-
event.target.querySelectorAll(".dropdown-item").forEach((item) => {
|
10
|
-
item.addEventListener("click", () => {
|
11
|
-
// Retrieve blueprint name and conversation ID
|
12
|
-
const blueprintName = item.getAttribute("data-blueprint-name");
|
13
|
-
const conversationId = "new"; // Use 'new' or dynamically assign a conversation ID
|
14
|
-
|
15
|
-
// Redirect to the chat view for the selected blueprint
|
16
|
-
if (blueprintName) {
|
17
|
-
window.location.href = `/django_chat/${blueprintName}/${conversationId}/`;
|
18
|
-
}
|
19
|
-
});
|
20
|
-
});
|
21
|
-
}
|
22
|
-
});
|
23
|
-
});
|