Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cli/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mfs-cli"
version = "0.4.3"
version = "0.4.4"
edition = "2021"
authors = ["Cheney Zhang <chen.zhang@zilliz.com>"]
description = "MFS CLI — shell-native client for Multi-source File-like Search"
Expand Down
8 changes: 4 additions & 4 deletions deployments/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,22 @@ volume. This is the runnable v0.4 topology.
# build (include all connector SDKs)
docker build -f deployments/docker/Dockerfile \
--build-arg EXTRAS="[all-connectors]" \
-t mfs-server:0.4.3 .
-t mfs-server:0.4.4 .

# run with local ONNX embedding + Milvus Lite (zero API keys needed)
docker run -d -p 13619:13619 -v mfs-data:/data \
mfs-server:0.4.3
mfs-server:0.4.4

# or override embedding to OpenAI
docker run -d -p 13619:13619 -v mfs-data:/data \
-e OPENAI_API_KEY=$OPENAI_API_KEY \
mfs-server:0.4.3
mfs-server:0.4.4
# (then: docker exec -it <id> mfs-server setup --section embedding to flip provider)

# or override Milvus to Zilliz Cloud
docker run -d -p 13619:13619 -v mfs-data:/data \
-e MILVUS_URI=$ZILLIZ_URI -e MILVUS_TOKEN=$ZILLIZ_TOKEN \
mfs-server:0.4.3
mfs-server:0.4.4
```

**First-launch tip**: the default ONNX embedding model (~600 MB, BGE-M3 int8)
Expand Down
4 changes: 2 additions & 2 deletions deployments/helm/mfs/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: mfs
description: Multi-source File-like Search — API + worker on Kubernetes (design/10 §4.4)
type: application
version: 0.4.3
appVersion: "0.4.3"
version: 0.4.4
appVersion: "0.4.4"
2 changes: 1 addition & 1 deletion deployments/helm/mfs/values.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# MFS Helm values (design/10 §4.4)
image:
repository: ghcr.io/zilliztech/mfs-server
tag: "0.4.3"
tag: "0.4.4"
pullPolicy: IfNotPresent

api:
Expand Down
2 changes: 1 addition & 1 deletion dist-workspace.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ cargo-dist-version = "0.32.0"
ci = "github"
# Installers to generate per release
installers = ["shell"]
# Target platforms (Rust target-triple syntax). v0.4.3: Linux + macOS only.
# Target platforms (Rust target-triple syntax). v0.4.4: Linux + macOS only.
# musl variants for Linux give a static, distro-portable binary.
targets = [
"x86_64-unknown-linux-musl",
Expand Down
4 changes: 2 additions & 2 deletions docs/sdks.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ OpenAPI spec or regenerating the checked-in SDK sources.

| Language | Package name | Import | Checked-in version | Generator |
|---|---|---|---|---|
| Python | `mfs_sdk` | `import mfs_sdk` | `0.4.3` | OpenAPI Generator `python` client with `urllib3` |
| TypeScript | `@mfs/sdk` | `import { ... } from "@mfs/sdk"` | `0.4.3` | OpenAPI Generator `typescript-fetch` client |
| Python | `mfs_sdk` | `import mfs_sdk` | `0.4.4` | OpenAPI Generator `python` client with `urllib3` |
| TypeScript | `@mfs/sdk` | `import { ... } from "@mfs/sdk"` | `0.4.4` | OpenAPI Generator `typescript-fetch` client |

Generated source docs:

Expand Down
2 changes: 1 addition & 1 deletion protocol/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ openapi: 3.1.0
info:
title: MFS
description: Multi-source File-like Search — HTTP /v1 control plane.
version: 0.4.3
version: 0.4.4
paths:
/v1/server/info:
get:
Expand Down
4 changes: 2 additions & 2 deletions sdks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ with [`./generate.sh`](generate.sh) after the spec changes.

| Language | Directory | Package metadata | Generator | Reference entry |
|---|---|---|---|---|
| Python | [`python/`](python) | `mfs_sdk` `0.4.3` | `python` with `urllib3` | [`python/docs/README.md`](python/docs/README.md) |
| TypeScript | [`typescript/`](typescript) | `@mfs/sdk` `0.4.3` | `typescript-fetch` | [`typescript/docs/README.md`](typescript/docs/README.md) |
| Python | [`python/`](python) | `mfs_sdk` `0.4.4` | `python` with `urllib3` | [`python/docs/README.md`](python/docs/README.md) |
| TypeScript | [`typescript/`](typescript) | `@mfs/sdk` `0.4.4` | `typescript-fetch` | [`typescript/docs/README.md`](typescript/docs/README.md) |

APIs are grouped by tag: `ServerApi` (info/status), `IngestApi` (add/job),
`RetrievalApi` (search/grep), `BrowseApi` (ls/cat). Search results use
Expand Down
6 changes: 3 additions & 3 deletions sdks/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Multi-source File-like Search — HTTP /v1 control plane.

This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 0.4.3
- Package version: 0.4.3
- API version: 0.4.4
- Package version: 0.4.4
- Generator version: 7.22.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

Expand All @@ -15,7 +15,7 @@ This Python package is automatically generated by the [OpenAPI Generator](https:
> [`docs/api.md`](../../docs/api.md).
>
> - Package metadata in [`pyproject.toml`](pyproject.toml) is `mfs_sdk`
> `0.4.3`.
> `0.4.4`.
> - Normal `mfs-server run` / `mfs-server api` runs default to
> `http://127.0.0.1:13619`.
> - The generated client default is `http://127.0.0.1:8765`; use that only for
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

| Item | Current guidance |
|---|---|
| Package metadata | `mfs_sdk` `0.4.3` in [`../pyproject.toml`](../pyproject.toml). |
| Package metadata | `mfs_sdk` `0.4.4` in [`../pyproject.toml`](../pyproject.toml). |
| Normal server URL | `http://127.0.0.1:13619` for `mfs-server run` / `mfs-server api`. |
| Generated default URL | `http://127.0.0.1:8765`; use it only when you intentionally start a server there, such as for the smoke harness. |
| Bearer auth | When runtime auth is enabled, every request except `GET /healthz` must include `Authorization: Bearer <token>`. |
Expand Down
4 changes: 2 additions & 2 deletions sdks/python/mfs_sdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@

Multi-source File-like Search — HTTP /v1 control plane.

The version of the OpenAPI document: 0.4.3
The version of the OpenAPI document: 0.4.4
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
""" # noqa: E501


__version__ = "0.4.3"
__version__ = "0.4.4"

# Define package exports
__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/mfs_sdk/api/browse_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Multi-source File-like Search — HTTP /v1 control plane.

The version of the OpenAPI document: 0.4.3
The version of the OpenAPI document: 0.4.4
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/mfs_sdk/api/connectors_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Multi-source File-like Search — HTTP /v1 control plane.

The version of the OpenAPI document: 0.4.3
The version of the OpenAPI document: 0.4.4
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/mfs_sdk/api/ingest_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Multi-source File-like Search — HTTP /v1 control plane.

The version of the OpenAPI document: 0.4.3
The version of the OpenAPI document: 0.4.4
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/mfs_sdk/api/retrieval_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Multi-source File-like Search — HTTP /v1 control plane.

The version of the OpenAPI document: 0.4.3
The version of the OpenAPI document: 0.4.4
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/mfs_sdk/api/server_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Multi-source File-like Search — HTTP /v1 control plane.

The version of the OpenAPI document: 0.4.3
The version of the OpenAPI document: 0.4.4
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
4 changes: 2 additions & 2 deletions sdks/python/mfs_sdk/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Multi-source File-like Search — HTTP /v1 control plane.

The version of the OpenAPI document: 0.4.3
The version of the OpenAPI document: 0.4.4
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down Expand Up @@ -91,7 +91,7 @@ def __init__(
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'OpenAPI-Generator/0.4.3/python'
self.user_agent = 'OpenAPI-Generator/0.4.4/python'
self.client_side_validation = configuration.client_side_validation

def __enter__(self):
Expand Down
6 changes: 3 additions & 3 deletions sdks/python/mfs_sdk/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Multi-source File-like Search — HTTP /v1 control plane.

The version of the OpenAPI document: 0.4.3
The version of the OpenAPI document: 0.4.4
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down Expand Up @@ -533,8 +533,8 @@ def to_debug_report(self) -> str:
return "Python SDK Debug Report:\n"\
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: 0.4.3\n"\
"SDK Package Version: 0.4.3".\
"Version of the API: 0.4.4\n"\
"SDK Package Version: 0.4.4".\
format(env=sys.platform, pyversion=sys.version)

def get_host_settings(self) -> List[HostSetting]:
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/mfs_sdk/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Multi-source File-like Search — HTTP /v1 control plane.

The version of the OpenAPI document: 0.4.3
The version of the OpenAPI document: 0.4.4
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/mfs_sdk/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

Multi-source File-like Search — HTTP /v1 control plane.

The version of the OpenAPI document: 0.4.3
The version of the OpenAPI document: 0.4.4
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/mfs_sdk/models/add_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Multi-source File-like Search — HTTP /v1 control plane.

The version of the OpenAPI document: 0.4.3
The version of the OpenAPI document: 0.4.4
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/mfs_sdk/models/add_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Multi-source File-like Search — HTTP /v1 control plane.

The version of the OpenAPI document: 0.4.3
The version of the OpenAPI document: 0.4.4
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/mfs_sdk/models/cancel_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Multi-source File-like Search — HTTP /v1 control plane.

The version of the OpenAPI document: 0.4.3
The version of the OpenAPI document: 0.4.4
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/mfs_sdk/models/cat_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Multi-source File-like Search — HTTP /v1 control plane.

The version of the OpenAPI document: 0.4.3
The version of the OpenAPI document: 0.4.4
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/mfs_sdk/models/connector_row.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Multi-source File-like Search — HTTP /v1 control plane.

The version of the OpenAPI document: 0.4.3
The version of the OpenAPI document: 0.4.4
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/mfs_sdk/models/deletion_candidate.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Multi-source File-like Search — HTTP /v1 control plane.

The version of the OpenAPI document: 0.4.3
The version of the OpenAPI document: 0.4.4
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/mfs_sdk/models/error_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Multi-source File-like Search — HTTP /v1 control plane.

The version of the OpenAPI document: 0.4.3
The version of the OpenAPI document: 0.4.4
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/mfs_sdk/models/estimate_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Multi-source File-like Search — HTTP /v1 control plane.

The version of the OpenAPI document: 0.4.3
The version of the OpenAPI document: 0.4.4
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/mfs_sdk/models/grep_match_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Multi-source File-like Search — HTTP /v1 control plane.

The version of the OpenAPI document: 0.4.3
The version of the OpenAPI document: 0.4.4
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/mfs_sdk/models/grep_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Multi-source File-like Search — HTTP /v1 control plane.

The version of the OpenAPI document: 0.4.3
The version of the OpenAPI document: 0.4.4
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/mfs_sdk/models/job_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Multi-source File-like Search — HTTP /v1 control plane.

The version of the OpenAPI document: 0.4.3
The version of the OpenAPI document: 0.4.4
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/mfs_sdk/models/ls_entry.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Multi-source File-like Search — HTTP /v1 control plane.

The version of the OpenAPI document: 0.4.3
The version of the OpenAPI document: 0.4.4
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/mfs_sdk/models/ls_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Multi-source File-like Search — HTTP /v1 control plane.

The version of the OpenAPI document: 0.4.3
The version of the OpenAPI document: 0.4.4
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/mfs_sdk/models/manifest_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Multi-source File-like Search — HTTP /v1 control plane.

The version of the OpenAPI document: 0.4.3
The version of the OpenAPI document: 0.4.4
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/mfs_sdk/models/manifest_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Multi-source File-like Search — HTTP /v1 control plane.

The version of the OpenAPI document: 0.4.3
The version of the OpenAPI document: 0.4.4
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/mfs_sdk/models/manifest_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Multi-source File-like Search — HTTP /v1 control plane.

The version of the OpenAPI document: 0.4.3
The version of the OpenAPI document: 0.4.4
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Loading
Loading