Skip to main content

Superlinked server enables fast and scalable vector search and storage

Project description

SIE: Superlinked Inference Engine is an open-source inference server for small AI models: embeddings, reranking, and extraction.
It runs on your own infrastructure, from a laptop to a production Kubernetes cluster.
The legacy superlinked-server package is deprecated for new projects. Run SIE Server and use sie-sdk instead.

Superlinked Server (Deprecated)

Deprecated for new projects

The superlinked-server package is deprecated for new projects.

This package was part of the legacy Superlinked Python framework stack. It is not the current Superlinked server product.

Superlinked now focuses on SIE: Superlinked Inference Engine, an open-source inference server for small AI models. SIE runs encoders, rerankers, and entity extractors on your own infrastructure, from a laptop to a production Kubernetes cluster.

New projects should run SIE Server and use the SIE SDK instead:

docker run -p 8080:8080 \
  -v sie-hf-cache:/app/.cache/huggingface \
  ghcr.io/superlinked/sie-server:latest-cpu-default

pip install sie-sdk

SIE GitHub: https://github.com/superlinked/sie
SIE docs: https://superlinked.com/docs
Superlinked website: https://superlinked.com

Use SIE Server for new projects

SIE Server is the current Superlinked inference server for semantic search, retrieval, RAG, reranking, and information extraction workloads. It exposes one HTTP API around three primitives:

  • encode converts text or images to vectors for semantic search and RAG.
  • score reranks query-document pairs for higher-precision retrieval.
  • extract pulls entities and structured data from unstructured text.

Use SIE Server when you need to:

  • Serve 85+ supported models from one API.
  • Serve dense, sparse, multi-vector, and vision embedding models.
  • Serve reranking models for higher-quality relevance ranking.
  • Serve extraction models for entity extraction and structured information extraction.
  • Run inference locally with Docker.
  • Deploy a production inference service on Kubernetes.
  • Connect applications through the SIE Python SDK, TypeScript SDK, or HTTP API.

The legacy superlinked-server package is not a drop-in replacement for SIE Server. For new applications and new infrastructure, use SIE.

Quickstart with SIE

SIE runs as a Docker container. Your application calls it over HTTP. Start the server, install the SDK, then call encode, score, or extract.

SIE's primary target is x86 Linux nodes with NVIDIA GPUs. The CPU image is useful for trying SIE locally.

1. Run the engine

# macOS (Apple Silicon)
docker run --platform linux/amd64 -p 8080:8080 \
  -v sie-hf-cache:/app/.cache/huggingface \
  ghcr.io/superlinked/sie-server:latest-cpu-default

# Linux (CPU)
docker run -p 8080:8080 \
  -v sie-hf-cache:/app/.cache/huggingface \
  ghcr.io/superlinked/sie-server:latest-cpu-default

# Linux (NVIDIA GPU)
docker run --gpus all -p 8080:8080 \
  -v sie-hf-cache:/app/.cache/huggingface \
  ghcr.io/superlinked/sie-server:latest-cuda12-default

The server starts on port 8080. Models are available through the API and load on first request.

Optional readiness check:

curl http://localhost:8080/readyz
# "ok"

2. Install the SDK

pip install sie-sdk           # Python
pnpm add @superlinked/sie-sdk # TypeScript

3. Generate embeddings

from sie_sdk import SIEClient
from sie_sdk.types import Item

client = SIEClient("http://localhost:8080")

result = client.encode("BAAI/bge-m3", Item(text="Hello world"))
print(result["dense"].shape)  # (1024,)

4. Rerank search results

query = Item(text="What is machine learning?")
items = [
    Item(text="Machine learning uses algorithms to learn from data."),
    Item(text="The weather is sunny today."),
]

result = client.score("BAAI/bge-reranker-v2-m3", query, items)

for entry in result["scores"]:
    print(f"Rank {entry['rank']}: score={entry['score']:.3f}")

5. Extract entities

result = client.extract(
    "urchade/gliner_multi-v2.1",
    Item(text="Tim Cook is the CEO of Apple."),
    labels=["person", "organization"],
)

for entity in result["entities"]:
    print(f"{entity['label']}: {entity['text']}")

What changed?

The superlinked-server package was designed to serve applications built with the deprecated superlinked Python framework.

That legacy framework and server stack are now deprecated for new projects.

Superlinked now focuses on SIE: Superlinked Inference Engine. SIE is the current Superlinked server product for unified model inference across embeddings, reranking, and information extraction.

Should I still use this package?

Use superlinked-server only if you are maintaining an existing deployment that already depends on the legacy Superlinked framework stack.

Do not start new projects with this package. For new development, run SIE Server and use the SIE SDK.

Links

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

superlinked_server-1.56.5.tar.gz (29.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

superlinked_server-1.56.5-py3-none-any.whl (50.9 kB view details)

Uploaded Python 3

File details

Details for the file superlinked_server-1.56.5.tar.gz.

File metadata

  • Download URL: superlinked_server-1.56.5.tar.gz
  • Upload date:
  • Size: 29.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for superlinked_server-1.56.5.tar.gz
Algorithm Hash digest
SHA256 1d4336e54b17af0c9996ea6fde994c1a147943ef442ea11f40d8ce960da19757
MD5 32da3c47f14c8b9d4ebb36aaf492535d
BLAKE2b-256 846b14f0901fbadee0ecdfc43d8dd84f5a1d5fbd03b5c48b2f1c902fd8348f71

See more details on using hashes here.

Provenance

The following attestation bundles were made for superlinked_server-1.56.5.tar.gz:

Publisher: release.yml on superlinked/superlinked-server

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file superlinked_server-1.56.5-py3-none-any.whl.

File metadata

File hashes

Hashes for superlinked_server-1.56.5-py3-none-any.whl
Algorithm Hash digest
SHA256 dc14b0f9f88625200b416d75327df44beb4301202ad44f879b9f3b1ebaed524c
MD5 af35678b4962f16370b1e452c0c2db7c
BLAKE2b-256 ea1d1cc7402ea0be5be67cb611e5013388ced5e89321668440cf11a741827322

See more details on using hashes here.

Provenance

The following attestation bundles were made for superlinked_server-1.56.5-py3-none-any.whl:

Publisher: release.yml on superlinked/superlinked-server

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page