Skip to content

Commit

Permalink
Merge pull request #291 from adidoit/main
Browse files Browse the repository at this point in the history
Fix error with readme example - SyntaxError: positional argument follows keyword argument
  • Loading branch information
aconchillo authored Jul 15, 2024
2 parents f1410a1 + b2b97aa commit 9e3d87e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ async def main():
transport = DailyTransport(
room_url=...,
token=...,
"Bot Name",
DailyParams(audio_out_enabled=True))
bot_name="Bot Name",
params=DailyParams(audio_out_enabled=True))

# Use Eleven Labs for Text-to-Speech
tts = ElevenLabsTTSService(
Expand Down

0 comments on commit 9e3d87e

Please sign in to comment.