#vue#ai_companion#ai_vtuber#digital_life#grok_companion#live2d#moeru_ai#neuro_sama#neurosama#vrm#vtuber
Project AIRI lets you create and own your own AI virtual companion, like a cyber waifu or digital pet, that can chat, play games like Minecraft and Factorio, and interact with you anytime on many devices including browsers and mobiles. It uses advanced AI models like ChatGPT and Claude, supports voice chat, animations, and game playing, and is open source so you can customize or extend it. Unlike Neuro-sama, AIRI is open and lets you keep your digital companion alive anytime. This means you get a personal, interactive AI friend that fits your world and devices easily.
https://github.com/moeru-ai/airi
🚀 Вышел стабильный JavaScript движок от Google для Android
Новая стабильная библиотека Jetpack JavaScript Engine позволит разработчикам выполнять JS код в изолированной и ограниченной среде.
class MainActivity : ComponentActivity() {
// Теперь nullable, без lateinit
private var jsSandbox: JavaScriptSandbox? = null
private var jsIsolate: JavaScriptIsolate? = null
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
if (!JavaScriptSandbox.isSupported()) {
Log.e("JS", "JavaScriptSandbox не поддерживается")
return
}
lifecycleScope.launch {
// Создаём и сохраняем в nullable-поле
jsSandbox = JavaScriptSandbox
.createConnectedInstanceAsync(applicationContext)
.await()
jsIsolate = jsSandbox?.createIsolate()
// При выполнении гарантируем, что jsIsolate != null
val result: String = jsIsolate
?.evaluateJavaScriptAsync(JS_SCRIPT_SCRING)
?.await()
?: "Ошибка: isolate не инициализирован"
Log.d("JS", "Результат выполнения: $result")
}
}
override fun onDestroy() {
super.onDestroy()
// Закрываем только если не null
jsIsolate?.close()
jsSandbox?.close()
}
}
#jetpack#js