Cloud-Native Neural Search[?] Framework for Any Kind of Data
Jina๐ allows you to build search-as-a-service powered by deep learning in just minutes.
Run Quick Demo
๐ Fashion image search:jina hello fashion๐ค QA chatbot:pip install "jina[chatbot]" && jina hello chatbot๐ฐ Multimodal search:pip install "jina[multimodal]" && jina hello multimodal๐ด Fork the source of a demo to your folder:jina hello fork fashion ../my-proj/
Install
- via PyPI:
pip install -U "jina[standard]" - via Docker:
docker run jinaai/jina:latest
More installation options
| On x86/64, arm64/v6/v7 | Linux/macOS with Python 3.7/3.8/3.9 | Docker Users |
|---|---|---|
| Minimum (no HTTP, WebSocket, Docker support) |
pip install jina |
docker run jinaai/jina:latest |
| Minimum but more performant (use uvloop & lz4) |
pip install jina[perf] |
docker run jinaai/jina:latest-perf |
| With Daemon | pip install "jina[daemon]" |
docker run --network=host jinaai/jina:latest-daemon |
| Full development dependencies | pip install "jina[devel]" |
docker run jinaai/jina:latest-devel |
| Pre-release (all tags above can be added) |
pip install --pre jina |
docker run jinaai/jina:master |
Version identifiers are explained here. Jina can run on Windows Subsystem for Linux. We welcome the community to help us with native Windows support.
Get Started
Document, Executor, and Flow are the three fundamental concepts in Jina.
๐ Document is the basic data type in Jina;โ๏ธ Executor is how Jina processes Documents;๐ Flow is how Jina streamlines and distributes Executors.
import numpy as np
from jina import Document, DocumentArray, Executor, Flow, requests
class CharEmbed(Executor): # a simple character embedding with mean-pooling
offset = 32 # letter `a`
dim = 127 - offset + 1 # last pos reserved for `UNK`
char_embd = np.eye(dim) * 1 # one-hot embedding for all chars
@requests
def foo(self, docs: DocumentArray, **kwargs):
for d in docs:
r_emb = [ord(c) - self.offset if self.offset <= ord(c) <= 127 else (self.dim - 1) for c in d.text]
d.embedding = self.char_embd[r_emb, :].mean(axis=0) # average pooling
class Indexer(Executor):
_docs = DocumentArray() # for storing all documents in memory
@requests(on='/index')
def foo(self, docs: DocumentArray, **kwargs):
self._docs.extend(docs) # extend stored `docs`
@requests(on='/search')
def bar(self, docs: DocumentArray, **kwargs):
docs.match(self._docs, metric='euclidean', limit=20)
f = Flow(port_expose=12345, protocol='http', cors=True).add(uses=CharEmbed, parallel=2).add(uses=Indexer) # build a Flow, with 2 parallel CharEmbed, tho unnecessary
with f:
f.post('/index', (Document(text=t.strip()) for t in open(__file__) if t.strip())) # index all lines of _this_ file
f.block() # block for listening requesthttp://localhost:12345/docs (an extended Swagger UI) in your browser, click /search tab and input:
{"data": [{"text": "@requests(on=something)"}]}That means, we want to find lines from the above code snippet that are most similar to @request(on=something). Now click Execute button!
from jina import Client, Document
from jina.types.request import Response
def print_matches(resp: Response): # the callback function invoked when task is done
for idx, d in enumerate(resp.docs[0].matches[:3]): # print top-3 matches
print(f'[{idx}]{d.scores["euclidean"].value:2f}: "{d.text}"')
c = Client(protocol='http', port_expose=12345) # connect to localhost:12345
c.post('/search', Document(text='request(on=something)'), on_done=print_matches), which prints the following results:
Client@1608[S]:connected to the gateway at localhost:12345!
[0]0.168526: "@requests(on='/index')"
[1]0.181676: "@requests(on='/search')"
[2]0.192049: "query.matches = [Document(self._docs[int(idx)], copy=True, score=d) for idx, d in enumerate(dist)]"
Read Tutorials
๐ง What is "Neural Search"?๐ Document&DocumentArray: the basic data type in Jina.โ๏ธ Executor: how Jina processes Documents.๐ Flow: how Jina streamlines and distributes Executors.๐คน Serving Jina๐ Developer Reference๐งผ Clean & Efficient Coding in Jina
Support
- Join our Slack community to chat to our engineers about your use cases, questions, and support queries.
- Join our Engineering All Hands meet-up to discuss your use case and learn Jina's new features.
- When? The second Tuesday of every month
- Where? Zoom (see our public events calendar/.ical) and live stream on YouTube
- Subscribe to the latest video tutorials on our YouTube channel
Join Us
Jina is backed by Jina AI. We are actively hiring full-stack developers, solution engineers to build the next neural search ecosystem in open source.
Contributing
We welcome all kinds of contributions from the open-source community, individuals and partners. We owe our success to your active involvement.

