Stephane PAQUET
Joined 5/29/2021
Stephane PAQUET said over 2 years ago on Reloadable Fixtures :
I still have issues in my project getting the id properly working. We are using UUIDs and not  integer increments in our Postgres database. Could that be the issue? I eventually have to create the id and pass it to the different models ... so not that convenient.

Any idea why?

Stephane PAQUET said about 2 years ago on LLM Context :
Have you tried https://github.com/andreibondarev/langchainrb or https://github.com/BoxcarsAI/boxcars for this type of application? Which one do you prefer?

Stephane PAQUET said almost 2 years ago on Direct Upload Instantly :
  Bashar , you're welcome

Stephane PAQUET said over 1 year ago on Text to Speech :
Improving the code for the setPreferredVoices function:

const preferredVoice = this.preferredVoices
  .map(name => voices.find(v => v.name === name))
  .find(Boolean);

if (preferredVoice) {
  Object.assign(this.utterance, {
    voice: preferredVoice,
    lang: preferredVoice.lang
  });
  console.log(`Selected voice: ${preferredVoice.name}`, `Selected lang: ${preferredVoice.lang}`);
}

it looks like Claude, Meta and O1-mini are all in agreement with this code ;-)

Stephane PAQUET said about 2 months ago :
My bad, I though I could drop markdown ;-)