dvai-bridge
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>co.deepvoiceai</groupId>
<artifactId>dvai-bridge</artifactId>
<version>4.0.2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<!-- This module was also published with a richer model, Gradle metadata, -->
<!-- which should be used instead. Do not delete the following line which -->
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
<!-- that they should prefer consuming it instead. -->
<!-- do_not_remove: published-with-gradle-metadata -->
<modelVersion>4.0.0</modelVersion>
<groupId>co.deepvoiceai</groupId>
<artifactId>dvai-bridge</artifactId>
<version>4.0.2</version>
<packaging>aar</packaging>
<name>DVAI Bridge Android</name>
<description>DVAI Bridge Android SDK — embeds an OpenAI-compatible HTTP server inside your Android app process (127.0.0.1:38883, /v1/chat/completions, /v1/embeddings, /v1/models, SSE streaming). Any OpenAI client speaks to it (LangChain, autogen, crewai, the OpenAI SDK). Single 8-method Kotlin API surface fronting llama.cpp, MediaPipe / LiteRT-LM and bare-LiteRT backends; engine selected at runtime by device capability. Same OpenAI wire as the dvai-bridge family on iOS (CocoaPods), Flutter (pub.dev), React Native + Capacitor + browser + Node (npm), and .NET MAUI (NuGet) — cross-platform agentic apps stop being a per-platform porting exercise. Mirrors the iOS DVAIBridge SDK; pulls in the four cores (android-shared-core / android-llama-core / android-mediapipe-core / android-litert-core) transitively. Unlike Ollama / LM Studio / llama-server which the end user installs, this library ships INSIDE your app. Docs + architecture: https://bridge.deepvoiceai.co</description>
<url>https://github.com/dvai-global/dvai-bridge</url>
<inceptionYear>2026</inceptionYear>
<licenses>
<license>
<name>DVAI Bridge Community Licence v1.0</name>
<url>https://bridge.deepvoiceai.co/licensing</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>deepvoiceai</id>
<name>Deep Voice AI Limited</name>
<email>info@deepvoiceai.co</email>
<organization>Deep Voice AI Limited</organization>
<organizationUrl>https://deepvoiceai.co</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/dvai-global/dvai-bridge.git</connection>
<developerConnection>scm:git:ssh://github.com:dvai-global/dvai-bridge.git</developerConnection>
<url>https://github.com/dvai-global/dvai-bridge</url>
</scm>
<dependencies>
<dependency>
<groupId>co.deepvoiceai</groupId>
<artifactId>android-shared-core</artifactId>
<version>4.0.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>co.deepvoiceai</groupId>
<artifactId>android-llama-core</artifactId>
<version>4.0.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>co.deepvoiceai</groupId>
<artifactId>android-mediapipe-core</artifactId>
<version>4.0.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>co.deepvoiceai</groupId>
<artifactId>android-litert-core</artifactId>
<version>4.0.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>2.3.21</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>androidx.appcompat</groupId>
<artifactId>appcompat</artifactId>
<version>1.7.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-android</artifactId>
<version>1.10.2</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-serialization-json</artifactId>
<version>1.11.0</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.nimbusds</groupId>
<artifactId>nimbus-jose-jwt</artifactId>
<version>10.5</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.ktor</groupId>
<artifactId>ktor-server-core</artifactId>
<version>2.3.13</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.ktor</groupId>
<artifactId>ktor-server-cio</artifactId>
<version>2.3.13</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.ktor</groupId>
<artifactId>ktor-server-status-pages</artifactId>
<version>2.3.13</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.ktor</groupId>
<artifactId>ktor-client-core</artifactId>
<version>2.3.13</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.ktor</groupId>
<artifactId>ktor-client-cio</artifactId>
<version>2.3.13</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>