Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🌿 Fern Regeneration -- February 4, 2025 #476

Merged
merged 2 commits into from
Feb 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Test
run: poetry run pytest .
env:
ELEVEN_API_KEY: ${{ secrets.TEST_API_KEY }}
ELEVENLABS_API_KEY: ${{ secrets.ELEVENLABS_API_KEY }}

publish:
needs: [compile, test]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ jobs:

- name: Test
env:
ELEVEN_API_KEY: ${{ secrets.TEST_API_KEY }}
ELEVENLABS_API_KEY: ${{ secrets.ELEVENLABS_API_KEY }}
run: |
poetry run pytest .
poetry run pytest .
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ from elevenlabs.client import ElevenLabs
from elevenlabs import play

client = ElevenLabs(
api_key="YOUR_API_KEY", # Defaults to ELEVEN_API_KEY or ELEVENLABS_API_KEY
api_key="YOUR_API_KEY", # Defaults ELEVENLABS_API_KEY
)

voice = client.clone(
Expand Down Expand Up @@ -141,7 +141,7 @@ from elevenlabs.client import ElevenLabs
from elevenlabs import stream

client = ElevenLabs(
api_key="YOUR_API_KEY", # Defaults to ELEVEN_API_KEY or ELEVENLABS_API_KEY
api_key="YOUR_API_KEY", # Defaults to ELEVENLABS_API_KEY
)

def text_stream():
Expand All @@ -168,7 +168,7 @@ import asyncio
from elevenlabs.client import AsyncElevenLabs

eleven = AsyncElevenLabs(
api_key="MY_API_KEY" # Defaults to ELEVEN_API_KEY or ELEVENLABS_API_KEY
api_key="MY_API_KEY" # Defaults to ELEVENLABS_API_KEY
)

async def print_models() -> None:
Expand Down
12 changes: 6 additions & 6 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@ name = "elevenlabs"

[tool.poetry]
name = "elevenlabs"
version = "1.50.6"
version = "1.50.7"
description = ""
readme = "README.md"
authors = []
keywords = []
license = "MIT"
repository = 'https://github.com/elevenlabs/elevenlabs-python'
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
Expand All @@ -32,6 +31,9 @@ packages = [
{ include = "elevenlabs", from = "src"}
]

[project.urls]
Repository = 'https://github.com/elevenlabs/elevenlabs-python'

[tool.poetry.dependencies]
python = "^3.8"
httpx = ">=0.21.2"
Expand Down
Loading