Skip to content
This repository has been archived by the owner on Aug 5, 2024. It is now read-only.

Releases: FelixWaweru/elevenlabs-node

[email protected]

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

Releases

Description

  • Fixed Model ID description in documentation

⛰ Major Changes

  • Updated Readme to fix Model ID naming

[email protected]

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

Releases

Description

  • NPM description fix

⛰ Major Changes

  • Updated Readme to fix broken assets in package description

[email protected]

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

Releases

Description

  • Added signed builds

⛰ Major Changes

  • Added NPM provenance to automated build

[email protected]

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
  );

[email protected]

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

Releases

Description

  • Additional ElevenLabs API features now available!

Changes

[email protected]

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

Releases

Description

  • Updated dependency

Changes

  • Updated the dependency from fs to fs-extra

[email protected]

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

Releases

Description

  • Fixed documentation links

Changes

[email protected]

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

Releases

Description

  • Updated documentation

Changes

[email protected]

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

Releases

Description

Changes

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