open-swarm 0.1.1748636259__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.
@@ -0,0 +1,257 @@
1
+ Metadata-Version: 2.4
2
+ Name: open-swarm
3
+ Version: 0.1.1748636295
4
+ Summary: A tool for orchestrating Swarm using both CLI and API.
5
+ Author-email: Matthew Hand <matthewhandau@gmail.com>
6
+ Requires-Python: >=3.10
7
+ Description-Content-Type: text/markdown
8
+ License-File: LICENSE
9
+ Requires-Dist: aiofiles>=24.1.0
10
+ Requires-Dist: aiohttp>=3.11.11
11
+ Requires-Dist: asyncio>=3.4.3
12
+ Requires-Dist: asynctest>=0.13.0
13
+ Requires-Dist: channels>=4.2.0
14
+ Requires-Dist: colorama>=0.4.6
15
+ Requires-Dist: django<5.0,>=4.2
16
+ Requires-Dist: django-allauth>=65.3.1
17
+ Requires-Dist: django-template-debug>=0.3.5
18
+ Requires-Dist: djangorestframework>=3.15.2
19
+ Requires-Dist: flask>=3.1.0
20
+ Requires-Dist: jmespath>=1.0.1
21
+ Requires-Dist: jsonschema-pydantic>=0.6
22
+ Requires-Dist: mcp>=1.2.0
23
+ Requires-Dist: openai>=1.58.1
24
+ Requires-Dist: python-dotenv>=1.0.1
25
+ Requires-Dist: redis>=5.2.1
26
+ Requires-Dist: requests>=2.32.3
27
+ Requires-Dist: whitenoise>=6.8.2
28
+ Requires-Dist: drf-spectacular>=0.23.0
29
+ Requires-Dist: pyinstaller>=6.12.0
30
+ Requires-Dist: tiktoken>=0.9.0
31
+ Requires-Dist: django-cors-headers>=4.7.0
32
+ Provides-Extra: dev
33
+ Requires-Dist: pytest>=8.3.4; extra == "dev"
34
+ Requires-Dist: pytest-asyncio>=0.25.1; extra == "dev"
35
+ Requires-Dist: pytest-cov>=6.0.0; extra == "dev"
36
+ Requires-Dist: pytest-django>=4.9.0; extra == "dev"
37
+ Requires-Dist: pytest-mock>=3.14.0; extra == "dev"
38
+ Requires-Dist: python-semantic-release>=9.20.0; extra == "dev"
39
+ Provides-Extra: experimental
40
+ Requires-Dist: nemoguardrails>=0.11.0; extra == "experimental"
41
+ Dynamic: license-file
42
+
43
+ # Open Swarm
44
+
45
+ <div align="center">
46
+ <img src="assets/images/openswarm-project-image.jpg" alt="Project Logo" width="70%"/>
47
+ </div>
48
+
49
+ **Open Swarm** is a versatile, modular framework for building intelligent, multi-agent systems. It's a **fork and actively maintained extension** of the [OpenAI Swarm](https://github.com/openai/swarm) framework. It includes modifications to support stateless RESTful operations and a plugin system for custom extensions that enhance agentic workflows.
50
+
51
+ ---
52
+
53
+ https://github.com/user-attachments/assets/1335f7fb-ff61-4e96-881c-7d3154eb9f14
54
+
55
+ (generated by www.gitpodcast.com)
56
+
57
+ ---
58
+
59
+ ## Table of Contents
60
+ - [Key Features](#key-features)
61
+ - [Quickstart](#quickstart)
62
+ - [Blueprints](#blueprints)
63
+ - [Further Documentation](#further-documentation)
64
+ - [License](#license)
65
+ - [Acknowledgements](#acknowledgements)
66
+
67
+ ---
68
+
69
+ ## Key Features
70
+
71
+ 1. **Multi-Agent Orchestration**
72
+ - Define multiple agents, each with unique instructions and roles.
73
+ - Agents coordinate tasks, share context, or hand off queries between one another.
74
+
75
+ 2. **Blueprint-Driven Architecture**
76
+ - Each **Blueprint** encapsulates logic, tool connections, and environment/config settings.
77
+ - Encourages reusable, modular patterns for different use cases.
78
+
79
+ 3. **Optional MCP Integration**
80
+ - Integrate with external tools (e.g., databases, web search, filesystems) through **MCP servers**.
81
+ - Note `npx` MCP servers work great but `uvx` MCP servers currently have issues.
82
+
83
+ 4. **CLI & REST Interface**
84
+ - Run from the command line or expose a Django-powered REST API for broader integration.
85
+ - Interactive web pages per blueprint at `/<blueprint_name>/`.
86
+
87
+ 5. **OpenAI API Compatibility**
88
+ - Exposes an endpoint at `/v1/chat/completions` that is functionally similar to the OpenAI Chat Completions API.
89
+ - Includes a **mandatory** `sender` field in agent responses.
90
+ - This field identifies which Swarm agent provided the response and must be preserved in the conversation history for proper handoffs between agents.
91
+ - While the framework is compatible with OpenAI-like API clients, it assumes the client application maintains the `sender` field and, ideally, displays it in the user interface.
92
+ - **Note:** Most OpenAI API-compatible applications will ignore the `sender` field by default and not display the agent name. Custom UI or logic is required to utilise and present this information.
93
+
94
+ 6. **Configurable LLMs**
95
+ - Supports multiple OpenAI-compatible providers in a single environment (e.g., `openai`, `grok`, `ollama`).
96
+ - Allows specifying different models/providers for different agents—even within the same blueprint.
97
+ - Use environment variable `DEFAULT_LLM` to specify default LLM model used by blueprints, e.g., `DEFAULT_LLM=deepseek-r1-distill-llama-70b`
98
+
99
+ ---
100
+
101
+ ## Quickstart
102
+
103
+ Follow these simple steps to get Open Swarm up and running:
104
+
105
+ 1. **Install the Package**
106
+ Run:
107
+ ```bash
108
+ pip install open-swarm
109
+ ```
110
+
111
+ 2. **Configure an LLM Provider**
112
+ When you run a blueprint for the first time, Open Swarm checks for a configuration file at `~/.swarm/swarm_config.json`. If the file is missing, it will automatically create a default configuration as shown below:
113
+ ```json
114
+ {
115
+ "llm": {
116
+ "default": {
117
+ "provider": "openai",
118
+ "model": "gpt-4o",
119
+ "base_url": "https://api.openai.com/v1",
120
+ "api_key": "${OPENAI_API_KEY}"
121
+ }
122
+ },
123
+ "mcpServers": {}
124
+ }
125
+ ```
126
+ Make sure to set the `OPENAI_API_KEY` environment variable with your valid OpenAI API key.
127
+
128
+ An example of using an alternative provider:
129
+
130
+ `swarm-cli config add --section llm --name deepseek-r1-distill-llama-70b --json '{"provider": "openai", "model": "deepseek-r1-distill-llama-70b", "base_url": "https://api.groq.com/openai/v1", "api_key": "${GROQ_API_KEY}"}' `
131
+
132
+
133
+ 3. **(Optional) Configure a Simple MCP Server**
134
+ To add an MCP server for additional utilities (e.g., file fetching), use the `swarm-cli config add --json '<multiline_json_block>'`. For example:
135
+
136
+ ```json
137
+ "filesystem": {
138
+ "command": "npx",
139
+ "args": [
140
+ "-y",
141
+ "@modelcontextprotocol/server-filesystem ${ALLOWED_PATH}"
142
+ ],
143
+ "env": {
144
+ "ALLOWED_PATH": "${ALLOWED_PATH}"
145
+ }
146
+ }
147
+ ```
148
+
149
+ 4. **Add an Example Blueprint**
150
+ Add an example blueprint by running:
151
+ ```bash
152
+ swarm-cli add /path/to/your/blueprint.py --name example
153
+ ```
154
+ This copies your blueprint into the managed blueprints directory.
155
+
156
+ Example blueprints are provided here: https://github.com/matthewhand/open-swarm/tree/main/blueprints
157
+
158
+ 5. **Run the Blueprint from CLI**
159
+ Execute the blueprint with:
160
+ ```bash
161
+ swarm-cli run example
162
+ ```
163
+
164
+ ---
165
+
166
+ ## Overview
167
+
168
+ Open Swarm provides the following core components:
169
+
170
+ - **Swarm CLI:**
171
+ A command-line tool for managing blueprints and configuration settings. It allows you to add, list, delete, run, and install blueprints, as well as update configuration entries for LLM providers and MCP servers.
172
+
173
+ - **Swarm API:**
174
+ An HTTP REST service that exposes endpoints such as `/v1/models` and `/v1/chat/completion(s)`. These endpoints let external applications interact with Open Swarm in an OpenAI API-compatible manner, publishing blueprints as models and processing chat completions. Additional endpoints can be exposed via blueprints.
175
+
176
+ - **Swarm SDK:**
177
+ Open Swarm can be used as a Python module. It is backwards compatible with the original OpenAI Swarm educational framework. It also adds many extensions including configuration loading, MCP server integration, Python Django DB and REST features, etc etc.
178
+
179
+ For detailed usage instructions, please refer to the [USERGUIDE.md](./USERGUIDE.md). For developer-specific guidance, see [DEVELOPMENT.md](./DEVELOPMENT.md).
180
+
181
+ ---
182
+
183
+
184
+ ## Blueprints
185
+
186
+ A **Blueprint** is a Python module that wraps:
187
+
188
+ - **Agent Logic**: Defines how each agent in the Swarm processes user messages, whether it calls tools, and how it decides to hand off to other agents.
189
+ - **Tools**: Specifies which agents have which tools (e.g., MCP-discovered tools, Python function calls).
190
+ - **Environment & Configuration**: Ensures required environment variables and JSON configs are validated prior to agent execution.
191
+
192
+ Once registered, a blueprint is discoverable at runtime, allowing the system to list and load agents on demand.
193
+
194
+ ### Personal Assistant Example
195
+
196
+ The **Personal Assistant Blueprint** demonstrates a hybrid approach, integrating **local Python function tools** with **MCP-discovered tools**. It consists of:
197
+
198
+ 1. **Personal Assistant Agent**
199
+ - Determines user intent and delegates queries accordingly.
200
+ - Routes weather-related queries to the `WeatherAgent`.
201
+ - Routes knowledge-based queries to the `DocumentationAgent`.
202
+
203
+ 2. **Weather Agent** (Uses Python Function Tools)
204
+ - Fetches current weather and forecasts via OpenWeatherMap.
205
+ - Uses a **locally defined Python function** rather than an MCP server.
206
+ - Requires `WEATHER_API_KEY` as an environment variable.
207
+
208
+ 3. **Documentation Agent** (Uses MCP-Discovered Tools)
209
+ - Retrieves relevant documentation via `rag-docs`.
210
+ - Uses the MCP function `search_documentation` to dynamically retrieve information.
211
+ - Requires the following environment variables:
212
+ - `OPENAI_API_KEY`
213
+ - `QDRANT_URL`
214
+ - `QDRANT_API_KEY`
215
+
216
+ This blueprint highlights **seamless multi-agent coordination** and the **flexibility of combining Python functions with MCP-discovered tools**.
217
+
218
+ ### Other Examples
219
+
220
+ Open Swarm includes a growing library of **Blueprint** examples:
221
+
222
+ | Blueprint Name | Description | Status |
223
+ |------------------------------|-----------------------------------------------------------------------------|-----------------------------------------|
224
+ | **Echo Blueprint** | A straightforward agent that simply echoes user inputs—ideal for testing or as a starter template. | Stable |
225
+ | **Suggestion Blueprint** | Blueprint providing suggestions and recommendations. | Stable |
226
+ | **Database and Web Blueprint** | Demonstrates MCP-based integration with an SQLite database and Brave Search, illustrating how to combine data retrieval with real-time web queries. | Stable |
227
+ | **University Blueprint** | Multi-agent system for university-related tasks. | Stable |
228
+ | **Divine Ops Blueprint** | Multi-agent system for handling system administration tasks using MCP tools (filesystem, SQLite, search, etc.). | Stable |
229
+ | **Nebucha Shellzzar Blueprint**| Example system administration blueprint. | Stable |
230
+ | **Personal Assistant Blueprint** | Combines real-time weather updates (Python function) with documentation search (`rag-docs`, MCP). Demonstrates mixed tooling. | Broken (uvx-based) |
231
+ | **Flowise Blueprint** | Integrates with Flowise for visual flow orchestration. | Broken (uvx-based, requires Flowise setup)|
232
+
233
+ ---
234
+ ---
235
+
236
+ ## Further Documentation
237
+
238
+ For advanced usage, sequence diagrams, or in-depth tooling examples, see [DEVELOPMENT.md](./DEVELOPMENT.md). Additional expansions and best practices for agent orchestration, LLM provider swapping, and more can be found in that document.
239
+
240
+ ---
241
+
242
+ ## License
243
+
244
+ Open Swarm is provided under the MIT License. Refer to the [LICENSE](LICENSE) file for full details.
245
+
246
+ ---
247
+
248
+ ## Acknowledgements
249
+
250
+ This project is based on the [OpenAI Swarm](https://github.com/openai/swarm) framework. We would like to acknowledge the original authors and contributors of this project for their work.
251
+ We also wish to credit [django_chatbot](https://github.com/MattiPaivike/django_chatbot) for the Django chatbot view.
252
+
253
+ ### Third-Party Libraries
254
+ - **[Marked.js](https://github.com/markedjs/marked)** (MIT License)
255
+ A fast, lightweight library for parsing Markdown into HTML.
256
+ - **[Tabler Icons](https://tablericons.com)** (MIT License)
257
+ A set of free, high-quality SVG icons for web projects, designed by Paweł Kuna.
@@ -1,13 +1,15 @@
1
- open_swarm-0.1.1748636259.dist-info/licenses/LICENSE,sha256=BU9bwRlnOt_JDIb6OT55Q4leLZx9RArDLTFnlDIrBEI,1062
2
- swarm/__init__.py,sha256=aT-yyX84tiZhihp0RAXYTADCo9dhOnmolQVfn4_NQa8,46
1
+ open_swarm-0.1.1748636295.dist-info/licenses/LICENSE,sha256=BU9bwRlnOt_JDIb6OT55Q4leLZx9RArDLTFnlDIrBEI,1062
2
+ swarm/__init__.py,sha256=N2hwTgbJPoezNcg9WQCK0rj6Ap7MuyprhkWSDTfb9pI,71
3
3
  swarm/apps.py,sha256=up4C3m2JeyXeUcH-wYeReCuiOBVJ6404w9OfaRChLwM,2568
4
4
  swarm/auth.py,sha256=WcajB6lrA2cSA-Ho1lnBEs9_MNtDx713sxHRvIXx9fQ,2415
5
5
  swarm/consumers.py,sha256=wESLamkhbi4SEZt9k3yx6eU9ufOIZMCAL-OAXjJBGXE,5056
6
+ swarm/core.py,sha256=9SYH9JRs2OrSKdJrWK4OdcjmItpEEfY44ou7DSh_X94,22249
6
7
  swarm/messages.py,sha256=CwADrjlj-uVmm-so1xIZvN1UkEWdzSn_hu7slfhuS8w,6549
7
8
  swarm/models.py,sha256=Ix0WEYYqza2lbOEBNesikRCs3XGUPWmqQyMWzZYUaxM,1494
8
9
  swarm/serializers.py,sha256=EPvQHvUZtnOKX5ltddNFPGnWaJGxFDWFbofTa39oxgE,363
9
- swarm/settings.py,sha256=7VUVuzNdmA-QdUwE9nzn2e4a1BIEe21ULNqHt5k00xc,7872
10
+ swarm/settings.py,sha256=CQyql6M0NmARGTzaeQHogRDNCsiQp6orJ_hjSkxn8V0,7956
10
11
  swarm/tool_executor.py,sha256=KHM2mTGgbbTgWNN3fbV5c4MDY238OTLwaaqtkczFHFQ,12385
12
+ swarm/types.py,sha256=3Uw7B4O1cvq2j8wuk7_xTrNSgpyOXzRzo8uS72PvXTY,3135
11
13
  swarm/urls.py,sha256=i7qIwlSMsMSMrOhkbiUfTEL7tdhRFY4g5prfBimKOX0,4085
12
14
  swarm/util.py,sha256=G4x2hXopHhB7IdGCkUXGoykYWyiICnjxg7wcr-WqL8I,4644
13
15
  swarm/wsgi.py,sha256=REM_u4HpMCkO0ddrOUXgtY-ITL-VTbRB1-WHvFJAtAU,408
@@ -15,14 +17,14 @@ swarm/agent/__init__.py,sha256=YESGu_UXEBxrlQwghodUMN0vmXZDwWMU7DclCUvoklA,104
15
17
  swarm/agent/agent.py,sha256=-lGc05pGmveptO4oZoJq_L6XoTAIpxE8knTc6jxRmEQ,1680
16
18
  swarm/extensions/__init__.py,sha256=SadbzfxckByaaqzuKPfXMvqmj45-dcMlavlfQYhGnzE,56
17
19
  swarm/extensions/blueprint/__init__.py,sha256=-nAm6l7-42eAJYhWkQlcfq2hQB5ipxg2YIyiQRttX3c,1583
18
- swarm/extensions/blueprint/agent_utils.py,sha256=YWpANYTaFKAK4inWSirRlvzbHwQAH1wNkgW0esHKIeg,542
19
- swarm/extensions/blueprint/blueprint_base.py,sha256=8ZZxoLBRGi-p_va6nkPwQryYPEr34ISKKbNV8d4odnU,22215
20
+ swarm/extensions/blueprint/agent_utils.py,sha256=GLnjtLhtGW9k1vI9uqMojXcY-OkPXwdmQKLhs60CJ5k,1913
21
+ swarm/extensions/blueprint/blueprint_base.py,sha256=hqvOQ3wS7OJNmqJgpH7IOjLTr3qyHf4XzXxqkkrGYzU,30478
20
22
  swarm/extensions/blueprint/blueprint_discovery.py,sha256=ihrIHo4mDaSAUVREXD1y26d5UmPnxVZtBwDGcDJeYrU,5139
21
23
  swarm/extensions/blueprint/blueprint_utils.py,sha256=Ef_pu-RYomqzFjMg6LOSPSdbYFCbYXjEoSvK1OT49Eo,702
22
24
  swarm/extensions/blueprint/common_utils.py,sha256=jeKcN3lMdrpOYWIpErH3L5am13jHjaImpVvk2b0mps4,462
23
- swarm/extensions/blueprint/django_utils.py,sha256=ObtkmF1JW4H2OEYa7vC6ussUsMBtDsZTTVeHGHI-GOQ,17457
24
- swarm/extensions/blueprint/interactive_mode.py,sha256=vGmMuAgC93TLjMi2RkXQ2FkWfIUblyOTFGHmVdGKLSQ,4572
25
- swarm/extensions/blueprint/output_utils.py,sha256=8OtVE3gEvPeeTu4Juo6Ad6omSlMqSuAtckXXx7P1CyQ,4022
25
+ swarm/extensions/blueprint/django_utils.py,sha256=y3cGNXgCv4pqWFbVfLr3SmkKLAtwcJvf5JvoQphqAB0,10445
26
+ swarm/extensions/blueprint/interactive_mode.py,sha256=EZaPKnbaw7aeexznI9mk2hEfgJROAljqo2o-ASFN0O4,4594
27
+ swarm/extensions/blueprint/output_utils.py,sha256=ITsK3SgpPR3FVepOaq-P2MmSDIMtOTafepDRZHRt8cM,2883
26
28
  swarm/extensions/blueprint/spinner.py,sha256=3J0ZrNzoI5O5qR7hnCeRM3dZx2fLb_H3zkoj_AYt5LQ,3394
27
29
  swarm/extensions/blueprint/modes/rest_mode.py,sha256=KZuB_j2NfomER7CmlsLBqRipU3DymKY-9RpoGilMH0I,1357
28
30
  swarm/extensions/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -42,7 +44,7 @@ swarm/extensions/cli/commands/validate_envvars.py,sha256=7-BDPYzV7wsga7kOggHNuCs
42
44
  swarm/extensions/cli/utils/discover_commands.py,sha256=aJdU3kSmLlpBxzGdfOA88AaCwpknHSD2cE0piCHZRUY,1053
43
45
  swarm/extensions/cli/utils/env_setup.py,sha256=k7QxRjzIGx5HC6RVZP9QSaaXEKMkcKCewD66u0e7qfE,496
44
46
  swarm/extensions/config/__init__.py,sha256=WjmGxMU5k3S40TNQxTfByYcT2YAchq_5gzXFWDLrLzU,141
45
- swarm/extensions/config/config_loader.py,sha256=A3XCIeLvD7Akp7D1rz-JsBfnW5AvulE-nN-Fop2VsLI,13666
47
+ swarm/extensions/config/config_loader.py,sha256=aOAx6Y3G49vGkRVS2CMX9tDyd-4drPa5cGzzIU8poUQ,21698
46
48
  swarm/extensions/config/config_manager.py,sha256=bBT-NGbRdsXoJ-lxZM5kjAf5FvVVGRVdbbCQJiCX1_0,9951
47
49
  swarm/extensions/config/server_config.py,sha256=iBlQOaFQmkEPNLmVpAQvXlSWhTsu-YMIjEf-H-7QfUU,1882
48
50
  swarm/extensions/config/setup_wizard.py,sha256=yAZ7MOgc8ZGti2kjZ72G6QLFBI0lbhXAa7Wi7SeXDYo,4567
@@ -54,7 +56,12 @@ swarm/extensions/launchers/build_swarm_wrapper.py,sha256=c_9oR3To4M2cZyc1uYSiysH
54
56
  swarm/extensions/launchers/swarm_api.py,sha256=f8olTI5JVdayp923etVQWsP8WRquPG5Mw3Q40ItN6kY,2877
55
57
  swarm/extensions/launchers/swarm_cli.py,sha256=ar0LxctmxUwhkVbKWLfGEcZB9c77qdPsf1Y33-UNgpY,14184
56
58
  swarm/extensions/launchers/swarm_wrapper.py,sha256=3K58yqPN4Ct0c7zfSDKRIGdL1Q7WOBXmAVHXT-aaPj4,1004
57
- swarm/llm/chat_completion.py,sha256=MfeyU7RXJHs8_TBMKxEd7QCnFWjKW7nmWwiNVGMUM0k,9564
59
+ swarm/extensions/mcp/__init__.py,sha256=Rn_lJsxmZZUJrzwig2M63lQxd7P_DX3fZyN1pJt2ps0,49
60
+ swarm/extensions/mcp/cache_utils.py,sha256=i1-EUqJEwLyTZq-_EfIKLafD63_zpmn7gx5TNrFJEfM,952
61
+ swarm/extensions/mcp/mcp_client.py,sha256=M6hOm1D9X8ROncgZe51KW9Bc9a1TfIWAaiJ5uNq8K6o,10972
62
+ swarm/extensions/mcp/mcp_tool_provider.py,sha256=pE2LUJ-j_zC9dIpM3acQB9CxXDrbO74YMFlf_oD-3AI,5700
63
+ swarm/extensions/mcp/mcp_utils.py,sha256=pmVTB7vttexMmMr4FpQbjpVG69Z7iCp7YYXOTaqUhJQ,14560
64
+ swarm/llm/chat_completion.py,sha256=FREzS81pfn3EVg6kraWm8aGFltwLleYaC2MOzCOKBhE,7425
58
65
  swarm/migrations/0010_initial_chat_models.py,sha256=qJbvLReRBEOE08FkxjOWMcwu7Ny4epNI_eG1PF8wcWM,1900
59
66
  swarm/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
67
  swarm/repl/__init__.py,sha256=hNU3HxjJJi6w5xgx34n3253QJPspFltrK7AM0G_1TlE,32
@@ -69,14 +76,14 @@ swarm/utils/message_utils.py,sha256=oNTD7pfmnnu_Br24pR2VEX9afIZwFLwg2HJBLXs1blY,
69
76
  swarm/utils/redact.py,sha256=L2lo927S575Ay7Jz6pUlK47Sxxzpd9IMybnDm6-WlC8,2955
70
77
  swarm/views/__init__.py,sha256=AcLk0R7Y69FhIVgJK2hZs8M_gCR-h_5iqUywz89yuHM,1223
71
78
  swarm/views/api_views.py,sha256=MXt_sWQYUIYgy6gTHSVIeSrszvhtkD-sxQiGBmdbQAg,1815
72
- swarm/views/chat_views.py,sha256=Jvwu8Y9sX2t2KkshBBAchXu6dRH8UDV8RAT3zXowVKg,3471
79
+ swarm/views/chat_views.py,sha256=ch7q7yr-TcP0eoNcO4IhtsVGlhMGLUixBKtsb-Nr_6Q,4299
73
80
  swarm/views/core_views.py,sha256=VCv5BEBqUMz6OmQC4RkkIk1qq46f5f7Jyx4MqCaoENo,5229
74
81
  swarm/views/message_views.py,sha256=sDUnXyqKXC8WwIIMAlWf00s2_a2T9c75Na5FvYMJwBM,1596
75
82
  swarm/views/model_views.py,sha256=2bfqF8LOhgWDRFvm5FeovQDdLcZOS9OfkJLvSC0FDvs,6206
76
- swarm/views/utils.py,sha256=qNt1U5QKC2SFpViqdYwFU2mouklK0MR3W4I979-ES5s,23816
83
+ swarm/views/utils.py,sha256=3EFpCe3sWeQDNnbReFJ-Xdv6KTX6kIMXg23wXQxary4,23678
77
84
  swarm/views/web_views.py,sha256=ExQQeJpZ8CkLZQC_pXKOOmdnEy2qR3wEBP4LLp27DPU,7404
78
- open_swarm-0.1.1748636259.dist-info/METADATA,sha256=FsCN1cQScciTDm9aoSzy1O1UabvjSpL87pQBPzxDWGA,6626
79
- open_swarm-0.1.1748636259.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
80
- open_swarm-0.1.1748636259.dist-info/entry_points.txt,sha256=tHIcZBvy_sbp_nqZcLG3NSgElG6vEZcUvR5U5325qak,126
81
- open_swarm-0.1.1748636259.dist-info/top_level.txt,sha256=ETN-2phSZezexCGmKSre_aUhRK0XI9Rzz7Fw5TCsLsQ,6
82
- open_swarm-0.1.1748636259.dist-info/RECORD,,
85
+ open_swarm-0.1.1748636295.dist-info/METADATA,sha256=_kFKA7JpUHOqO99Re3T7H8qdg4kt8eyq5HCDD6omJJs,11932
86
+ open_swarm-0.1.1748636295.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
87
+ open_swarm-0.1.1748636295.dist-info/entry_points.txt,sha256=tHIcZBvy_sbp_nqZcLG3NSgElG6vEZcUvR5U5325qak,126
88
+ open_swarm-0.1.1748636295.dist-info/top_level.txt,sha256=ETN-2phSZezexCGmKSre_aUhRK0XI9Rzz7Fw5TCsLsQ,6
89
+ open_swarm-0.1.1748636295.dist-info/RECORD,,
swarm/__init__.py CHANGED
@@ -1 +1,3 @@
1
1
  default_app_config = 'swarm.apps.SwarmConfig'
2
+
3
+ from .core import Swarm