Skip to content

Commit

Permalink
SDK regeneration
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Mar 4, 2024
1 parent 764ea33 commit 40757a2
Show file tree
Hide file tree
Showing 76 changed files with 5,313 additions and 3,693 deletions.
19 changes: 0 additions & 19 deletions CONTRIBUTING.md

This file was deleted.

723 changes: 337 additions & 386 deletions poetry.lock

Large diffs are not rendered by default.

9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "elevenlabs"
version = "v0.3.0b0"
version = "1.0.0b0"
description = ""
readme = "README.md"
authors = []
Expand All @@ -9,15 +9,16 @@ packages = [
]

[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
httpx = ">=0.21.2"
ipython = ">=7.0"
pydantic = ">= 1.9.2, < 2.5.0"
pydantic = ">= 1.9.2"
requests = ">=2.20"
typing_extensions = ">= 4.0.0"
websockets = ">=11.0"

[tool.poetry.dev-dependencies]
mypy = "0.971"
mypy = "^1.8.0"
pytest = "^7.4.0"

[build-system]
Expand Down
70 changes: 20 additions & 50 deletions src/elevenlabs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,38 +1,33 @@
# This file was auto-generated by Fern from our API Definition.

from .types import (
Accent,
AddProjectResponseModel,
AddPronunciationDictionaryResponseModel,
AddVoiceResponseModel,
Age,
AudioNativeCreateProjectResponseModel,
AudioNativeGetEmbedCodeResponseModel,
ChapterResponseModel,
ChapterResponseModelState,
ChapterSnapshotResponseModel,
ChapterSnapshotsResponseModel,
ChapterStatisticsResponseModel,
Currency,
ExtendedSubscriptionResponseModelCurrency,
ExtendedSubscriptionResponseModel,
FeedbackItem,
FineTuningResponseModel,
FinetunigState,
Gender,
FinetuningState,
GetChaptersResponseModel,
GetHistoryResponseModel,
GetProjectsResponseModel,
GetPronunciationDictionaryMetadataResponseModel,
GetVoicesResponseModel,
History,
HistoryItem,
HistoryItemState,
HttpValidationError,
InvoiceResponseModel,
InvoiceResponseModelCurrency,
ItemState,
LanguageResponseModel,
ManualVerificationFileResponseModel,
ManualVerificationResponseModel,
Model,
ModelResponse,
ProjectExtendedResponseModel,
ProjectResponseModel,
ProjectSnapshotResponseModel,
Expand All @@ -41,82 +36,54 @@
PronunciationDictionaryVersionLocatorDbModel,
RecordingResponseModel,
ReviewStatus,
Subscription,
SampleResponseModel,
State,
SubscriptionResponse,
SubscriptionStatus,
User,
UserResponse,
ValidationError,
ValidationErrorLocItem,
VerificationAttemptResponseModel,
VoiceCategory,
VoiceResponse,
VoiceSample,
VoiceSettings,
VoiceSharingResponseModel,
VoiceSharingState,
)
from .errors import UnprocessableEntityError
from .resources import (
audio_native,
history,
models,
projects,
pronunciation_dictionary,
samples,
text_to_speech,
user,
voices as voices_client,
)
from .environment import ElevenLabsEnvironment
from . import audio_native, history, models, projects, pronunciation_dictionary, samples, text_to_speech, user, voices
from .environment import ElevenLabsEnvironment
from .clone import clone
from .generate import generate
from .play import play, save, stream
from .voice import Voice, VoiceClone, voices

__all__ = [
"clone",
"generate",
"Model",
"play",
"save",
"stream",
"Voice",
"VoiceClone",
"voices_client",
"Accent",
"AddProjectResponseModel",
"AddPronunciationDictionaryResponseModel",
"AddVoiceResponseModel",
"Age",
"AudioNativeCreateProjectResponseModel",
"AudioNativeGetEmbedCodeResponseModel",
"ChapterResponseModel",
"ChapterResponseModelState",
"ChapterSnapshotResponseModel",
"ChapterSnapshotsResponseModel",
"ChapterStatisticsResponseModel",
"Currency",
"ElevenLabsEnvironment",
"ExtendedSubscriptionResponseModelCurrency",
"ExtendedSubscriptionResponseModel",
"FeedbackItem",
"FineTuningResponseModel",
"FinetunigState",
"Gender",
"FinetuningState",
"GetChaptersResponseModel",
"GetHistoryResponseModel",
"GetProjectsResponseModel",
"GetPronunciationDictionaryMetadataResponseModel",
"GetVoicesResponseModel",
"History",
"HistoryItem",
"HistoryItemState",
"HttpValidationError",
"InvoiceResponseModel",
"InvoiceResponseModelCurrency",
"ItemState",
"LanguageResponseModel",
"ManualVerificationFileResponseModel",
"ManualVerificationResponseModel",
"Model",
"ModelResponse",
"ProjectExtendedResponseModel",
"ProjectResponseModel",
"ProjectSnapshotResponseModel",
Expand All @@ -125,26 +92,29 @@
"PronunciationDictionaryVersionLocatorDbModel",
"RecordingResponseModel",
"ReviewStatus",
"Subscription",
"SampleResponseModel",
"State",
"SubscriptionResponse",
"SubscriptionStatus",
"UnprocessableEntityError",
"User",
"UserResponse",
"ValidationError",
"ValidationErrorLocItem",
"VerificationAttemptResponseModel",
"VoiceCategory",
"VoiceResponse",
"VoiceSample",
"VoiceSettings",
"VoiceSharingResponseModel",
"VoiceSharingState",
"audio_native",
"history",
"models",
"play",
"projects",
"pronunciation_dictionary",
"samples",
"save",
"stream",
"text_to_speech",
"user",
"voices",
Expand Down
File renamed without changes.
Loading

0 comments on commit 40757a2

Please sign in to comment.