You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the TTS endpoint should accept a "persona" parameter, this would be a text description to be sent to dialog-transformers
the dialog transformer would default to OpenAI and skipped if persona is not set
we probably should get more persona servers up with self hosted LLMs for this task before officially adopting this
examples for "persona":
"rewrite the text as if you were explaining it to a 5 year old"
"rewrite the text as if it was a angry old man speaking"
"Add more 'dude'ness to"
some output examples from the original PR:
utt="Quantum mechanics is a branch of physics that describes the behavior of particles at the smallest scales. " \
"It involves principles such as superposition, where particles can exist in multiple states simultaneously, " \
"and entanglement, where particles become connected and can influence each other's properties."print(lovecraftify(utt))
# Quantum mechanics unveils the eldritch secrets of the infinitesimal realm,# where particles, ensnared in the web of superposition, dwell in manifold states.# Through the dread phenomenon of entanglement, these entities intertwine,# their very essence entwined, shaping the fabric of reality.print(dudeify(utt))
# Quantum mechanics is like, the raddest branch of physics, dude.# It's all about particles at the tiniest scales, doing crazy stuff like# being in multiple states at once (superposition) and getting all connected and influencing each other (entanglement).print(eli5(utt))
# Quantum mechanics is like a special kind of science that helps us understand really tiny things.# It tells us that these tiny things can be in more than one place at the same time,# and they can also be connected to each other and affect each other's behavior.
The text was updated successfully, but these errors were encountered:
the TTS endpoint should accept a "persona" parameter, this would be a text description to be sent to dialog-transformers
the dialog transformer would default to OpenAI and skipped if persona is not set
we probably should get more persona servers up with self hosted LLMs for this task before officially adopting this
examples for "persona":
some output examples from the original PR:
The text was updated successfully, but these errors were encountered: