Skip to content

Releases: FelixWaweru/elevenlabs-node

elevenlabs-node@2.0.3

11 Jan 17:58
04067e5
Compare
Choose a tag to compare

Releases

  • elevenlabs-node@2.0.3

Description

  • Fixed Model ID description in documentation

⛰ Major Changes

  • Updated Readme to fix Model ID naming

elevenlabs-node@2.0.2

09 Jan 14:48
619f22c
Compare
Choose a tag to compare

Releases

  • elevenlabs-node@2.0.2

Description

  • NPM description fix

⛰ Major Changes

  • Updated Readme to fix broken assets in package description

elevenlabs-node@2.0.1

21 Nov 12:51
75fc9c8
Compare
Choose a tag to compare

Releases

  • elevenlabs-node@2.0.1

Description

  • Added signed builds

⛰ Major Changes

  • Added NPM provenance to automated build

elevenlabs-node@2.0.0

07 Nov 14:30
b4a55fc
Compare
Choose a tag to compare

Releases

Description

  • ElevenLabs_Node V2 available!

✨ New Features

  • Set up the API Key and Voice ID when importing the package
  • Added Speaker Boost to TTS
  • Added Style Exaggeration to TTS.
  • Improved textToSpeechStream to handle multiple response types i.e ArrayBuffer, Json or Stream
  • Improved Documentation to include code snippets and variable types

⛰ Major Changes

  • API Key and Voice ID are setup when importing the package
  • textToSpeech and textToSpeechStream functions no longer require you to pass the API Key on declaration
  • You can optionally pass the Voice ID to the textToSpeech and textToSpeechStream functions if you wish to use different IDs from the default
  • All Functions that require variables use an object i.e
// V2
textToSpeech({
    fileName: "audio.mp3",
    textInput: "mozzy is cool",
    voiceId: "21m00Tcm4TlvDq8ikWAM",
    stability: 0.5,
    similarityBoost: 0.5,
    modelId: "elevenlabs_multilingual_v2",
    style: 1,
    speakerBoost: true
  });

// Or

textToSpeech({
    "audio.mp3",
    "mozzy is cool",
    "21m00Tcm4TlvDq8ikWAM",
    0.5,
    0.5,
    "elevenlabs_multilingual_v2",
    1,
    true
  });
// V1
textToSpeech(
    "audio.mp3",
    "mozzy is cool",
    "21m00Tcm4TlvDq8ikWAM",
    0.5,
    0.5,
    "elevenlabs_multilingual_v2",
    1,
    true
  );

elevenlabs-node@1.2.0

07 Sep 09:57
4659c3f
Compare
Choose a tag to compare

Releases

  • elevenlabs-node@1.2.0

Description

  • Additional ElevenLabs API features now available!

Changes

elevenlabs-node@1.1.3

18 Jul 17:02
1cb3e89
Compare
Choose a tag to compare

Releases

  • elevenlabs-node@1.1.3

Description

  • Updated dependency

Changes

  • Updated the dependency from fs to fs-extra

elevenlabs-node@1.1.2

13 Jul 15:30
b8934f3
Compare
Choose a tag to compare

Releases

  • elevenlabs-node@1.1.2

Description

  • Fixed documentation links

Changes

elevenlabs-node@1.1.1

13 Jul 15:17
0f07995
Compare
Choose a tag to compare

Releases

  • elevenlabs-node@1.1.1

Description

  • Updated documentation

Changes

elevenlabs-node@1.1.0

23 May 13:42
6e7789f
Compare
Choose a tag to compare

Releases

  • elevenlabs-node@1.1.0

Description

Changes

  • added in model_id as a passed parameter(#13 )