Build, host and run AI solutions.
Self-hosted multimodal vector database — GraphQL, RAG and built-in vectorizers on your VPS.
In validation
Automatic installation for this solution is ready and currently going through our tests on a real server. Ordering will open as soon as validation is complete.
Weaviate is an open-source vector database written in Go, designed for semantic search and retrieval-augmented generation at scale. Unlike pure vector stores, Weaviate ships built-in vectorizer modules — text2vec-openai, text2vec-cohere, img2vec — that embed your data at ingest time without any client-side preprocessing. Data, vectors and structured metadata live together in the same record, so a single GraphQL or REST query returns semantically relevant objects with all their properties.
Deployed on a ServOrbit VPS, Weaviate becomes the memory and retrieval layer of your AI stack: feed it documents, images or knowledge-base entries and let your LLM (via LangChain, LlamaIndex or a direct API call) pull the most relevant context before generating a response. The loopback binding keeps all data on your machine — no embeddings or private content ever leave the server.
Index your documentation or knowledge base in Weaviate using the text2vec module of your choice. At query time, retrieve the top-k most relevant chunks and pass them as context to your LLM. The entire pipeline runs on your VPS — no data leaves the machine.
Replace keyword-based search with meaning-based retrieval. A query for 'invoice dispute resolution' surfaces results about 'billing conflict handling' even when those words never appear, because Weaviate compares intent encoded as vectors.
Store product images alongside their descriptions and metadata in the same Weaviate collection. Search by image similarity, text description or a combination — useful for e-commerce catalogues, design asset libraries or document archives that mix text and visuals.
Guide optimized for ServOrbit Cloud VPS.
Plan for at least 2 GB of RAM: Weaviate itself idles around 400–600 MB, with additional memory for your index and any vectorizer modules you enable. A 4 GB VPS is a comfortable starting point. The machine ships with Ubuntu 24.04 and Docker pre-installed.
In your ServOrbit client area: Marketplace → Artificial Intelligence → Weaviate → Deploy. The semitechnologies/weaviate:1.27.2 image starts in seconds. The REST and GraphQL APIs answer on port 8080; the gRPC API listens on port 50051 — both restricted to 127.0.0.1. The weaviate_data volume keeps your schema and objects across container restarts.
This Weaviate instance runs with anonymous access enabled — no API key is required to connect. The ports are bound to 127.0.0.1 only, so the database is not reachable from the public internet. To call the REST or GraphQL API from your workstation, open an SSH tunnel: ssh -L 8080:127.0.0.1:<port> root@<vps-ip> (replace <port> with the port shown in your client area), then query http://localhost:8080/v1/schema.
Define your schema with a single REST call: curl -X POST http://localhost:8080/v1/schema -H 'Content-Type: application/json' -d '{"class":"Document","vectorizer":"none","properties":[{"name":"content","dataType":["text"]}]}'. With vectorizer: none you supply your own embeddings on each import. Switch to text2vec-openai (and add OPENAI_APIKEY to the container env) to let Weaviate call the embedding model automatically at ingest time.
Run a nearest-neighbour search in GraphQL: curl http://localhost:8080/v1/graphql -d '{"query":"{Get{Document(nearVector:{vector:[0.1,0.2,...]},limit:5){content _additional{certainty}}}}"}' -H 'Content-Type: application/json'. For structured access, the REST /v1/objects and /v1/batch endpoints are available via the official Python, Go, TypeScript and Java clients.
Enable API-key authentication by adding AUTHENTICATION_APIKEY_ENABLED=true and AUTHENTICATION_APIKEY_ALLOWED_KEYS=<your-key> to the container environment variables and restarting it. Once a key is set, every request must include the Authorization: Bearer <key> header. The instance can then be safely published behind a domain, with the nginx vhost and TLS certificate ServOrbit manages.
Self-hosted vector database for semantic search and RAG. Store, index and query high-dimensional embeddings with HNSW indexing — the missing infrastructure layer for your LLM stack.
Artificial IntelligenceRun open-source LLMs locally via a dead-simple API. Pull Llama 3, Mistral, Qwen or DeepSeek in one command — OpenAI-compatible, zero per-token cost.
Artificial IntelligenceWeb interface to interact with your local or remote LLMs. Your data stays on your infrastructure — no third party involved.
Browse our help center and FAQ, or reach our team — callback, WhatsApp or email. Support in French, English and Arabic.
Message us on WhatsAppopens in a new tab