syntaxmatrix-core 1.1.2__tar.gz → 1.1.3__tar.gz
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.
- {syntaxmatrix_core-1.1.2/syntaxmatrix_core.egg-info → syntaxmatrix_core-1.1.3}/PKG-INFO +1 -1
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/setup.py +1 -1
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/workspace_db.py +34 -8
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3/syntaxmatrix_core.egg-info}/PKG-INFO +1 -1
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/MANIFEST.in +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/README.md +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/pyproject.toml +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/setup.cfg +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/__init__.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/agentic/__init__.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/agentic/agent_tools.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/agentic/agents.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/agentic/agents_orchestrer.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/agentic/code_tools_registry.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/agentic/model_templates.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/auth.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/bootstrap.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/client_docs.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/commentary.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/core.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/dataset_preprocessing.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/db.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/db_backends/__init__.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/db_backends/auth_postgres_backend.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/db_backends/history_postgres_backend.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/db_backends/postgres_backend.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/db_backends/postgres_common.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/db_backends/smpv_postgres_backend.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/db_backends/smpv_sqlite_backend.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/db_backends/sqlite_backend.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/db_backends/workspace_postgres_backend.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/db_contract.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/db_runtime.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/display_html.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/emailer.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/embeddings/__init__.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/embeddings/base.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/embeddings/google_provider.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/file_processor.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/gpt_models_latest.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/history_store.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/kernel_manager.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/llm_store.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/media/__init__.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/media/media_pixabay.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/models.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/page_builder_defaults.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/page_builder_generation.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/page_layout_contract.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/page_patch_publish.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/plottings.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/plugin_manager.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/preface.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/premium/__init__.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/premium/catalogue/__init__.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/premium/gate.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/premium/runtime_paths.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/premium/state.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/premium/verify.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/profiles.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/project_root.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/routes.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/selftest_page_templates.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/session.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/settings/__init__.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/settings/client_items.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/settings/logging.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/settings/model_map.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/settings/prompts.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/settings/string_navbar.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/smiv.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/smpv.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/static/assets/hero-default.svg +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/static/css/style.css +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/static/docs.md +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/static/icons/bot_icon.png +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/static/icons/bot_icon2.png +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/static/icons/favicon.png +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/static/icons/logo.png +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/static/icons/logo2.png +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/static/icons/svg_497526.svg +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/static/icons/svg_497528.svg +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/static/js/chat.js +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/static/js/sidebar.js +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/static/js/widgets.js +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/templates/admin_billing.html +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/templates/admin_branding.html +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/templates/admin_features.html +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/templates/admin_secretes.html +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/templates/change_password.html +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/templates/code_cell.html +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/templates/dashboard.html +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/templates/dataset_resize.html +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/templates/docs.html +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/templates/edit_page.html +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/templates/error.html +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/templates/login.html +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/templates/register.html +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/themes.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/ui_modes.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/utils.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/vector_db.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/vectordb/__init__.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/vectordb/adapters/__init__.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/vectordb/adapters/milvus_adapter.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/vectordb/adapters/pgvector_adapter.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/vectordb/adapters/sqlite_adapter.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/vectordb/base.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/vectordb/registry.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/vectorizer.py +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix_core.egg-info/SOURCES.txt +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix_core.egg-info/dependency_links.txt +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix_core.egg-info/requires.txt +0 -0
- {syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix_core.egg-info/top_level.txt +0 -0
|
@@ -112,6 +112,7 @@ class Workspace(Base):
|
|
|
112
112
|
llm_provider = Column(String(24), default="openai")
|
|
113
113
|
llm_model = Column(String(64), default="text-embedding-3-small")
|
|
114
114
|
llm_api_key = Column(LargeBinary)
|
|
115
|
+
embedding_dimension = Column(Integer, nullable=True)
|
|
115
116
|
|
|
116
117
|
profiles = relationship(
|
|
117
118
|
"LLMProfile",
|
|
@@ -169,24 +170,49 @@ def _has_column_sqlite(conn, table_name, column_name):
|
|
|
169
170
|
|
|
170
171
|
def _ensure_sqlite_compatibility() -> None:
|
|
171
172
|
with engine.begin() as conn:
|
|
173
|
+
if not _has_column_sqlite(conn, "workspace", "embedding_dimension"):
|
|
174
|
+
conn.execute(
|
|
175
|
+
sql_text("ALTER TABLE workspace ADD COLUMN embedding_dimension INTEGER")
|
|
176
|
+
)
|
|
177
|
+
|
|
172
178
|
if not _has_column_sqlite(conn, "llm_profiles", "desc"):
|
|
173
|
-
conn.execute(
|
|
179
|
+
conn.execute(
|
|
180
|
+
sql_text("ALTER TABLE llm_profiles ADD COLUMN desc VARCHAR(255) DEFAULT ''")
|
|
181
|
+
)
|
|
182
|
+
|
|
174
183
|
if not _has_column_sqlite(conn, "llm_models", "desc"):
|
|
175
|
-
conn.execute(
|
|
184
|
+
conn.execute(
|
|
185
|
+
sql_text("ALTER TABLE llm_models ADD COLUMN desc VARCHAR(255) DEFAULT ''")
|
|
186
|
+
)
|
|
176
187
|
|
|
177
188
|
|
|
178
189
|
def _ensure_postgres_compatibility() -> None:
|
|
179
190
|
with engine.begin() as conn:
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
191
|
+
conn.execute(
|
|
192
|
+
sql_text(
|
|
193
|
+
"ALTER TABLE workspace "
|
|
194
|
+
"ADD COLUMN IF NOT EXISTS embedding_dimension INTEGER"
|
|
195
|
+
)
|
|
196
|
+
)
|
|
197
|
+
|
|
198
|
+
conn.execute(
|
|
199
|
+
sql_text(
|
|
200
|
+
'ALTER TABLE llm_profiles '
|
|
201
|
+
'ADD COLUMN IF NOT EXISTS "desc" VARCHAR(255) DEFAULT \'\''
|
|
202
|
+
)
|
|
203
|
+
)
|
|
204
|
+
|
|
205
|
+
conn.execute(
|
|
206
|
+
sql_text(
|
|
207
|
+
'ALTER TABLE llm_models '
|
|
208
|
+
'ADD COLUMN IF NOT EXISTS "desc" VARCHAR(255)'
|
|
209
|
+
)
|
|
210
|
+
)
|
|
185
211
|
|
|
186
212
|
|
|
187
213
|
def init_workspace_db() -> None:
|
|
188
|
-
"""Create/upgrade the workspace and LLM profile tables."""
|
|
189
214
|
Base.metadata.create_all(engine)
|
|
215
|
+
|
|
190
216
|
if WORKSPACE_DB_BACKEND == "sqlite":
|
|
191
217
|
_ensure_sqlite_compatibility()
|
|
192
218
|
elif WORKSPACE_DB_BACKEND == "postgres":
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/agentic/agents_orchestrer.py
RENAMED
|
File without changes
|
{syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/agentic/code_tools_registry.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/db_backends/postgres_backend.py
RENAMED
|
File without changes
|
{syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/db_backends/postgres_common.py
RENAMED
|
File without changes
|
|
File without changes
|
{syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/db_backends/smpv_sqlite_backend.py
RENAMED
|
File without changes
|
{syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/db_backends/sqlite_backend.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/embeddings/google_provider.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/premium/catalogue/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/static/assets/hero-default.svg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/static/icons/svg_497526.svg
RENAMED
|
File without changes
|
{syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/static/icons/svg_497528.svg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/templates/admin_billing.html
RENAMED
|
File without changes
|
{syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/templates/admin_branding.html
RENAMED
|
File without changes
|
{syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/templates/admin_features.html
RENAMED
|
File without changes
|
{syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/templates/admin_secretes.html
RENAMED
|
File without changes
|
{syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/templates/change_password.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/templates/dataset_resize.html
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/vectordb/adapters/__init__.py
RENAMED
|
File without changes
|
{syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/vectordb/adapters/milvus_adapter.py
RENAMED
|
File without changes
|
|
File without changes
|
{syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix/vectordb/adapters/sqlite_adapter.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix_core.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
{syntaxmatrix_core-1.1.2 → syntaxmatrix_core-1.1.3}/syntaxmatrix_core.egg-info/top_level.txt
RENAMED
|
File without changes
|