skillfed

jina

Multimodal AI services & pipelines with cloud-native stack: gRPC, Kubernetes, Docker, OpenTelemetry, Prometheus, Jaeger, etc.

jina v3.34.0 91.7K downloads/30d#13,505 on PyPI21,861
Permissive license Apache 2.0 AGING released

What it is and what it does

Jina is a production-grade framework for building AI services that scale from local development to cloud deployment. It abstracts the complexity of gRPC, HTTP, and WebSocket protocols, allowing developers to focus on writing Executor logic while the framework handles service orchestration, containerization, and deployment. The core abstraction is the Executor—a stateful component that processes Documents (structured data objects from DocArray)—which can be composed into Flows (pipelines) and Deployments (scalable service instances).

The framework is designed for ML workloads: it provides native streaming support for LLM token generation, dynamic batching for inference efficiency, and built-in Docker and Kubernetes export. It includes OpenTelemetry instrumentation for observability and integrates with Jina AI Cloud for one-command deployment. With 32 runtime dependencies (including FastAPI, uvicorn, gRPC, and Prometheus), it trades installation complexity for a complete, batteries-included ML serving stack.

Use it for:

  • Deploy LLM services with token-by-token streaming output for real-time inference applications
  • Build multi-stage AI pipelines (e.g., text-to-image generation) by chaining Executors in a Flow
  • Scale inference workloads horizontally using replicas and shards with dynamic batching
  • Containerize and deploy ML services to Kubernetes or Docker Compose with a single command
  • Serve multimodal models (text, image, video, audio) with structured input/output via DocArray
  • Monitor and trace microservices with built-in Prometheus and OpenTelemetry integration

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Jina is a framework for building and deploying AI services that communicate via gRPC, HTTP, and WebSockets, with built-in support for scaling, containerization, and cloud deployment.

Yes, if you are building production AI services and want an opinionated, all-in-one framework that handles gRPC, containerization, and cloud deployment out of the box. The 32 dependencies and aging maintenance status (508 days since last release) are trade-offs: you get a complete ML serving stack but accept higher complexity and potential lag in updates. Not recommended if you prefer minimal dependencies or need cutting-edge feature velocity.

Install

jina on PyPI

pip

pip install jina

uv

uv add jina

poetry

poetry add jina

Installing jina

Before you install

Medium install friction due to 32 runtime dependencies including gRPC, OpenTelemetry, FastAPI, and Docker libraries. Maintenance status is aging—last release was 508 days ago—though the repository remains active with recent commits and substantial community engagement (21861 stars).

License in practice

Licensed under Apache 2.0 (permissive), allowing commercial use, modification, and distribution with minimal restrictions.

Quickstart

pip install jina

from jina import Executor, Deployment, requests
from docarray import DocList, BaseDoc

class MyDoc(BaseDoc):
    text: str

class MyExecutor(Executor):
    @requests
    def process(self, docs: DocList[MyDoc], **kwargs) -> DocList[MyDoc]:
        return docs

dep = Deployment(uses=MyExecutor, port=12345)
with dep:
    dep.block()

Requires Python 3.7 or later; gRPC and Docker dependencies may require system libraries on some platforms.

Verify before relying

  • Whether the aging maintenance status (508 days since last release) indicates planned long-term support or reduced active development
  • Performance characteristics and throughput benchmarks for the streaming and batching features mentioned
  • Compatibility and integration testing with specific ML frameworks beyond the examples shown

Package facts

License Apache 2.0 (permissive)
Python support not specified
Install friction medium — platform-specific wheel
Runtime dependencies 32 — uvloop, pyyaml, grpcio-health-checking, jcloud, opentelemetry-exporter-otlp, prometheus_client, protobuf, pydantic, urllib3, grpcio, opentelemetry-sdk, pathspec, opentelemetry-instrumentation-aiohttp-client, opentelemetry-exporter-prometheus, requests, websockets, grpcio-reflection, docarray, opentelemetry-exporter-otlp-proto-grpc, uvicorn, opentelemetry-instrumentation-fastapi, docker, aiofiles, fastapi, numpy, opentelemetry-instrumentation-grpc, aiohttp, filelock, python-multipart, jina-hubble-sdk
Maintenance aging — 508 days since the last release
Last repo commit
First released
Downloads 91,728/month — #13,505 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: jina-3.34.0-cp310-cp310-macosx_10_9_x86_64.whl; jina-3.34.0-cp310-cp310-macosx_11_0_arm64.whl; jina-3.34.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl; jina-3.34.0-cp311-cp311-macosx_10_9_x86_64.whl; jina-3.34.0-cp311-cp311-macosx_11_0_arm64.whl; jina-3.34.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl; jina-3.34.0-cp39-cp39-macosx_10_9_x86_64.whl; jina-3.34.0-cp39-cp39-macosx_11_0_arm64.whl; jina-3.34.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Keywords: jina, cloud-native, cross-modal, multimodal, neural-search, query, search, index, elastic, neural-network, encoding, embedding, serving, docker, container, image, video, audio, deep-learning, mlops

Development Status :: 5 - Production/StableEnvironment :: ConsoleIntended Audience :: DevelopersIntended Audience :: EducationIntended Audience :: Science/ResearchLicense :: OSI Approved :: Apache Software LicenseOperating System :: OS IndependentProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.7Programming Language :: Python :: 3.8Programming Language :: Python :: 3.9Programming Language :: Unix ShellTopic :: Database :: Database Engines/ServersTopic :: Internet :: WWW/HTTP :: Indexing/SearchTopic :: Multimedia :: VideoTopic :: Scientific/EngineeringTopic :: Scientific/Engineering :: Artificial IntelligenceTopic :: Scientific/Engineering :: Image RecognitionTopic :: Scientific/Engineering :: MathematicsTopic :: Software DevelopmentTopic :: Software Development :: LibrariesTopic :: Software Development :: Libraries :: Python Modules

Tags

grpc ai service frameworkllm serving with streamingmicroservice orchestration pythondocker kubernetes deployment frameworkmultimodal ai pipeline builderneural network serving frameworkcloud-native ml services
ml-servingmicroservicesgrpc-framework

More Software Development packages