Razvalica

Razvalice is an alternative control server for Yandex Stations.

Software

Control server stack is OSS:

Hardware

  • Wailord serves both Quasar backend and NNs required.

  • Yandex Station Gen. 2 in Open Space.

How to change prompt?

# Connect to Quasar VM via Teleport
tsh ssh root@quasar

# Open Docker deployment
cd deployments/quasar

# Edit the "prompt.handlebars" file containing plain text prompt
nano prompt.handlebars

# Restart Quasar backend to apply changes
docker compose restart

# Commit your changes
git add prompt.handlebars
git commit -m "prompt: lesser the horniness, straightforward response on actions"

How to push notifications to TTS or to LLM?

There are two MQTT topics and a REST API for this:

# Topic for push to LLM - your text will be added as 
# { type: "system", text: "External event happened: '$text'" }
# Push to all
bus/services/alice/event
# Push to specific
bus/services/alice/DUID/event 

# Topic for push to TTS to all stations - your text will be pushed directly without LLM
# Push to all
bus/services/alice/event/raw
# Push to specific
bus/services/alice/DUID/event/raw

Also, REST API exists

Using MQTT is preferrable, but not required (just remember - I’m a dumb person and can change REST API at will)