Top AI Repos — open-source AI, indexed and scored
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Top AI Repos tracks AI repositories on GitHub and answers two different questions about each one: is it moving right now, and would you bet a product on it.
Embeddable custom voice assistant for Android applications
| Date | Stars |
|---|---|
| 2026-07-24 | 279 |
| 2026-07-25 | 279 |
| 2026-07-28 | 279 |
| 2026-07-30 | 279 |
| 2026-08-06 | 279 |
Today
— stars today
This week
— stars this week
This month
— stars this month
Momentum
0.0
growth rate 0.00%/day
<h1 align="center">Aimybox voice assistant</h1>
<a href="https://aimybox.com"><img src="https://i.imgur.com/qyCxMmO.gif" align="right"></a>
<h4>Open source voice assistant built on top
of <a href="https://github.com/just-ai/aimybox-android-sdk">Aimybox SDK</a></h4>
<p>
<a href="https://twitter.com/intent/follow?screen_name=aimybox"><img alt="Twitter Follow" src="https://img.shields.io/twitter/follow/aimybox.svg?label=Follow%20on%20Twitter&style=popout"></a>
<a href="https://travis-ci.com/just-ai/aimybox-android-assistant"><img alt="Travis CI Build" src="https://api.travis-ci.org/just-ai/aimybox-android-assistant.svg?branch=master"></a>
<a href="https://search.maven.org/search?q=com.just-ai.aimybox"><img alt="Maven Central artifact" src="https://img.shields.io/maven-central/v/com.just-ai.aimybox/core?label=Download"></a>
### iOS version is available [here](https://github.com/just-ai/aimybox-ios-assistant)
#### Note that _components_ library was moved to [Aimybox Android SDK repository](https://github.com/just-ai/aimybox-android-sdk/tree/master/components).
# Key Features
* Provides ready to use **UI components** for fast building of your voice assistant app
* Modular and independent from speech-to-text, text-to-speech and NLU vendors
* Provides ready to use speech-to-text and text-to-speech implementations
like [Android platform speechkit](https://github.com/just-ai/aimybox-android-sdk/tree/master/google-platform-speechkit),
[Google Cloud speechkit](https://github.com/just-ai/aimybox-android-sdk/tree/master/google-cloud-speechkit),
[Houndify](https://github.com/just-ai/aimybox-android-sdk/tree/master/houndify-speechkit)
or [Snowboy wake word trigger](https://github.com/just-ai/aimybox-android-sdk/tree/master/snowboy-speechkit)
* Works with any NLU providers
like [Aimylogic](https://help.aimybox.com/en/article/aimylogic-webhook-5quhb1/),
[Rasa](https://github.com/just-ai/aimybox-android-sdk/tree/master/rasa-api)
or [Dialogflow](https://help.aimybox.com/en/article/dialogflow-agent-cqdvjn/)
* Fully customizable and extendable, you can connect any other speech-to-text, text-to-speech and
NLU services
* Open source under Apache 2.0, written in pure Kotlin
* Embeddable into any application or device running Android
* Voice skills logic and complexity is not limited by any restrictions
* Can interact with any local device services and local networks
# How to start using
Just clone this repository and try to build and run the app module 😉
If you want some details - there is how to do the same with your hands.
1. Create a new Android project with next dependencies in the _build.gradle_ file
```kotlin
android {
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
}
repositories {
mavenCentral()
}
dependencies {
implementation("com.just-ai.aimybox:core:$aimyboxVersion")
implementation("com.just-ai.aimybox:components:$aimyboxVersion")
}
```
_Use the latest version
_
2. Add one or more dependencies of third party speech-to-text and text-to-speech libraries. For
example
```kotlin
implementation("com.just-ai.aimybox:google-platform-speechkit:$aimyboxVersion")
```
3. Create a new project
in [Aimybox console](https://help.aimybox.com/en/article/introduction-to-aimybox-web-console-n49kfr/),
enable some voice skills and **copy your project's API key**.
4. Instantiate [Aimybox](https://github.com/just-ai/aimybox-android-sdk/blob/master/core/src/main/java/com/justai/aimybox/Aimybox.kt)
in
your [Application](https://github.com/just-ai/aimybox-android-assistant/blob/master/app/src/main/java/com/justai/aimybox/assistant/AimyboxApplication.kt)
class like that
```kotlin
class AimyboxApplication : Application(), AimyboxProvider {
companion object {
private const val AIExcerpt of 7,504 characters
Read on GitHubWould you bet a product on this? Bounded 0–100 and slow moving.
matched fp:bf58c47cf731e7d2, topic:speech-recognition, topic:voice-assistant, readme:speech-to-text