{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "%load_ext autoreload\n", "%autoreload 2" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "True" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "from dotenv import load_dotenv\n", "\n", "load_dotenv()" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "import asyncio\n", "import re\n", "from pathlib import Path\n", "\n", "import pandas as pd\n", "\n", "from data.samples_to_split import GATSBY_2\n", "from src.builder import AudiobookBuilder\n", "from src.text_split_chain import SplitTextOutput" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "PANGRAM = \"The quick brown fox jumps over the lazy dog\"" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "RangeIndex: 554 entries, 0 to 553\n", "Data columns (total 14 columns):\n", " # Column Non-Null Count Dtype \n", "--- ------ -------------- ----- \n", " 0 voice_id 554 non-null object \n", " 1 name 554 non-null object \n", " 2 preview_url 554 non-null object \n", " 3 owner_id 0 non-null float64\n", " 4 permission_on_resource 534 non-null object \n", " 5 is_legacy 554 non-null bool \n", " 6 is_mixed 554 non-null bool \n", " 7 accent 547 non-null object \n", " 8 description 20 non-null object \n", " 9 age 552 non-null object \n", " 10 gender 554 non-null object \n", " 11 category 515 non-null object \n", " 12 language 204 non-null object \n", " 13 descriptive 523 non-null object \n", "dtypes: bool(2), float64(1), object(11)\n", "memory usage: 53.1+ KB\n" ] } ], "source": [ "voices = pd.read_csv(\"data/11labs_available_tts_voices.csv\")\n", "voices.info()" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [], "source": [ "for column in (\"age\", \"accent\", \"accent\", \"category\"):\n", " voices[column] = voices[column].str.lower().str.replace(\" \", \"_\").str.replace(\"-\", \"_\")" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "array([False])" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "voices[\"is_legacy\"].unique()" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "array([False])" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "voices[\"is_mixed\"].unique()" ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "array(['american', 'australian', 'british', 'transatlantic', 'swedish',\n", " 'indian', 'african', 'nigerian', nan, 'canadian', 'new_york',\n", " 'spanish', 'irish', 'german', 'queens_english', 'south_african',\n", " 'malay', 'russian', 'czech', 'us_northeast', 'french', 'tamil'],\n", " dtype=object)" ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], "source": [ "voices[\"accent\"].unique()" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "array(['expressive', 'confident', 'soft', 'upbeat', 'natural', 'warm',\n", " 'intense', 'articulate', 'seductive', 'friendly', 'casual', 'deep',\n", " 'authoritative', 'trustworthy', nan], dtype=object)" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "voices[\"description\"].unique()" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "array(['social_media', 'news', 'conversational', 'narration',\n", " 'characters', 'characters_animation', 'narrative_story', nan,\n", " 'advertisement', 'informative_educational', 'entertainment_tv',\n", " 'informative_educatio'], dtype=object)" ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "voices[\"category\"].unique()" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "array([nan, 'upbeat', 'pleasant', 'wise', 'formal', 'crisp', 'sassy',\n", " 'confident', 'modulated', 'calm', 'rough', 'deep', 'chill',\n", " 'professional', 'excited', 'robotic', 'mature', 'soft',\n", " 'meditative', 'casual', 'childish', 'intense', 'grumpy', 'serious',\n", " 'hyped', 'gentle', 'relaxed', 'husky', 'anxious', 'raspy',\n", " 'classy', 'neutral', 'cute', 'cheeky', 'whispery', 'motivational',\n", " 'sad'], dtype=object)" ] }, "execution_count": 12, "metadata": {}, "output_type": "execute_result" } ], "source": [ "voices[\"descriptive\"].unique()" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [], "source": [ "voices_to_consider = voices.query(\n", " \"gender in ('male', 'female') and category in ('conversational', 'characters') \"\n", " \"and accent in ('american', 'australian', 'british', 'canadian', 'new_york', 'transatlantic', 'queens_english')\"\n", ").copy()" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
genderfemalemale
age
middle_aged811
old96
young169
\n", "
" ], "text/plain": [ "gender female male\n", "age \n", "middle_aged 8 11\n", "old 9 6\n", "young 16 9" ] }, "execution_count": 14, "metadata": {}, "output_type": "execute_result" } ], "source": [ "grouping_columns = [\"age\", \"gender\"]\n", "voices_to_consider.groupby(grouping_columns)[\"voice_id\"].count().unstack(fill_value=0)" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
nameagegendercategoryaccent
voice_id
IKne3meq5aSn9XLyUdCDCharliemiddle_agedmaleconversationalaustralian
N2lVS1w4EtoT3dr4eOWOCallummiddle_agedmalecharacterstransatlantic
cgSgspJ2msm6clMCkdW9Jessicayoungfemaleconversationalamerican
cjVigY5qzO86Huf0OWalEricmiddle_agedmaleconversationalamerican
iP95p4xoKVk53GoZ742BChrismiddle_agedmaleconversationalamerican
1RVpBInY9YUYMLSUQReVCody McAvoyyoungmaleconversationalamerican
1btZhL2wthuOhUqvI0bBEmily - pleasant teen voiceyoungfemaleconversationalbritish
3lChuqcq4ONNgu6CB9lVYasminemiddle_agedfemaleconversationalamerican
8opUN7sGOKbyojnjvNdlAngelamiddle_agedfemaleconversationalamerican
9TwzC887zQyDD4yBthzDMeeramiddle_agedfemaleconversationalbritish
9zWqOD76EiuBEvkKAGwsLisa - High Pitchyoungfemaleconversationalamerican
B0gB9GG6iELYO5JxhdaBJacob - Teen and Popularyoungmaleconversationalamerican
BFUk567oZITYKwOqegEqRiley - loud and intensemiddle_agedmaleconversationalamerican
CD8K3AMGYCNPtdLAXDNblizzy - refined victorianoldfemaleconversationalbritish
CVRACyqNcQefTlxMj9btLamar Lincoln- Black Maleyoungmaleconversationalamerican
ENubmyyga6vXxGvbClcjAphrodite - pleasant and softspokenyoungfemaleconversationalamerican
EkuRA6XL9UbflTWEtNbQMiddle age Southern Malemiddle_agedmaleconversationalamerican
H61ermx0gHYPgQYw03E4Feliciayoungfemaleconversationalamerican
IFtWI8YHaBY8I7EB217uADAMyoungmaleconversationalamerican
IgbNJR6aN5tDqudJCnuDMatt Rogoyoungmaleconversationalamerican
IjnA9kwZJHJ20Fp7Vmy6Matthew - Casual American Manyoungmaleconversationalamerican
K5DRk4s8l1HFKsggS25uAdriannayoungfemaleconversationalaustralian
L4so9SudEsIYzE9j4qlRJomiddle_agedfemaleconversationalbritish
MP7UPhn7eVWqCGJGIh6QAaron Patrick - Fun-Upbeatmiddle_agedmaleconversationalamerican
MS8BX0O8omm5Ie6mL8v2Kay - 65 years oldoldfemaleconversationalbritish
NNYB2AxILPYTs53mGYijJennoldfemaleconversationalamerican
NWQswDS4aKfvBwYabvGTCălin OZoldmaleconversationalamerican
Nbttze9nhGhK1czblc6jJuniorDTyoungmaleconversationalamerican
OFIZL27ncTeMt1qVKEzHClarayoungfemaleconversationalamerican
PoHUWWWMHFrA8z7Q88puMirandayoungfemaleconversationalamerican
QT02s1mEPA02kfid1nTkDonald - American, 70 years oldoldmaleconversationalamerican
Qo4wB0XcrmHFXFyP38mcSasha - Soothing and Chillyoungfemaleconversationalamerican
RPEIZnKMqlQiZyZd1DaeChristopher - friendly guy next doormiddle_agedmaleconversationalamerican
RigKMMlryPP9jHT50JzlSybiloldfemaleconversationalaustralian
Tn2cyDUSRglJwDCiW4FPCamille - youthful, intelligent, and inspired ...middle_agedfemaleconversationalamerican
Tx7VLgfksXHVnoY6jDGUConversational Joe - A chatty casual voice, Br...middle_agedmaleconversationalbritish
U0gWepDCHKmmexbBxeSXAlicia - Black Femaleyoungfemaleconversationalamerican
WLKp2jV6nrS8aMkPPDROPaul - Australian Professional Presentermiddle_agedmaleconversationalaustralian
WY6rnttwR49OnkCKSEp5Henry - Slow Deliberateoldmaleconversationalamerican
XvsExC7ZMcLHrW9jIxWyTonia - Young with Vocal Fryyoungfemaleconversationalamerican
eAyDL3LKBhCxNF21PbuQMike - teacheroldmaleconversationalamerican
fQpAewJVtu0DoZkQ58bWOld man with a soft voiceoldmaleconversationalamerican
iF50bA7r44CX1fJy2usAMargaret - British Ministeroldfemaleconversationalbritish
kkLI93Bj55ThFTv6zs13Mini Misa - Child-like, Cute, Friendly for Con...youngfemaleconversationalamerican
kpiE5HkOcaC7zMRavpg1Seanyoungmaleconversationalamerican
lNABL6eI3BpPT8BvSqjKJacqui Griffinoldfemaleconversationalaustralian
lXiTM9o7sfY7DaHQXALnAva - Old And Deepoldfemaleconversationalamerican
ll4WlnkgyMC3yM7qiFTpFemale YouTube Narratoryoungfemaleconversationalamerican
r5Al4oLBZaQ3SY9ncbVGKass - Energetic, Casual, Engagingmiddle_agedmaleconversationalamerican
rfkTsdZrVWEVhDycUYn9Shelbyyoungfemaleconversationalbritish
teAOBFSeynXfbyNgq6EcAlly - Curious and Chillyoungfemaleconversationalamerican
tpFVjZdYBvOaWaUIRHRzVictoria Lennonyoungfemaleconversationalamerican
v921MVi0ixhdc1CW2WxFAspexia - Grand & Clearoldfemaleconversationalamerican
xSI29a9HAKdsWv3idXSNAliyoungmaleconversationalamerican
yu4eXTP5aod8KAQzTI3TClaudia - Credible, Competent & Authenticmiddle_agedfemaleconversationalamerican
yxHHj4hKJKKTyvUpnbdsHeather - Mature British ladyoldfemaleconversationalbritish
z3CSZSXDkv7fvwqfOrZNBryanoldmaleconversationalamerican
wL9XWq1lRS2ZxgYArGOmFreya - Concise and Wellspokenmiddle_agedfemaleconversationalamerican
GUM0hIboeFNpFw8Le7kYAmbermiddle_agedfemaleconversationalamerican
\n", "
" ], "text/plain": [ " name \\\n", "voice_id \n", "IKne3meq5aSn9XLyUdCD Charlie \n", "N2lVS1w4EtoT3dr4eOWO Callum \n", "cgSgspJ2msm6clMCkdW9 Jessica \n", "cjVigY5qzO86Huf0OWal Eric \n", "iP95p4xoKVk53GoZ742B Chris \n", "1RVpBInY9YUYMLSUQReV Cody McAvoy \n", "1btZhL2wthuOhUqvI0bB Emily - pleasant teen voice \n", "3lChuqcq4ONNgu6CB9lV Yasmine \n", "8opUN7sGOKbyojnjvNdl Angela \n", "9TwzC887zQyDD4yBthzD Meera \n", "9zWqOD76EiuBEvkKAGws Lisa - High Pitch \n", "B0gB9GG6iELYO5JxhdaB Jacob - Teen and Popular \n", "BFUk567oZITYKwOqegEq Riley - loud and intense \n", "CD8K3AMGYCNPtdLAXDNb lizzy - refined victorian \n", "CVRACyqNcQefTlxMj9bt Lamar Lincoln- Black Male \n", "ENubmyyga6vXxGvbClcj Aphrodite - pleasant and softspoken \n", "EkuRA6XL9UbflTWEtNbQ Middle age Southern Male \n", "H61ermx0gHYPgQYw03E4 Felicia \n", "IFtWI8YHaBY8I7EB217u ADAM \n", "IgbNJR6aN5tDqudJCnuD Matt Rogo \n", "IjnA9kwZJHJ20Fp7Vmy6 Matthew - Casual American Man \n", "K5DRk4s8l1HFKsggS25u Adrianna \n", "L4so9SudEsIYzE9j4qlR Jo \n", "MP7UPhn7eVWqCGJGIh6Q Aaron Patrick - Fun-Upbeat \n", "MS8BX0O8omm5Ie6mL8v2 Kay - 65 years old \n", "NNYB2AxILPYTs53mGYij Jenn \n", "NWQswDS4aKfvBwYabvGT Călin OZ \n", "Nbttze9nhGhK1czblc6j JuniorDT \n", "OFIZL27ncTeMt1qVKEzH Clara \n", "PoHUWWWMHFrA8z7Q88pu Miranda \n", "QT02s1mEPA02kfid1nTk Donald - American, 70 years old \n", "Qo4wB0XcrmHFXFyP38mc Sasha - Soothing and Chill \n", "RPEIZnKMqlQiZyZd1Dae Christopher - friendly guy next door \n", "RigKMMlryPP9jHT50Jzl Sybil \n", "Tn2cyDUSRglJwDCiW4FP Camille - youthful, intelligent, and inspired ... \n", "Tx7VLgfksXHVnoY6jDGU Conversational Joe - A chatty casual voice, Br... \n", "U0gWepDCHKmmexbBxeSX Alicia - Black Female \n", "WLKp2jV6nrS8aMkPPDRO Paul - Australian Professional Presenter \n", "WY6rnttwR49OnkCKSEp5 Henry - Slow Deliberate \n", "XvsExC7ZMcLHrW9jIxWy Tonia - Young with Vocal Fry \n", "eAyDL3LKBhCxNF21PbuQ Mike - teacher \n", "fQpAewJVtu0DoZkQ58bW Old man with a soft voice \n", "iF50bA7r44CX1fJy2usA Margaret - British Minister \n", "kkLI93Bj55ThFTv6zs13 Mini Misa - Child-like, Cute, Friendly for Con... \n", "kpiE5HkOcaC7zMRavpg1 Sean \n", "lNABL6eI3BpPT8BvSqjK Jacqui Griffin \n", "lXiTM9o7sfY7DaHQXALn Ava - Old And Deep \n", "ll4WlnkgyMC3yM7qiFTp Female YouTube Narrator \n", "r5Al4oLBZaQ3SY9ncbVG Kass - Energetic, Casual, Engaging \n", "rfkTsdZrVWEVhDycUYn9 Shelby \n", "teAOBFSeynXfbyNgq6Ec Ally - Curious and Chill \n", "tpFVjZdYBvOaWaUIRHRz Victoria Lennon \n", "v921MVi0ixhdc1CW2WxF Aspexia - Grand & Clear \n", "xSI29a9HAKdsWv3idXSN Ali \n", "yu4eXTP5aod8KAQzTI3T Claudia - Credible, Competent & Authentic \n", "yxHHj4hKJKKTyvUpnbds Heather - Mature British lady \n", "z3CSZSXDkv7fvwqfOrZN Bryan \n", "wL9XWq1lRS2ZxgYArGOm Freya - Concise and Wellspoken \n", "GUM0hIboeFNpFw8Le7kY Amber \n", "\n", " age gender category accent \n", "voice_id \n", "IKne3meq5aSn9XLyUdCD middle_aged male conversational australian \n", "N2lVS1w4EtoT3dr4eOWO middle_aged male characters transatlantic \n", "cgSgspJ2msm6clMCkdW9 young female conversational american \n", "cjVigY5qzO86Huf0OWal middle_aged male conversational american \n", "iP95p4xoKVk53GoZ742B middle_aged male conversational american \n", "1RVpBInY9YUYMLSUQReV young male conversational american \n", "1btZhL2wthuOhUqvI0bB young female conversational british \n", "3lChuqcq4ONNgu6CB9lV middle_aged female conversational american \n", "8opUN7sGOKbyojnjvNdl middle_aged female conversational american \n", "9TwzC887zQyDD4yBthzD middle_aged female conversational british \n", "9zWqOD76EiuBEvkKAGws young female conversational american \n", "B0gB9GG6iELYO5JxhdaB young male conversational american \n", "BFUk567oZITYKwOqegEq middle_aged male conversational american \n", "CD8K3AMGYCNPtdLAXDNb old female conversational british \n", "CVRACyqNcQefTlxMj9bt young male conversational american \n", "ENubmyyga6vXxGvbClcj young female conversational american \n", "EkuRA6XL9UbflTWEtNbQ middle_aged male conversational american \n", "H61ermx0gHYPgQYw03E4 young female conversational american \n", "IFtWI8YHaBY8I7EB217u young male conversational american \n", "IgbNJR6aN5tDqudJCnuD young male conversational american \n", "IjnA9kwZJHJ20Fp7Vmy6 young male conversational american \n", "K5DRk4s8l1HFKsggS25u young female conversational australian \n", "L4so9SudEsIYzE9j4qlR middle_aged female conversational british \n", "MP7UPhn7eVWqCGJGIh6Q middle_aged male conversational american \n", "MS8BX0O8omm5Ie6mL8v2 old female conversational british \n", "NNYB2AxILPYTs53mGYij old female conversational american \n", "NWQswDS4aKfvBwYabvGT old male conversational american \n", "Nbttze9nhGhK1czblc6j young male conversational american \n", "OFIZL27ncTeMt1qVKEzH young female conversational american \n", "PoHUWWWMHFrA8z7Q88pu young female conversational american \n", "QT02s1mEPA02kfid1nTk old male conversational american \n", "Qo4wB0XcrmHFXFyP38mc young female conversational american \n", "RPEIZnKMqlQiZyZd1Dae middle_aged male conversational american \n", "RigKMMlryPP9jHT50Jzl old female conversational australian \n", "Tn2cyDUSRglJwDCiW4FP middle_aged female conversational american \n", "Tx7VLgfksXHVnoY6jDGU middle_aged male conversational british \n", "U0gWepDCHKmmexbBxeSX young female conversational american \n", "WLKp2jV6nrS8aMkPPDRO middle_aged male conversational australian \n", "WY6rnttwR49OnkCKSEp5 old male conversational american \n", "XvsExC7ZMcLHrW9jIxWy young female conversational american \n", "eAyDL3LKBhCxNF21PbuQ old male conversational american \n", "fQpAewJVtu0DoZkQ58bW old male conversational american \n", "iF50bA7r44CX1fJy2usA old female conversational british \n", "kkLI93Bj55ThFTv6zs13 young female conversational american \n", "kpiE5HkOcaC7zMRavpg1 young male conversational american \n", "lNABL6eI3BpPT8BvSqjK old female conversational australian \n", "lXiTM9o7sfY7DaHQXALn old female conversational american \n", "ll4WlnkgyMC3yM7qiFTp young female conversational american \n", "r5Al4oLBZaQ3SY9ncbVG middle_aged male conversational american \n", "rfkTsdZrVWEVhDycUYn9 young female conversational british \n", "teAOBFSeynXfbyNgq6Ec young female conversational american \n", "tpFVjZdYBvOaWaUIRHRz young female conversational american \n", "v921MVi0ixhdc1CW2WxF old female conversational american \n", "xSI29a9HAKdsWv3idXSN young male conversational american \n", "yu4eXTP5aod8KAQzTI3T middle_aged female conversational american \n", "yxHHj4hKJKKTyvUpnbds old female conversational british \n", "z3CSZSXDkv7fvwqfOrZN old male conversational american \n", "wL9XWq1lRS2ZxgYArGOm middle_aged female conversational american \n", "GUM0hIboeFNpFw8Le7kY middle_aged female conversational american " ] }, "execution_count": 15, "metadata": {}, "output_type": "execute_result" } ], "source": [ "voices_to_consider[[\"voice_id\", \"name\", \"age\", \"gender\", \"category\", \"accent\"]].set_index(\"voice_id\")" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [], "source": [ "voices_to_consider[[\"voice_id\", \"name\", \"age\", \"gender\", \"category\", \"accent\"]].to_excel(\"voices_to_consider.xlsx\", index=False)" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "2024-10-11 06:27:11,096 [INFO] audio-books (select_voice_chain.py): reading voice data from: \"data/11labs_available_tts_voices.csv\"\n" ] } ], "source": [ "builder = AudiobookBuilder()" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "2024-10-11 06:27:11,188 [INFO] audio-books (lc_callbacks.py): call to gpt-4o with 2 messages:\n", "{'role': 'system', 'content': 'you are provided with the book sample.\\nplease rewrite it and insert xml tags indicating character to whom current phrase belongs.\\nfor example: I looked at herWhat are you looking at?\\n\\nNotes:\\n- sometimes narrator is one of characters taking part in the action.\\nin this case use narrator\\'s name (if available) instead of \"narrator\"\\n- if it\\'s impossible to identify character name from the text provided, use codes \"c1\", \"c2\", etc,\\nwhere \"c\" prefix means character and number is used to enumerate unknown characters\\n- all quotes of direct speech must be attributed to characters, for example:\\n“She’s a nice girl,”said Tom after a moment.\\nmind that sometimes narrator could also be a character.\\n- use ALL available context to determine the character.\\nsometimes the character name becomes clear from the following phrases\\n- DO NOT include in your response anything except for the original text with character xml tags!!!\\n'}\n", "{'role': 'human', 'content': 'Here is the book sample:\\n---\\nInside, the crimson room bloomed with light. Tom and Miss Baker sat at\\neither end of the long couch and she read aloud to him from the\\nSaturday Evening Post—the words, murmurous and uninflected, running\\ntogether in a soothing tune. The lamplight, bright on his boots and\\ndull on the autumn-leaf yellow of her hair, glinted along the paper as\\nshe turned a page with a flutter of slender muscles in her arms.\\n\\nWhen we came in she held us silent for a moment with a lifted hand.\\n\\n“To be continued,” she said, tossing the magazine on the table, “in\\nour very next issue.”\\n\\nHer body asserted itself with a restless movement of her knee, and she\\nstood up.\\n\\n“Ten o’clock,” she remarked, apparently finding the time on the\\nceiling. “Time for this good girl to go to bed.”\\n\\n“Jordan’s going to play in the tournament tomorrow,” explained Daisy,\\n“over at Westchester.”\\n\\n“Oh—you’re Jordan Baker.”\\n\\nI knew now why her face was familiar—its pleasing contemptuous\\nexpression had looked out at me from many rotogravure pictures of the\\nsporting life at Asheville and Hot Springs and Palm Beach. I had heard\\nsome story of her too, a critical, unpleasant story, but what it was I\\nhad forgotten long ago.\\n\\n“Good night,” she said softly. “Wake me at eight, won’t you.”\\n\\n“If you’ll get up.”\\n\\n“I will. Good night, Mr. Carraway. See you anon.”\\n\\n“Of course you will,” confirmed Daisy. “In fact I think I’ll arrange a\\nmarriage. Come over often, Nick, and I’ll sort of—oh—fling you\\ntogether. You know—lock you up accidentally in linen closets and push\\nyou out to sea in a boat, and all that sort of thing—”\\n\\n“Good night,” called Miss Baker from the stairs. “I haven’t heard a\\nword.”\\n\\n“She’s a nice girl,” said Tom after a moment. “They oughtn’t to let\\nher run around the country this way.”\\n\\n“Who oughtn’t to?” inquired Daisy coldly.\\n\\n“Her family.”\\n\\n“Her family is one aunt about a thousand years old. Besides, Nick’s\\ngoing to look after her, aren’t you, Nick? She’s going to spend lots\\nof weekends out here this summer. I think the home influence will be\\nvery good for her.”\\n\\nDaisy and Tom looked at each other for a moment in silence.\\n\\n“Is she from New York?” I asked quickly.\\n\\n“From Louisville. Our white girlhood was passed together there. Our\\nbeautiful white—”\\n\\n“Did you give Nick a little heart to heart talk on the veranda?”\\ndemanded Tom suddenly.\\n\\n“Did I?” She looked at me. “I can’t seem to remember, but I think we\\ntalked about the Nordic race. Yes, I’m sure we did. It sort of crept\\nup on us and first thing you know—”\\n\\n“Don’t believe everything you hear, Nick,” he advised me.\\n'}\n", "2024-10-11 06:27:38,116 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:38,131 [INFO] audio-books (lc_callbacks.py): raw LLM response: \"Inside, the crimson room bloomed with light. Tom and Miss Baker sat at either end of the long couch and she read aloud to him from the Saturday Evening Post—the words, murmurous and uninflected, running together in a soothing tune. The lamplight, bright on his boots and dull on the autumn-leaf yellow of her hair, glinted along the paper as she turned a page with a flutter of slender muscles in her arms.\n", "\n", "When we came in she held us silent for a moment with a lifted hand.\n", "\n", "“To be continued,” she said, tossing the magazine on the table, “in our very next issue.”\n", "\n", "Her body asserted itself with a restless movement of her knee, and she stood up.\n", "\n", "“Ten o’clock,” she remarked, apparently finding the time on the ceiling. “Time for this good girl to go to bed.”\n", "\n", "“Jordan’s going to play in the tournament tomorrow,” explained Daisy, “over at Westchester.”\n", "\n", "“Oh—you’re Jordan Baker.”\n", "\n", "I knew now why her face was familiar—its pleasing contemptuous expression had looked out at me from many rotogravure pictures of the sporting life at Asheville and Hot Springs and Palm Beach. I had heard some story of her too, a critical, unpleasant story, but what it was I had forgotten long ago.\n", "\n", "“Good night,” she said softly. “Wake me at eight, won’t you.”\n", "\n", "“If you’ll get up.”\n", "\n", "“I will. Good night, Mr. Carraway. See you anon.”\n", "\n", "“Of course you will,” confirmed Daisy. “In fact I think I’ll arrange a marriage. Come over often, Nick, and I’ll sort of—oh—fling you together. You know—lock you up accidentally in linen closets and push you out to sea in a boat, and all that sort of thing—”\n", "\n", "“Good night,” called Miss Baker from the stairs. “I haven’t heard a word.”\n", "\n", "“She’s a nice girl,” said Tom after a moment. “They oughtn’t to let her run around the country this way.”\n", "\n", "“Who oughtn’t to?” inquired Daisy coldly.\n", "\n", "“Her family.”\n", "\n", "“Her family is one aunt about a thousand years old. Besides, Nick’s going to look after her, aren’t you, Nick? She’s going to spend lots of weekends out here this summer. I think the home influence will be very good for her.”\n", "\n", "Daisy and Tom looked at each other for a moment in silence.\n", "\n", "“Is she from New York?” I asked quickly.\n", "\n", "“From Louisville. Our white girlhood was passed together there. Our beautiful white—”\n", "\n", "“Did you give Nick a little heart to heart talk on the veranda?” demanded Tom suddenly.\n", "\n", "“Did I?” She looked at me. “I can’t seem to remember, but I think we talked about the Nordic race. Yes, I’m sure we did. It sort of crept up on us and first thing you know—”\n", "\n", "“Don’t believe everything you hear, Nick,” he advised me.\"\n" ] } ], "source": [ "text_split_2 = await builder.split_text(GATSBY_2)" ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Inside, the crimson room bloomed with light. Tom and Miss Baker sat at either end of the long couch and she read aloud to him from the Saturday Evening Post—the words, murmurous and uninflected, running together in a soothing tune. The lamplight, bright on his boots and dull on the autumn-leaf yellow of her hair, glinted along the paper as she turned a page with a flutter of slender muscles in her arms.\n", "\n", "When we came in she held us silent for a moment with a lifted hand.\n", "\n", "“To be continued,” she said, tossing the magazine on the table, “in our very next issue.”\n", "\n", "Her body asserted itself with a restless movement of her knee, and she stood up.\n", "\n", "“Ten o’clock,” she remarked, apparently finding the time on the ceiling. “Time for this good girl to go to bed.”\n", "\n", "“Jordan’s going to play in the tournament tomorrow,” explained Daisy, “over at Westchester.”\n", "\n", "“Oh—you’re Jordan Baker.”\n", "\n", "I knew now why her face was familiar—its pleasing contemptuous expression had looked out at me from many rotogravure pictures of the sporting life at Asheville and Hot Springs and Palm Beach. I had heard some story of her too, a critical, unpleasant story, but what it was I had forgotten long ago.\n", "\n", "“Good night,” she said softly. “Wake me at eight, won’t you.”\n", "\n", "“If you’ll get up.”\n", "\n", "“I will. Good night, Mr. Carraway. See you anon.”\n", "\n", "“Of course you will,” confirmed Daisy. “In fact I think I’ll arrange a marriage. Come over often, Nick, and I’ll sort of—oh—fling you together. You know—lock you up accidentally in linen closets and push you out to sea in a boat, and all that sort of thing—”\n", "\n", "“Good night,” called Miss Baker from the stairs. “I haven’t heard a word.”\n", "\n", "“She’s a nice girl,” said Tom after a moment. “They oughtn’t to let her run around the country this way.”\n", "\n", "“Who oughtn’t to?” inquired Daisy coldly.\n", "\n", "“Her family.”\n", "\n", "“Her family is one aunt about a thousand years old. Besides, Nick’s going to look after her, aren’t you, Nick? She’s going to spend lots of weekends out here this summer. I think the home influence will be very good for her.”\n", "\n", "Daisy and Tom looked at each other for a moment in silence.\n", "\n", "“Is she from New York?” I asked quickly.\n", "\n", "“From Louisville. Our white girlhood was passed together there. Our beautiful white—”\n", "\n", "“Did you give Nick a little heart to heart talk on the veranda?” demanded Tom suddenly.\n", "\n", "“Did I?” She looked at me. “I can’t seem to remember, but I think we talked about the Nordic race. Yes, I’m sure we did. It sort of crept up on us and first thing you know—”\n", "\n", "“Don’t believe everything you hear, Nick,” he advised me.\n" ] } ], "source": [ "print(text_split_2.text_annotated)" ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [], "source": [ "def extract_character_phrases(annotated_text: str, character: str) -> SplitTextOutput:\n", " pattern = re.compile(fr\"<{character}>.*\")\n", " all_phrases = \"\"\n", " for line in annotated_text.splitlines():\n", " for phrase in pattern.findall(line):\n", " all_phrases += f\"{phrase}\\n\\n\"\n", " return SplitTextOutput(\n", " text_raw=all_phrases.replace(f\"<{character}>\", \"\").replace(f\"\", \"\"),\n", " text_annotated=all_phrases,\n", " )" ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "“She’s a nice girl,” said Tom after a moment. “They oughtn’t to let her run around the country this way.”\n", "\n", "“Her family.”\n", "\n", "“Did you give Nick a little heart to heart talk on the veranda?”\n", "\n", "“Don’t believe everything you hear, Nick,”\n", "\n", "\n" ] } ], "source": [ "male_character = \"Tom\"\n", "male_phrases = extract_character_phrases(text_split_2.text_annotated, male_character)\n", "print(male_phrases.text_raw)" ] }, { "cell_type": "code", "execution_count": 21, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "“To be continued,” she said, tossing the magazine on the table, “in our very next issue.”\n", "\n", "“Ten o’clock,” she remarked, apparently finding the time on the ceiling. “Time for this good girl to go to bed.”\n", "\n", "“Good night,” she said softly. “Wake me at eight, won’t you.”\n", "\n", "“I will. Good night, Mr. Carraway. See you anon.”\n", "\n", "“Good night,” called Miss Baker from the stairs. “I haven’t heard a word.”\n", "\n", "\n" ] } ], "source": [ "jordan_phrases = extract_character_phrases(text_split_2.text_annotated, \"Jordan\")\n", "print(jordan_phrases.text_annotated)" ] }, { "cell_type": "code", "execution_count": 37, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "“Jordan’s going to play in the tournament tomorrow,” explained Daisy, “over at Westchester.”\n", "\n", "“If you’ll get up.”\n", "\n", "“Of course you will,” confirmed Daisy. “In fact I think I’ll arrange a marriage. Come over often, Nick, and I’ll sort of—oh—fling you together. You know—lock you up accidentally in linen closets and push you out to sea in a boat, and all that sort of thing—”\n", "\n", "“Who oughtn’t to?”\n", "\n", "“Her family is one aunt about a thousand years old. Besides, Nick’s going to look after her, aren’t you, Nick? She’s going to spend lots of weekends out here this summer. I think the home influence will be very good for her.”\n", "\n", "“From Louisville. Our white girlhood was passed together there. Our beautiful white—”\n", "\n", "“Did I?” She looked at me. “I can’t seem to remember, but I think we talked about the Nordic race. Yes, I’m sure we did. It sort of crept up on us and first thing you know—”\n", "\n", "\n" ] } ], "source": [ "print(daisy_phrases.text_raw)" ] }, { "cell_type": "code", "execution_count": 22, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "“Jordan’s going to play in the tournament tomorrow,” explained Daisy, “over at Westchester.”\n", "\n", "“If you’ll get up.”\n", "\n", "“Of course you will,” confirmed Daisy. “In fact I think I’ll arrange a marriage. Come over often, Nick, and I’ll sort of—oh—fling you together. You know—lock you up accidentally in linen closets and push you out to sea in a boat, and all that sort of thing—”\n", "\n", "“Who oughtn’t to?”\n", "\n", "“Her family is one aunt about a thousand years old. Besides, Nick’s going to look after her, aren’t you, Nick? She’s going to spend lots of weekends out here this summer. I think the home influence will be very good for her.”\n", "\n", "“From Louisville. Our white girlhood was passed together there. Our beautiful white—”\n", "\n", "“Did I?” She looked at me. “I can’t seem to remember, but I think we talked about the Nordic race. Yes, I’m sure we did. It sort of crept up on us and first thing you know—”\n", "\n", "\n" ] } ], "source": [ "daisy_phrases = extract_character_phrases(text_split_2.text_annotated, \"Daisy\")\n", "print(daisy_phrases.text_annotated)" ] }, { "cell_type": "code", "execution_count": 23, "metadata": {}, "outputs": [], "source": [ "female_character = \"Daisy\"\n", "female_phrases = daisy_phrases" ] }, { "cell_type": "code", "execution_count": 24, "metadata": {}, "outputs": [], "source": [ "async def tts_character_phrases_using_voice(\n", " audiobook_builder: AudiobookBuilder,\n", " *,\n", " split_text: SplitTextOutput,\n", " character: str,\n", " voice: str,\n", ") -> Path:\n", " out_path = Path(\"data\") / \"books\" / f\"{voice}.wav\"\n", " if out_path.exists():\n", " return out_path\n", " return await audiobook_builder.audio_generator.generate_audio(\n", " text_split=split_text,\n", " character_to_voice={character: voice, \"narrator\": voice},\n", " out_path=out_path,\n", " )" ] }, { "cell_type": "code", "execution_count": 25, "metadata": {}, "outputs": [], "source": [ "for voice_id in voices_to_consider.query(\"gender == 'male'\")[\"voice_id\"].to_list():\n", " await tts_character_phrases_using_voice(\n", " builder,\n", " split_text=male_phrases,\n", " character=male_character,\n", " voice=voice_id,\n", " )" ] }, { "cell_type": "code", "execution_count": 26, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ "2024-10-11 06:27:39,854 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:39,856 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

if you’ll get up.

', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:27:39,969 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:39,971 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Who oughtn’t to?\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:27:40,000 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:40,002 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Over at Westchester.

', 'params': {'stability': 0.5, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:27:40,007 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:40,008 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': 'of course you will,', 'params': {'stability': 0.3, 'similarity_boost': 0.8, 'style': 0.9}}\n", "2024-10-11 06:27:40,199 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:40,201 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

explained daisy,

', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:27:40,339 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:40,358 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n She looked at me.\\n \\n

\\n
', 'params': {'stability': 0.9, 'similarity_boost': 0.4, 'style': 0.2}}\n", "2024-10-11 06:27:40,359 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:40,361 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Did I?

', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:27:40,439 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:40,442 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Confirmed, Daisy.\\n \\n

\\n
', 'params': {'stability': 0.4, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:27:40,522 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:40,524 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

from louisville. our white girlhood was passed together there. our beautiful white—

', 'params': {'stability': 0.3, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:27:40,569 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:40,571 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Jordan\\'s going to play in the tournament tomorrow,\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.6, 'style': 0.7}}\n", "2024-10-11 06:27:41,593 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:41,595 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Her family is one aunt about a thousand years old. Besides, Nick’s going to look after her, aren’t you, Nick? She’s going to spend lots of weekends out here this summer. I think the home influence will be very good for her.

', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.5}}\n", "2024-10-11 06:27:41,774 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:41,776 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n I can\\'t seem to remember, \\n but I think we talked about the Nordic race.\\n \\n \\n Yes, \\n I\\'m sure we did. \\n \\n \\n It sort of crept up on us \\n and first thing you know—\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:27:41,915 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:41,917 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n In fact, I think I\\'ll arrange a marriage.\\n \\n \\n Come over often, Nick, and I\\'ll sort of—oh—fling you together.\\n \\n \\n You know—lock you up accidentally in linen closets and push you out to sea in a boat, and all that sort of thing—\\n \\n

\\n
', 'params': {'stability': 0.4, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:27:41,918 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'OFIZL27ncTeMt1qVKEzH', 'text': '\\n

\\n \\n Jordan\\'s going to play in the tournament tomorrow,\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.6, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:27:41,919 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'OFIZL27ncTeMt1qVKEzH', 'text': '

explained daisy,

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:27:41,920 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'OFIZL27ncTeMt1qVKEzH', 'text': '

Over at Westchester.

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:27:41,921 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'OFIZL27ncTeMt1qVKEzH', 'text': '

if you’ll get up.

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:27:41,922 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'OFIZL27ncTeMt1qVKEzH', 'text': 'of course you will,', 'voice_settings': VoiceSettings(stability=0.3, similarity_boost=0.8, style=0.9, use_speaker_boost=None)}\n", "2024-10-11 06:27:41,923 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'OFIZL27ncTeMt1qVKEzH', 'text': '\\n

\\n \\n Confirmed, Daisy.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:27:41,924 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'OFIZL27ncTeMt1qVKEzH', 'text': '\\n

\\n \\n In fact, I think I\\'ll arrange a marriage.\\n \\n \\n Come over often, Nick, and I\\'ll sort of—oh—fling you together.\\n \\n \\n You know—lock you up accidentally in linen closets and push you out to sea in a boat, and all that sort of thing—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:27:41,925 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'OFIZL27ncTeMt1qVKEzH', 'text': '\\n

\\n \\n Who oughtn’t to?\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:27:41,926 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'OFIZL27ncTeMt1qVKEzH', 'text': '

Her family is one aunt about a thousand years old. Besides, Nick’s going to look after her, aren’t you, Nick? She’s going to spend lots of weekends out here this summer. I think the home influence will be very good for her.

', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.5, use_speaker_boost=None)}\n", "2024-10-11 06:27:41,926 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'OFIZL27ncTeMt1qVKEzH', 'text': '

from louisville. our white girlhood was passed together there. our beautiful white—

', 'voice_settings': VoiceSettings(stability=0.3, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:27:41,927 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'OFIZL27ncTeMt1qVKEzH', 'text': '

Did I?

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:27:41,928 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'OFIZL27ncTeMt1qVKEzH', 'text': '\\n

\\n \\n She looked at me.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.9, similarity_boost=0.4, style=0.2, use_speaker_boost=None)}\n", "2024-10-11 06:27:41,928 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'OFIZL27ncTeMt1qVKEzH', 'text': '\\n

\\n \\n I can\\'t seem to remember, \\n but I think we talked about the Nordic race.\\n \\n \\n Yes, \\n I\\'m sure we did. \\n \\n \\n It sort of crept up on us \\n and first thing you know—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:27:42,972 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/OFIZL27ncTeMt1qVKEzH \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:43,041 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/OFIZL27ncTeMt1qVKEzH \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:43,044 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/OFIZL27ncTeMt1qVKEzH \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:43,063 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/OFIZL27ncTeMt1qVKEzH \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:43,086 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/OFIZL27ncTeMt1qVKEzH \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:43,093 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/OFIZL27ncTeMt1qVKEzH \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:43,181 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/OFIZL27ncTeMt1qVKEzH \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:43,303 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/OFIZL27ncTeMt1qVKEzH \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:43,313 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/OFIZL27ncTeMt1qVKEzH \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:43,849 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/OFIZL27ncTeMt1qVKEzH \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:44,563 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/OFIZL27ncTeMt1qVKEzH \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:44,681 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/OFIZL27ncTeMt1qVKEzH \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:44,852 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/OFIZL27ncTeMt1qVKEzH \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:47,943 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:47,945 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

if you\\'ll get up.

', 'params': {'stability': 0.5, 'similarity_boost': 0.8, 'style': 0.6}}\n", "2024-10-11 06:27:48,124 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:48,125 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Of course you will,

', 'params': {'stability': 0.5, 'similarity_boost': 0.6, 'style': 0.7}}\n", "2024-10-11 06:27:48,240 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:48,241 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

did I?

', 'params': {'stability': 0.3, 'similarity_boost': 0.8, 'style': 0.9}}\n", "2024-10-11 06:27:48,251 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:48,253 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

She looked at me.

', 'params': {'stability': 0.8, 'similarity_boost': 0.3, 'style': 0.2}}\n", "2024-10-11 06:27:48,256 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:48,257 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Confirmed, Daisy.

', 'params': {'stability': 0.3, 'similarity_boost': 0.8, 'style': 0.8}}\n", "2024-10-11 06:27:48,277 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:48,279 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n over at Westchester.\\n \\n

\\n
', 'params': {'stability': 0.9, 'similarity_boost': 0.4, 'style': 0.2}}\n", "2024-10-11 06:27:48,662 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:48,663 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n explained \\n daisy,\\n \\n

\\n
', 'params': {'stability': 0.4, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:27:49,074 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:49,077 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:49,080 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n who \\n oughtn’t \\n to?\\n \\n

\\n
', 'params': {'stability': 0.3, 'similarity_boost': 0.8, 'style': 0.9}}\n", "2024-10-11 06:27:49,082 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n from Louisville. \\n our white girlhood was passed together there. \\n \\n \\n our beautiful white—\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:27:49,091 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:49,094 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Jordan’s going to play in the tournament tomorrow,

', 'params': {'stability': 0.5, 'similarity_boost': 0.8, 'style': 0.6}}\n", "2024-10-11 06:27:49,581 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:49,584 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Her family is one aunt about a thousand years old. Besides, Nick\\'s going to look after her, aren\\'t you, Nick? She\\'s going to spend lots of weekends out here this summer. I think the home influence will be very good for her.

', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:27:50,194 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:50,196 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n I can\\'t seem to remember, \\n but I think we talked about the Nordic race.\\n \\n \\n Yes, I\\'m sure we did. \\n \\n It sort of crept up on us \\n and first thing you know—\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:27:50,503 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:50,506 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

In fact, I think I\\'ll arrange a marriage.Come over often, Nick, and I\\'ll sort of—oh— fling you together.You know— lock you up accidentally in linen closets and push you out to sea in a boat,and all that sort of thing—

', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:27:50,508 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'PoHUWWWMHFrA8z7Q88pu', 'text': '

Jordan’s going to play in the tournament tomorrow,

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.8, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:27:50,511 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'PoHUWWWMHFrA8z7Q88pu', 'text': '\\n

\\n \\n explained \\n daisy,\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:27:50,512 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'PoHUWWWMHFrA8z7Q88pu', 'text': '\\n

\\n \\n over at Westchester.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.9, similarity_boost=0.4, style=0.2, use_speaker_boost=None)}\n", "2024-10-11 06:27:50,513 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'PoHUWWWMHFrA8z7Q88pu', 'text': '

if you\\'ll get up.

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.8, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:27:50,514 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'PoHUWWWMHFrA8z7Q88pu', 'text': '

Of course you will,

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.6, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:27:50,516 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'PoHUWWWMHFrA8z7Q88pu', 'text': '

Confirmed, Daisy.

', 'voice_settings': VoiceSettings(stability=0.3, similarity_boost=0.8, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:27:50,517 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'PoHUWWWMHFrA8z7Q88pu', 'text': '

In fact, I think I\\'ll arrange a marriage.Come over often, Nick, and I\\'ll sort of—oh— fling you together.You know— lock you up accidentally in linen closets and push you out to sea in a boat,and all that sort of thing—

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:27:50,519 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'PoHUWWWMHFrA8z7Q88pu', 'text': '\\n

\\n \\n who \\n oughtn’t \\n to?\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.3, similarity_boost=0.8, style=0.9, use_speaker_boost=None)}\n", "2024-10-11 06:27:50,520 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'PoHUWWWMHFrA8z7Q88pu', 'text': '

Her family is one aunt about a thousand years old. Besides, Nick\\'s going to look after her, aren\\'t you, Nick? She\\'s going to spend lots of weekends out here this summer. I think the home influence will be very good for her.

', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:27:50,521 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'PoHUWWWMHFrA8z7Q88pu', 'text': '\\n

\\n \\n from Louisville. \\n our white girlhood was passed together there. \\n \\n \\n our beautiful white—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:27:50,522 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'PoHUWWWMHFrA8z7Q88pu', 'text': '

did I?

', 'voice_settings': VoiceSettings(stability=0.3, similarity_boost=0.8, style=0.9, use_speaker_boost=None)}\n", "2024-10-11 06:27:50,523 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'PoHUWWWMHFrA8z7Q88pu', 'text': '

She looked at me.

', 'voice_settings': VoiceSettings(stability=0.8, similarity_boost=0.3, style=0.2, use_speaker_boost=None)}\n", "2024-10-11 06:27:50,525 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'PoHUWWWMHFrA8z7Q88pu', 'text': '\\n

\\n \\n I can\\'t seem to remember, \\n but I think we talked about the Nordic race.\\n \\n \\n Yes, I\\'m sure we did. \\n \\n It sort of crept up on us \\n and first thing you know—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:27:51,525 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/PoHUWWWMHFrA8z7Q88pu \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:51,553 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/PoHUWWWMHFrA8z7Q88pu \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:51,559 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/PoHUWWWMHFrA8z7Q88pu \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:51,581 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/PoHUWWWMHFrA8z7Q88pu \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:51,588 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/PoHUWWWMHFrA8z7Q88pu \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:51,591 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/PoHUWWWMHFrA8z7Q88pu \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:51,597 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/PoHUWWWMHFrA8z7Q88pu \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:51,751 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/PoHUWWWMHFrA8z7Q88pu \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:51,836 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/PoHUWWWMHFrA8z7Q88pu \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:52,351 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/PoHUWWWMHFrA8z7Q88pu \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:52,720 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/PoHUWWWMHFrA8z7Q88pu \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:53,575 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/PoHUWWWMHFrA8z7Q88pu \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:53,694 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/PoHUWWWMHFrA8z7Q88pu \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:56,644 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:56,646 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

if you’ll get up.

', 'params': {'stability': 0.4, 'similarity_boost': 0.7, 'style': 0.7}}\n", "2024-10-11 06:27:56,779 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:56,781 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': 'over at westchester.', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:27:57,056 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:57,059 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Confirmed, \\n Daisy.\\n \\n

\\n
', 'params': {'stability': 0.3, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:27:57,179 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:57,181 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n explained daisy,\\n \\n

\\n
', 'params': {'stability': 0.4, 'similarity_boost': 0.6, 'style': 0.8}}\n", "2024-10-11 06:27:57,362 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:57,366 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Who oughtn\\'t to?\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.8, 'style': 0.8}}\n", "2024-10-11 06:27:57,667 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:57,670 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n from Louisville.\\n Our white girlhood was passed together there.\\n \\n \\n Our beautiful white—\\n \\n

\\n
', 'params': {'stability': 0.4, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:27:57,762 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:57,766 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

I can\\'t seem to remember, but I think we talked about the Nordic race.Yes, I\\'m sure we did. It sort of crept up on us and first thing you know—

', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:27:58,079 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:58,081 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Did I?

', 'params': {'stability': 0.4, 'similarity_boost': 0.8, 'style': 0.6}}\n", "2024-10-11 06:27:58,110 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:58,112 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Her family is one aunt about a thousand years old.\\n \\n \\n Besides, Nick’s going to look after her, aren’t you, Nick?\\n \\n \\n She’s going to spend lots of weekends out here this summer.\\n \\n \\n I think the home influence will be very good for her.\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.5}}\n", "2024-10-11 06:27:58,292 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:58,296 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

She looked at me.

', 'params': {'stability': 0.4, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:27:58,343 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:58,344 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

of course you will,

', 'params': {'stability': 0.5, 'similarity_boost': 0.6, 'style': 0.7}}\n", "2024-10-11 06:27:58,694 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:27:58,697 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Jordan’s going to play in the tournament tomorrow,\\n can you believe it?\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:28:00,620 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:00,624 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n In fact I think I’ll arrange a marriage.\\n \\n \\n Come over often, Nick, \\n and I’ll sort of—oh—\\n fling you together.\\n \\n \\n You know —lock you up accidentally in linen closets \\n and push you out to sea in a boat,\\n and all that sort of thing—\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.6, 'style': 0.7}}\n", "2024-10-11 06:28:00,627 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'Qo4wB0XcrmHFXFyP38mc', 'text': '\\n

\\n \\n Jordan’s going to play in the tournament tomorrow,\\n can you believe it?\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:28:00,630 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'Qo4wB0XcrmHFXFyP38mc', 'text': '\\n

\\n \\n explained daisy,\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.6, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:28:00,632 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'Qo4wB0XcrmHFXFyP38mc', 'text': 'over at westchester.', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:28:00,633 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'Qo4wB0XcrmHFXFyP38mc', 'text': '

if you’ll get up.

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.7, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:28:00,634 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'Qo4wB0XcrmHFXFyP38mc', 'text': '

of course you will,

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.6, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:28:00,636 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'Qo4wB0XcrmHFXFyP38mc', 'text': '\\n

\\n \\n Confirmed, \\n Daisy.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.3, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:28:00,637 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'Qo4wB0XcrmHFXFyP38mc', 'text': '\\n

\\n \\n In fact I think I’ll arrange a marriage.\\n \\n \\n Come over often, Nick, \\n and I’ll sort of—oh—\\n fling you together.\\n \\n \\n You know —lock you up accidentally in linen closets \\n and push you out to sea in a boat,\\n and all that sort of thing—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.6, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:28:00,639 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'Qo4wB0XcrmHFXFyP38mc', 'text': '\\n

\\n \\n Who oughtn\\'t to?\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.8, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:28:00,641 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'Qo4wB0XcrmHFXFyP38mc', 'text': '\\n

\\n \\n Her family is one aunt about a thousand years old.\\n \\n \\n Besides, Nick’s going to look after her, aren’t you, Nick?\\n \\n \\n She’s going to spend lots of weekends out here this summer.\\n \\n \\n I think the home influence will be very good for her.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.5, use_speaker_boost=None)}\n", "2024-10-11 06:28:00,642 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'Qo4wB0XcrmHFXFyP38mc', 'text': '\\n

\\n \\n from Louisville.\\n Our white girlhood was passed together there.\\n \\n \\n Our beautiful white—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:28:00,644 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'Qo4wB0XcrmHFXFyP38mc', 'text': '

Did I?

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.8, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:28:00,645 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'Qo4wB0XcrmHFXFyP38mc', 'text': '

She looked at me.

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:28:00,647 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'Qo4wB0XcrmHFXFyP38mc', 'text': '

I can\\'t seem to remember, but I think we talked about the Nordic race.Yes, I\\'m sure we did. It sort of crept up on us and first thing you know—

', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:28:02,176 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/Qo4wB0XcrmHFXFyP38mc \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:02,179 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/Qo4wB0XcrmHFXFyP38mc \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:02,402 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/Qo4wB0XcrmHFXFyP38mc \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:02,466 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/Qo4wB0XcrmHFXFyP38mc \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:02,810 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/Qo4wB0XcrmHFXFyP38mc \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:03,407 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/Qo4wB0XcrmHFXFyP38mc \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:03,812 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/Qo4wB0XcrmHFXFyP38mc \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:04,484 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/Qo4wB0XcrmHFXFyP38mc \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:04,810 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/Qo4wB0XcrmHFXFyP38mc \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:05,557 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/Qo4wB0XcrmHFXFyP38mc \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:05,663 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/Qo4wB0XcrmHFXFyP38mc \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:05,685 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/Qo4wB0XcrmHFXFyP38mc \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:06,272 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/Qo4wB0XcrmHFXFyP38mc \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:07,872 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:07,873 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.410000 seconds\n", "2024-10-11 06:28:09,294 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:09,296 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:09,299 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

of course you will,

', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:28:09,301 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

if you\\'ll get up.

', 'params': {'stability': 0.4, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:28:09,306 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:09,308 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Did I?

', 'params': {'stability': 0.3, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:28:09,397 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:09,398 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

who oughtn’t to?

', 'params': {'stability': 0.4, 'similarity_boost': 0.8, 'style': 0.9}}\n", "2024-10-11 06:28:09,503 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:09,507 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n over at Westchester.\\n \\n

\\n
', 'params': {'stability': 0.9, 'similarity_boost': 0.3, 'style': 0.2}}\n", "2024-10-11 06:28:09,509 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:09,510 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

explained daisy,

', 'params': {'stability': 0.3, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:28:09,513 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:09,514 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Jordan\\'s going to play \\n in the tournament tomorrow,\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.6, 'style': 0.6}}\n", "2024-10-11 06:28:09,575 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:09,576 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Confirmed \\n Daisy.\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:28:10,030 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:10,036 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n From Louisville. \\n Our white girlhood was passed together there.\\n \\n \\n Our beautiful white—\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.7}}\n", "2024-10-11 06:28:10,779 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:10,783 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

She looked at me.

', 'params': {'stability': 0.8, 'similarity_boost': 0.4, 'style': 0.2}}\n", "2024-10-11 06:28:10,895 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:10,900 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n I can’t seem to remember,\\n \\n but I think we talked about the Nordic race.\\n \\n \\n Yes, I’m sure we did.\\n \\n It sort of crept up on us and first thing you know—\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:28:10,913 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:10,915 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Her family is one aunt about a thousand years old.\\n \\n \\n Besides, Nick\\'s going to look after her, aren\\'t you, Nick?\\n \\n \\n She\\'s going to spend lots of weekends out here this summer.\\n \\n \\n I think the home influence will be very good for her.\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.6, 'style': 0.7}}\n", "2024-10-11 06:28:11,598 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:11,603 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n In fact, I think I\\'ll arrange a marriage.\\n \\n \\n Come over often, Nick, \\n and I\\'ll sort of—oh—fling you together.\\n \\n \\n You know—lock you up accidentally in linen closets \\n and push you out to sea in a boat, \\n and all that sort of thing—\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.6, 'style': 0.7}}\n", "2024-10-11 06:28:11,604 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'RigKMMlryPP9jHT50Jzl', 'text': '\\n

\\n \\n Jordan\\'s going to play \\n in the tournament tomorrow,\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.6, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:28:11,607 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'RigKMMlryPP9jHT50Jzl', 'text': '

explained daisy,

', 'voice_settings': VoiceSettings(stability=0.3, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:28:11,608 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'RigKMMlryPP9jHT50Jzl', 'text': '\\n

\\n \\n over at Westchester.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.9, similarity_boost=0.3, style=0.2, use_speaker_boost=None)}\n", "2024-10-11 06:28:11,609 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'RigKMMlryPP9jHT50Jzl', 'text': '

if you\\'ll get up.

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:28:11,610 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'RigKMMlryPP9jHT50Jzl', 'text': '

of course you will,

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:28:11,611 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'RigKMMlryPP9jHT50Jzl', 'text': '\\n

\\n \\n Confirmed \\n Daisy.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:28:11,612 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'RigKMMlryPP9jHT50Jzl', 'text': '\\n

\\n \\n In fact, I think I\\'ll arrange a marriage.\\n \\n \\n Come over often, Nick, \\n and I\\'ll sort of—oh—fling you together.\\n \\n \\n You know—lock you up accidentally in linen closets \\n and push you out to sea in a boat, \\n and all that sort of thing—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.6, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:28:11,613 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'RigKMMlryPP9jHT50Jzl', 'text': '

who oughtn’t to?

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.8, style=0.9, use_speaker_boost=None)}\n", "2024-10-11 06:28:11,614 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'RigKMMlryPP9jHT50Jzl', 'text': '\\n

\\n \\n Her family is one aunt about a thousand years old.\\n \\n \\n Besides, Nick\\'s going to look after her, aren\\'t you, Nick?\\n \\n \\n She\\'s going to spend lots of weekends out here this summer.\\n \\n \\n I think the home influence will be very good for her.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.6, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:28:11,615 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'RigKMMlryPP9jHT50Jzl', 'text': '\\n

\\n \\n From Louisville. \\n Our white girlhood was passed together there.\\n \\n \\n Our beautiful white—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:28:11,616 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'RigKMMlryPP9jHT50Jzl', 'text': '

Did I?

', 'voice_settings': VoiceSettings(stability=0.3, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:28:11,617 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'RigKMMlryPP9jHT50Jzl', 'text': '

She looked at me.

', 'voice_settings': VoiceSettings(stability=0.8, similarity_boost=0.4, style=0.2, use_speaker_boost=None)}\n", "2024-10-11 06:28:11,623 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'RigKMMlryPP9jHT50Jzl', 'text': '\\n

\\n \\n I can’t seem to remember,\\n \\n but I think we talked about the Nordic race.\\n \\n \\n Yes, I’m sure we did.\\n \\n It sort of crept up on us and first thing you know—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:28:13,131 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/RigKMMlryPP9jHT50Jzl \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:13,132 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/RigKMMlryPP9jHT50Jzl \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:13,951 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/RigKMMlryPP9jHT50Jzl \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:13,955 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/RigKMMlryPP9jHT50Jzl \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:13,995 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/RigKMMlryPP9jHT50Jzl \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:14,168 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/RigKMMlryPP9jHT50Jzl \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:14,404 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/RigKMMlryPP9jHT50Jzl \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:14,598 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/RigKMMlryPP9jHT50Jzl \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:14,980 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/RigKMMlryPP9jHT50Jzl \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:15,321 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/RigKMMlryPP9jHT50Jzl \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:15,346 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/RigKMMlryPP9jHT50Jzl \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:15,510 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/RigKMMlryPP9jHT50Jzl \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:16,409 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/RigKMMlryPP9jHT50Jzl \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:17,937 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:17,939 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.786000 seconds\n", "2024-10-11 06:28:17,940 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:17,941 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.772000 seconds\n", "2024-10-11 06:28:17,942 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:17,943 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.770000 seconds\n", "2024-10-11 06:28:17,944 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:17,945 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.764000 seconds\n", "2024-10-11 06:28:17,947 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:17,948 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.786000 seconds\n", "2024-10-11 06:28:17,950 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:17,951 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.770000 seconds\n", "2024-10-11 06:28:17,952 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:17,953 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.816000 seconds\n", "2024-10-11 06:28:17,959 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:17,961 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.874000 seconds\n", "2024-10-11 06:28:17,961 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:17,963 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.818000 seconds\n", "2024-10-11 06:28:18,859 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:18,861 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.480000 seconds\n", "2024-10-11 06:28:18,863 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:18,865 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:18,866 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.492000 seconds\n", "2024-10-11 06:28:18,867 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.482000 seconds\n", "2024-10-11 06:28:18,869 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:18,871 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.482000 seconds\n", "2024-10-11 06:28:18,872 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:18,873 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.526000 seconds\n", "2024-10-11 06:28:18,917 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:18,918 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.502000 seconds\n", "2024-10-11 06:28:18,919 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:18,921 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.464000 seconds\n", "2024-10-11 06:28:18,975 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:18,977 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.480000 seconds\n", "2024-10-11 06:28:19,093 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:19,096 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

explained daisy,

', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:28:19,378 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:19,381 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

of course you will,

', 'params': {'stability': 0.4, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:28:19,544 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:19,550 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Over at Westchester.

', 'params': {'stability': 0.8, 'similarity_boost': 0.4, 'style': 0.5}}\n", "2024-10-11 06:28:19,890 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:19,894 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Who oughtn’t to?

', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:28:20,485 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:20,488 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:20,494 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:20,528 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:20,549 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:20,567 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:20,595 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:20,817 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:20,818 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.200000 seconds\n", "2024-10-11 06:28:20,885 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:20,886 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.168000 seconds\n", "2024-10-11 06:28:21,025 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:21,027 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n In fact, I think I’ll arrange a marriage.\\n \\n Come over often, Nick,\\n and I’ll sort of—oh—fling you together.\\n \\n \\n You know—\\n lock you up accidentally in linen closets\\n \\n and push you out to sea in a boat,\\n and all that sort of thing—\\n \\n

\\n
', 'params': {'stability': 0.4, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:28:21,129 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:21,131 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.392000 seconds\n", "2024-10-11 06:28:21,137 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:21,138 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.336000 seconds\n", "2024-10-11 06:28:21,272 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:21,274 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.128000 seconds\n", "2024-10-11 06:28:21,447 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:21,450 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.973000 seconds\n", "2024-10-11 06:28:21,452 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:21,455 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.956000 seconds\n", "2024-10-11 06:28:21,584 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:21,586 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Did I?

', 'params': {'stability': 0.4, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:28:22,158 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:22,161 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.294000 seconds\n", "2024-10-11 06:28:22,191 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:22,193 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.254000 seconds\n", "2024-10-11 06:28:22,553 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:22,556 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.486000 seconds\n", "2024-10-11 06:28:22,566 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:22,568 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.490000 seconds\n", "2024-10-11 06:28:22,589 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:22,592 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:22,614 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:22,616 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.492000 seconds\n", "2024-10-11 06:28:22,670 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:22,671 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.472000 seconds\n", "2024-10-11 06:28:22,959 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:22,961 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.074000 seconds\n", "2024-10-11 06:28:24,182 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:24,193 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:24,214 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:24,217 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Confirmed, \\n Daisy.\\n \\n

\\n
', 'params': {'stability': 0.4, 'similarity_boost': 0.6, 'style': 0.7}}\n", "2024-10-11 06:28:24,249 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:24,283 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:24,683 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:24,686 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.070000 seconds\n", "2024-10-11 06:28:24,720 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:24,722 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.990000 seconds\n", "2024-10-11 06:28:24,821 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:24,824 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.906000 seconds\n", "2024-10-11 06:28:25,578 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:25,582 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.246000 seconds\n", "2024-10-11 06:28:25,716 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:25,721 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n She looked at me.\\n \\n

\\n
', 'params': {'stability': 0.8, 'similarity_boost': 0.6, 'style': 0.4}}\n", "2024-10-11 06:28:25,866 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:25,868 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.516000 seconds\n", "2024-10-11 06:28:25,889 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:25,891 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.524000 seconds\n", "2024-10-11 06:28:25,965 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:25,967 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.510000 seconds\n", "2024-10-11 06:28:26,103 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:26,105 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.338000 seconds\n", "2024-10-11 06:28:27,365 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:27,367 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n if you’ll get up.\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:28:27,551 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:27,578 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:27,580 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.512000 seconds\n", "2024-10-11 06:28:27,613 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:28,536 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:28,539 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.594000 seconds\n", "2024-10-11 06:28:29,269 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:29,273 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.558000 seconds\n", "2024-10-11 06:28:29,721 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:29,726 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Jordan’s going to play in the tournament tomorrow,\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:28:29,961 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:29,965 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.902000 seconds\n", "2024-10-11 06:28:31,004 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:31,007 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.594000 seconds\n", "2024-10-11 06:28:31,772 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:31,778 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n I can’t seem to remember, but I think we talked about the Nordic race.\\n \\n \\n Yes, I’m sure we did.\\n \\n \\n It sort of crept up on us and first thing you know—\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.6, 'style': 0.7}}\n", "2024-10-11 06:28:32,741 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:33,614 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:33,618 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Her family is one aunt about a thousand years old.\\n \\n \\n Besides, Nick’s going to look after her, \\n aren’t you, Nick?\\n \\n \\n She’s going to spend lots of weekends out here this summer.\\n \\n \\n I think the home influence will be very good for her.\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.5}}\n", "2024-10-11 06:28:38,629 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:38,631 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

from Louisville. our white girlhood was passed together there. our beautiful white—

', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:28:38,632 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'Tn2cyDUSRglJwDCiW4FP', 'text': '\\n

\\n \\n Jordan’s going to play in the tournament tomorrow,\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:28:38,634 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'Tn2cyDUSRglJwDCiW4FP', 'text': '

explained daisy,

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:28:38,635 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'Tn2cyDUSRglJwDCiW4FP', 'text': '

Over at Westchester.

', 'voice_settings': VoiceSettings(stability=0.8, similarity_boost=0.4, style=0.5, use_speaker_boost=None)}\n", "2024-10-11 06:28:38,636 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'Tn2cyDUSRglJwDCiW4FP', 'text': '\\n

\\n \\n if you’ll get up.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:28:38,637 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'Tn2cyDUSRglJwDCiW4FP', 'text': '

of course you will,

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:28:38,638 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'Tn2cyDUSRglJwDCiW4FP', 'text': '\\n

\\n \\n Confirmed, \\n Daisy.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.6, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:28:38,638 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'Tn2cyDUSRglJwDCiW4FP', 'text': '\\n

\\n \\n In fact, I think I’ll arrange a marriage.\\n \\n Come over often, Nick,\\n and I’ll sort of—oh—fling you together.\\n \\n \\n You know—\\n lock you up accidentally in linen closets\\n \\n and push you out to sea in a boat,\\n and all that sort of thing—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:28:38,639 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'Tn2cyDUSRglJwDCiW4FP', 'text': '

Who oughtn’t to?

', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:28:38,640 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'Tn2cyDUSRglJwDCiW4FP', 'text': '\\n

\\n \\n Her family is one aunt about a thousand years old.\\n \\n \\n Besides, Nick’s going to look after her, \\n aren’t you, Nick?\\n \\n \\n She’s going to spend lots of weekends out here this summer.\\n \\n \\n I think the home influence will be very good for her.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.5, use_speaker_boost=None)}\n", "2024-10-11 06:28:38,641 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'Tn2cyDUSRglJwDCiW4FP', 'text': '

from Louisville. our white girlhood was passed together there. our beautiful white—

', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:28:38,642 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'Tn2cyDUSRglJwDCiW4FP', 'text': '

Did I?

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:28:38,642 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'Tn2cyDUSRglJwDCiW4FP', 'text': '\\n

\\n \\n She looked at me.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.8, similarity_boost=0.6, style=0.4, use_speaker_boost=None)}\n", "2024-10-11 06:28:38,643 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'Tn2cyDUSRglJwDCiW4FP', 'text': '\\n

\\n \\n I can’t seem to remember, but I think we talked about the Nordic race.\\n \\n \\n Yes, I’m sure we did.\\n \\n \\n It sort of crept up on us and first thing you know—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.6, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:28:40,167 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/Tn2cyDUSRglJwDCiW4FP \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:40,966 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/Tn2cyDUSRglJwDCiW4FP \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:41,296 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/Tn2cyDUSRglJwDCiW4FP \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:41,551 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/Tn2cyDUSRglJwDCiW4FP \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:41,673 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/Tn2cyDUSRglJwDCiW4FP \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:41,888 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/Tn2cyDUSRglJwDCiW4FP \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:43,027 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/Tn2cyDUSRglJwDCiW4FP \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:43,027 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/Tn2cyDUSRglJwDCiW4FP \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:43,129 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/Tn2cyDUSRglJwDCiW4FP \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:43,444 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/Tn2cyDUSRglJwDCiW4FP \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:44,371 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/Tn2cyDUSRglJwDCiW4FP \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:44,377 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/Tn2cyDUSRglJwDCiW4FP \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:44,652 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/Tn2cyDUSRglJwDCiW4FP \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:46,616 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:46,617 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.600000 seconds\n", "2024-10-11 06:28:46,618 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:46,619 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:46,620 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.542000 seconds\n", "2024-10-11 06:28:46,620 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.548000 seconds\n", "2024-10-11 06:28:46,623 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:46,624 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.570000 seconds\n", "2024-10-11 06:28:46,627 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:46,628 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.526000 seconds\n", "2024-10-11 06:28:47,948 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:47,949 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Did I?

', 'params': {'stability': 0.3, 'similarity_boost': 0.8, 'style': 0.9}}\n", "2024-10-11 06:28:47,980 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:47,982 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Of course you will,

', 'params': {'stability': 0.4, 'similarity_boost': 0.8, 'style': 0.6}}\n", "2024-10-11 06:28:48,160 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:48,161 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

if you\\'ll get up.

', 'params': {'stability': 0.3, 'similarity_boost': 0.8, 'style': 0.9}}\n", "2024-10-11 06:28:48,187 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:48,189 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Who oughtn’t to?\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:28:48,193 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:48,194 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Confirmed Daisy.\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.8, 'style': 0.8}}\n", "2024-10-11 06:28:48,301 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:48,302 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.536000 seconds\n", "2024-10-11 06:28:48,314 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:48,315 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.540000 seconds\n", "2024-10-11 06:28:48,342 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:48,344 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.504000 seconds\n", "2024-10-11 06:28:48,353 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:48,355 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.548000 seconds\n", "2024-10-11 06:28:48,664 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:48,666 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

from louisville. our white girlhood was passed together there.Our beautiful white—

', 'params': {'stability': 0.4, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:28:49,114 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:49,119 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Her family is one aunt about a thousand years old.\\n \\n \\n Besides, Nick\\'s going to look after her,\\n aren\\'t you, Nick?\\n \\n \\n She\\'s going to spend lots of weekends out here this summer. \\n I think the home influence will be very good for her.\\n \\n

\\n
', 'params': {'stability': 0.4, 'similarity_boost': 0.75, 'style': 0.8}}\n", "2024-10-11 06:28:49,987 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:49,991 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:49,992 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:50,010 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:50,013 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n In fact, I think I’ll arrange a marriage.\\n \\n \\n Come over often, Nick, and I’ll sort of—oh—\\n fling you together.\\n \\n \\n You know—\\n lock you up accidentally in linen closets and push you out to sea in a boat,\\n and all that sort of thing—\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:28:50,044 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:50,176 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:50,177 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.394000 seconds\n", "2024-10-11 06:28:50,234 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:50,236 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n over at Westchester.\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.6, 'style': 0.7}}\n", "2024-10-11 06:28:50,335 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:50,336 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.342000 seconds\n", "2024-10-11 06:28:50,403 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:50,405 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.342000 seconds\n", "2024-10-11 06:28:50,820 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:50,822 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.482000 seconds\n", "2024-10-11 06:28:50,890 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:50,893 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.484000 seconds\n", "2024-10-11 06:28:51,021 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:51,025 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.304000 seconds\n", "2024-10-11 06:28:52,469 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:52,474 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.480000 seconds\n", "2024-10-11 06:28:52,518 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:52,629 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:52,633 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n She looked at me.\\n \\n

\\n
', 'params': {'stability': 0.8, 'similarity_boost': 0.6, 'style': 0.5}}\n", "2024-10-11 06:28:53,183 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:53,187 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.848000 seconds\n", "2024-10-11 06:28:53,887 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:53,892 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

explained daisy,

', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.7}}\n", "2024-10-11 06:28:54,177 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:28:54,181 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.508000 seconds\n", "2024-10-11 06:28:55,817 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:55,820 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Jordan’s going to play in the tournament tomorrow,\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.5}}\n", "2024-10-11 06:28:58,701 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:28:58,706 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n I can’t seem to remember, \\n but I think we talked about the Nordic race.\\n \\n \\n Yes, I’m sure we did.\\n It sort of crept up on us \\n and first thing you know—\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.8, 'style': 0.6}}\n", "2024-10-11 06:28:58,706 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'U0gWepDCHKmmexbBxeSX', 'text': '\\n

\\n \\n Jordan’s going to play in the tournament tomorrow,\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.5, use_speaker_boost=None)}\n", "2024-10-11 06:28:58,709 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'U0gWepDCHKmmexbBxeSX', 'text': '

explained daisy,

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:28:58,710 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'U0gWepDCHKmmexbBxeSX', 'text': '\\n

\\n \\n over at Westchester.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.6, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:28:58,711 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'U0gWepDCHKmmexbBxeSX', 'text': '

if you\\'ll get up.

', 'voice_settings': VoiceSettings(stability=0.3, similarity_boost=0.8, style=0.9, use_speaker_boost=None)}\n", "2024-10-11 06:28:58,712 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'U0gWepDCHKmmexbBxeSX', 'text': '

Of course you will,

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.8, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:28:58,713 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'U0gWepDCHKmmexbBxeSX', 'text': '\\n

\\n \\n Confirmed Daisy.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.8, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:28:58,714 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'U0gWepDCHKmmexbBxeSX', 'text': '\\n

\\n \\n In fact, I think I’ll arrange a marriage.\\n \\n \\n Come over often, Nick, and I’ll sort of—oh—\\n fling you together.\\n \\n \\n You know—\\n lock you up accidentally in linen closets and push you out to sea in a boat,\\n and all that sort of thing—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:28:58,715 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'U0gWepDCHKmmexbBxeSX', 'text': '\\n

\\n \\n Who oughtn’t to?\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:28:58,716 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'U0gWepDCHKmmexbBxeSX', 'text': '\\n

\\n \\n Her family is one aunt about a thousand years old.\\n \\n \\n Besides, Nick\\'s going to look after her,\\n aren\\'t you, Nick?\\n \\n \\n She\\'s going to spend lots of weekends out here this summer. \\n I think the home influence will be very good for her.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.75, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:28:58,717 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'U0gWepDCHKmmexbBxeSX', 'text': '

from louisville. our white girlhood was passed together there.Our beautiful white—

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:28:58,718 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'U0gWepDCHKmmexbBxeSX', 'text': '

Did I?

', 'voice_settings': VoiceSettings(stability=0.3, similarity_boost=0.8, style=0.9, use_speaker_boost=None)}\n", "2024-10-11 06:28:58,719 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'U0gWepDCHKmmexbBxeSX', 'text': '\\n

\\n \\n She looked at me.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.8, similarity_boost=0.6, style=0.5, use_speaker_boost=None)}\n", "2024-10-11 06:28:58,720 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'U0gWepDCHKmmexbBxeSX', 'text': '\\n

\\n \\n I can’t seem to remember, \\n but I think we talked about the Nordic race.\\n \\n \\n Yes, I’m sure we did.\\n It sort of crept up on us \\n and first thing you know—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.8, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:29:00,007 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/U0gWepDCHKmmexbBxeSX \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:00,260 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/U0gWepDCHKmmexbBxeSX \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:00,447 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/U0gWepDCHKmmexbBxeSX \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:00,699 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/U0gWepDCHKmmexbBxeSX \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:01,083 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/U0gWepDCHKmmexbBxeSX \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:02,401 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/U0gWepDCHKmmexbBxeSX \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:02,626 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/U0gWepDCHKmmexbBxeSX \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:02,717 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/U0gWepDCHKmmexbBxeSX \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:02,901 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/U0gWepDCHKmmexbBxeSX \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:03,384 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/U0gWepDCHKmmexbBxeSX \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:03,481 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/U0gWepDCHKmmexbBxeSX \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:04,127 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/U0gWepDCHKmmexbBxeSX \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:04,417 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/U0gWepDCHKmmexbBxeSX \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:06,330 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:06,332 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:06,333 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.180000 seconds\n", "2024-10-11 06:29:06,334 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.216000 seconds\n", "2024-10-11 06:29:06,335 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:06,337 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.204000 seconds\n", "2024-10-11 06:29:06,338 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:06,340 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.282000 seconds\n", "2024-10-11 06:29:06,341 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:06,342 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:06,348 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.178000 seconds\n", "2024-10-11 06:29:06,351 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.240000 seconds\n", "2024-10-11 06:29:06,352 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:06,355 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.166000 seconds\n", "2024-10-11 06:29:07,659 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:07,660 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.470000 seconds\n", "2024-10-11 06:29:07,664 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:07,665 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.482000 seconds\n", "2024-10-11 06:29:07,679 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:07,680 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.478000 seconds\n", "2024-10-11 06:29:07,681 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:07,682 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.488000 seconds\n", "2024-10-11 06:29:07,735 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:07,736 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.472000 seconds\n", "2024-10-11 06:29:07,753 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:07,754 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.490000 seconds\n", "2024-10-11 06:29:07,898 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:07,900 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

explained daisy,

', 'params': {'stability': 0.4, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:29:07,999 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:08,001 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

If you\\'ll get up.

', 'params': {'stability': 0.4, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:29:08,077 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:08,078 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Over at Westchester.\\n \\n

\\n
', 'params': {'stability': 0.9, 'similarity_boost': 0.4, 'style': 0.4}}\n", "2024-10-11 06:29:08,122 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:08,124 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

She looked at me, her eyes searching with a profound intensity.

', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:29:08,159 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:08,161 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Confirmed, Daisy.\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:29:09,286 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:09,288 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Who oughtn’t to?

', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:29:09,289 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:09,290 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:09,306 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:09,310 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:09,311 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

In fact, I think I\\'ll arrange a marriage.Come over often, Nick, and I\\'ll sort of—oh—fling you together.You know—lock you up accidentally in linen closets and push you out to sea in a boat, and all that sort of thing—

', 'params': {'stability': 0.4, 'similarity_boost': 0.8, 'style': 0.6}}\n", "2024-10-11 06:29:09,368 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:09,381 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:09,832 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:09,833 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.064000 seconds\n", "2024-10-11 06:29:09,922 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:09,924 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.064000 seconds\n", "2024-10-11 06:29:10,330 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:10,332 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.564000 seconds\n", "2024-10-11 06:29:10,378 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:10,380 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.576000 seconds\n", "2024-10-11 06:29:10,444 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:10,447 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.487000 seconds\n", "2024-10-11 06:29:10,884 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:10,889 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': 'did i?', 'params': {'stability': 0.3, 'similarity_boost': 0.8, 'style': 0.8}}\n", "2024-10-11 06:29:11,037 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:11,041 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.492000 seconds\n", "2024-10-11 06:29:11,073 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:11,075 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.474000 seconds\n", "2024-10-11 06:29:11,098 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:11,100 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.482000 seconds\n", "2024-10-11 06:29:11,123 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:11,125 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.504000 seconds\n", "2024-10-11 06:29:12,527 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:12,532 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Of course you will,\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:29:12,687 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:12,719 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:12,763 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:13,476 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:13,479 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.744000 seconds\n", "2024-10-11 06:29:13,827 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:13,828 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.446000 seconds\n", "2024-10-11 06:29:14,051 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:14,055 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.188000 seconds\n", "2024-10-11 06:29:14,380 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:14,383 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.526000 seconds\n", "2024-10-11 06:29:14,409 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:14,412 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.522000 seconds\n", "2024-10-11 06:29:14,472 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:14,474 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Jordan\\'s going to play in the tournament tomorrow,\\n \\n

\\n
', 'params': {'stability': 0.8, 'similarity_boost': 0.6, 'style': 0.5}}\n", "2024-10-11 06:29:15,917 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:15,918 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

from louisville. our white girlhood was passed together there. our beautiful white—

', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:29:16,066 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:19,081 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:19,086 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n I can’t seem to remember,\\n but I think we talked about the Nordic race.\\n \\n \\n Yes, I’m sure we did. \\n \\n It sort of crept up on us\\n and first thing you know—\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:29:22,071 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:22,072 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Her family is one aunt about a thousand years old.\\n \\n \\n Besides, Nick\\'s going to look after her,\\n aren\\'t you, Nick?\\n \\n \\n She\\'s going to spend lots of weekends out here this summer.\\n \\n \\n I think the home influence will be very good for her.\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.6, 'style': 0.5}}\n", "2024-10-11 06:29:22,073 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'XvsExC7ZMcLHrW9jIxWy', 'text': '\\n

\\n \\n Jordan\\'s going to play in the tournament tomorrow,\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.8, similarity_boost=0.6, style=0.5, use_speaker_boost=None)}\n", "2024-10-11 06:29:22,075 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'XvsExC7ZMcLHrW9jIxWy', 'text': '

explained daisy,

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:29:22,076 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'XvsExC7ZMcLHrW9jIxWy', 'text': '\\n

\\n \\n Over at Westchester.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.9, similarity_boost=0.4, style=0.4, use_speaker_boost=None)}\n", "2024-10-11 06:29:22,077 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'XvsExC7ZMcLHrW9jIxWy', 'text': '

If you\\'ll get up.

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:29:22,078 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'XvsExC7ZMcLHrW9jIxWy', 'text': '\\n

\\n \\n Of course you will,\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:29:22,079 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'XvsExC7ZMcLHrW9jIxWy', 'text': '\\n

\\n \\n Confirmed, Daisy.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:29:22,080 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'XvsExC7ZMcLHrW9jIxWy', 'text': '

In fact, I think I\\'ll arrange a marriage.Come over often, Nick, and I\\'ll sort of—oh—fling you together.You know—lock you up accidentally in linen closets and push you out to sea in a boat, and all that sort of thing—

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.8, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:29:22,080 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'XvsExC7ZMcLHrW9jIxWy', 'text': '

Who oughtn’t to?

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:29:22,081 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'XvsExC7ZMcLHrW9jIxWy', 'text': '\\n

\\n \\n Her family is one aunt about a thousand years old.\\n \\n \\n Besides, Nick\\'s going to look after her,\\n aren\\'t you, Nick?\\n \\n \\n She\\'s going to spend lots of weekends out here this summer.\\n \\n \\n I think the home influence will be very good for her.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.6, style=0.5, use_speaker_boost=None)}\n", "2024-10-11 06:29:22,082 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'XvsExC7ZMcLHrW9jIxWy', 'text': '

from louisville. our white girlhood was passed together there. our beautiful white—

', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:29:22,082 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'XvsExC7ZMcLHrW9jIxWy', 'text': 'did i?', 'voice_settings': VoiceSettings(stability=0.3, similarity_boost=0.8, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:29:22,083 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'XvsExC7ZMcLHrW9jIxWy', 'text': '

She looked at me, her eyes searching with a profound intensity.

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:29:22,084 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'XvsExC7ZMcLHrW9jIxWy', 'text': '\\n

\\n \\n I can’t seem to remember,\\n but I think we talked about the Nordic race.\\n \\n \\n Yes, I’m sure we did. \\n \\n It sort of crept up on us\\n and first thing you know—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:29:23,172 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/XvsExC7ZMcLHrW9jIxWy \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:23,174 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/XvsExC7ZMcLHrW9jIxWy \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:23,177 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/XvsExC7ZMcLHrW9jIxWy \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:23,177 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/XvsExC7ZMcLHrW9jIxWy \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:23,181 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/XvsExC7ZMcLHrW9jIxWy \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:23,196 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/XvsExC7ZMcLHrW9jIxWy \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:23,323 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/XvsExC7ZMcLHrW9jIxWy \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:23,545 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/XvsExC7ZMcLHrW9jIxWy \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:23,611 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/XvsExC7ZMcLHrW9jIxWy \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:23,772 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/XvsExC7ZMcLHrW9jIxWy \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:24,709 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/XvsExC7ZMcLHrW9jIxWy \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:24,950 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/XvsExC7ZMcLHrW9jIxWy \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:25,159 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/XvsExC7ZMcLHrW9jIxWy \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:26,806 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:26,807 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.356000 seconds\n", "2024-10-11 06:29:26,810 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:26,811 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:26,812 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.282000 seconds\n", "2024-10-11 06:29:26,813 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.342000 seconds\n", "2024-10-11 06:29:26,814 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:26,815 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.310000 seconds\n", "2024-10-11 06:29:26,816 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:26,817 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.230000 seconds\n", "2024-10-11 06:29:26,818 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:26,819 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.232000 seconds\n", "2024-10-11 06:29:26,821 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:26,823 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.254000 seconds\n", "2024-10-11 06:29:26,867 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:26,869 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.240000 seconds\n", "2024-10-11 06:29:28,036 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:28,038 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': 'if you’ll get up.', 'params': {'stability': 0.3, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:29:28,184 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:28,185 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.468000 seconds\n", "2024-10-11 06:29:28,214 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:28,215 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.432000 seconds\n", "2024-10-11 06:29:28,221 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:28,222 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

explained daisy,

', 'params': {'stability': 0.4, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:29:28,234 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:28,235 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:28,237 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.446000 seconds\n", "2024-10-11 06:29:28,238 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Of course you will,

', 'params': {'stability': 0.5, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:29:28,244 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:28,246 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.402000 seconds\n", "2024-10-11 06:29:28,259 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:28,260 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.456000 seconds\n", "2024-10-11 06:29:28,292 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:28,293 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.466000 seconds\n", "2024-10-11 06:29:28,310 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:28,311 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.448000 seconds\n", "2024-10-11 06:29:28,396 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:28,397 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Confirmed Daisy.

', 'params': {'stability': 0.3, 'similarity_boost': 0.8, 'style': 0.8}}\n", "2024-10-11 06:29:29,111 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:29,113 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Jordan\\'s going to play in the tournament tomorrow,\\n \\n

\\n
', 'params': {'stability': 0.3, 'similarity_boost': 0.8, 'style': 0.6}}\n", "2024-10-11 06:29:29,687 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:29,689 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n She looked at me.\\n \\n

\\n
', 'params': {'stability': 0.8, 'similarity_boost': 0.4, 'style': 0.5}}\n", "2024-10-11 06:29:29,778 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:29,786 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:29,791 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:29,818 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:29,856 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:29,895 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:29,898 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:30,184 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:30,188 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.242000 seconds\n", "2024-10-11 06:29:30,211 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:30,212 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.242000 seconds\n", "2024-10-11 06:29:30,330 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:30,331 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.124000 seconds\n", "2024-10-11 06:29:30,360 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:30,362 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.168000 seconds\n", "2024-10-11 06:29:30,673 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:30,678 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.874000 seconds\n", "2024-10-11 06:29:30,878 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:30,880 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.640000 seconds\n", "2024-10-11 06:29:31,593 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:31,596 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.498000 seconds\n", "2024-10-11 06:29:31,598 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:31,600 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.456000 seconds\n", "2024-10-11 06:29:31,653 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:31,655 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.458000 seconds\n", "2024-10-11 06:29:31,677 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:31,678 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.480000 seconds\n", "2024-10-11 06:29:31,691 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:31,693 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.466000 seconds\n", "2024-10-11 06:29:32,593 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:32,597 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

did I?

', 'params': {'stability': 0.4, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:29:33,238 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:33,249 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:33,298 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:33,299 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:33,331 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:33,333 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n over at \\n Westchester.\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:29:33,443 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:33,444 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.358000 seconds\n", "2024-10-11 06:29:33,912 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:33,915 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.924000 seconds\n", "2024-10-11 06:29:34,479 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:34,482 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.424000 seconds\n", "2024-10-11 06:29:34,629 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:34,633 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.246000 seconds\n", "2024-10-11 06:29:34,746 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:34,751 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Who oughtn’t to?

', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:29:34,977 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:34,980 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.560000 seconds\n", "2024-10-11 06:29:35,019 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:35,021 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.558000 seconds\n", "2024-10-11 06:29:35,047 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:35,049 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.524000 seconds\n", "2024-10-11 06:29:36,711 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:36,716 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:37,509 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:37,513 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

from louisville. our white girlhood was passed together there. our beautiful white—

', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.5}}\n", "2024-10-11 06:29:39,261 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:39,265 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n I can’t seem to remember, \\n but I think we talked about the Nordic race.\\n \\n \\n Yes, I’m sure we did.\\n \\n It sort of crept up on us \\n and first thing you know—\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.5}}\n", "2024-10-11 06:29:42,628 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:42,633 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n In fact I think\\n I\\'ll arrange a marriage.\\n \\n \\n Come over often, Nick, \\n and I\\'ll sort of— \\n oh—fling you together.\\n \\n \\n You know—lock you up accidentally \\n in linen closets\\n and push you out to sea in a boat, \\n and all that sort of thing—\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.6, 'style': 0.7}}\n", "2024-10-11 06:29:43,820 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:43,822 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n her family is one aunt about a thousand years old.\\n \\n \\n besides, nick’s going to look after her, aren’t you, nick?\\n \\n \\n she’s going to spend lots of weekends out here this summer.\\n \\n \\n I think the home influence will be very good for her.\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:29:43,823 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'iF50bA7r44CX1fJy2usA', 'text': '\\n

\\n \\n Jordan\\'s going to play in the tournament tomorrow,\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.3, similarity_boost=0.8, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:29:43,827 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'iF50bA7r44CX1fJy2usA', 'text': '

explained daisy,

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:29:43,828 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'iF50bA7r44CX1fJy2usA', 'text': '\\n

\\n \\n over at \\n Westchester.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:29:43,830 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'iF50bA7r44CX1fJy2usA', 'text': 'if you’ll get up.', 'voice_settings': VoiceSettings(stability=0.3, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:29:43,831 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'iF50bA7r44CX1fJy2usA', 'text': '

Of course you will,

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:29:43,832 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'iF50bA7r44CX1fJy2usA', 'text': '

Confirmed Daisy.

', 'voice_settings': VoiceSettings(stability=0.3, similarity_boost=0.8, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:29:43,833 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'iF50bA7r44CX1fJy2usA', 'text': '\\n

\\n \\n In fact I think\\n I\\'ll arrange a marriage.\\n \\n \\n Come over often, Nick, \\n and I\\'ll sort of— \\n oh—fling you together.\\n \\n \\n You know—lock you up accidentally \\n in linen closets\\n and push you out to sea in a boat, \\n and all that sort of thing—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.6, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:29:43,833 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'iF50bA7r44CX1fJy2usA', 'text': '

Who oughtn’t to?

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:29:43,834 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'iF50bA7r44CX1fJy2usA', 'text': '\\n

\\n \\n her family is one aunt about a thousand years old.\\n \\n \\n besides, nick’s going to look after her, aren’t you, nick?\\n \\n \\n she’s going to spend lots of weekends out here this summer.\\n \\n \\n I think the home influence will be very good for her.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:29:43,834 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'iF50bA7r44CX1fJy2usA', 'text': '

from louisville. our white girlhood was passed together there. our beautiful white—

', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.5, use_speaker_boost=None)}\n", "2024-10-11 06:29:43,836 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'iF50bA7r44CX1fJy2usA', 'text': '

did I?

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:29:43,837 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'iF50bA7r44CX1fJy2usA', 'text': '\\n

\\n \\n She looked at me.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.8, similarity_boost=0.4, style=0.5, use_speaker_boost=None)}\n", "2024-10-11 06:29:43,837 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'iF50bA7r44CX1fJy2usA', 'text': '\\n

\\n \\n I can’t seem to remember, \\n but I think we talked about the Nordic race.\\n \\n \\n Yes, I’m sure we did.\\n \\n It sort of crept up on us \\n and first thing you know—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.5, use_speaker_boost=None)}\n", "2024-10-11 06:29:45,188 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/iF50bA7r44CX1fJy2usA \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:45,451 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/iF50bA7r44CX1fJy2usA \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:45,585 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/iF50bA7r44CX1fJy2usA \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:46,315 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/iF50bA7r44CX1fJy2usA \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:46,415 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/iF50bA7r44CX1fJy2usA \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:46,745 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/iF50bA7r44CX1fJy2usA \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:47,206 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/iF50bA7r44CX1fJy2usA \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:47,383 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/iF50bA7r44CX1fJy2usA \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:48,031 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/iF50bA7r44CX1fJy2usA \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:48,138 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/iF50bA7r44CX1fJy2usA \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:48,191 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/iF50bA7r44CX1fJy2usA \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:48,672 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/iF50bA7r44CX1fJy2usA \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:50,264 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/iF50bA7r44CX1fJy2usA \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:51,954 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:51,956 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.716000 seconds\n", "2024-10-11 06:29:51,958 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:51,960 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:51,961 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.674000 seconds\n", "2024-10-11 06:29:51,963 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.632000 seconds\n", "2024-10-11 06:29:51,964 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:51,966 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:51,967 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.638000 seconds\n", "2024-10-11 06:29:51,968 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.658000 seconds\n", "2024-10-11 06:29:51,969 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:51,970 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:51,972 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.774000 seconds\n", "2024-10-11 06:29:51,973 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.632000 seconds\n", "2024-10-11 06:29:52,743 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:52,745 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.478000 seconds\n", "2024-10-11 06:29:52,747 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:52,749 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.468000 seconds\n", "2024-10-11 06:29:52,767 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:52,769 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.472000 seconds\n", "2024-10-11 06:29:52,773 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:52,775 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.488000 seconds\n", "2024-10-11 06:29:52,809 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:52,810 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.478000 seconds\n", "2024-10-11 06:29:52,887 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:52,888 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.438000 seconds\n", "2024-10-11 06:29:53,485 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:53,488 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Did I?

', 'params': {'stability': 0.3, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:29:53,490 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:53,492 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:53,495 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n \\n Of course you will,\\n \\n', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:29:53,497 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

who oughtn’t to?

', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:29:53,790 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:53,794 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n over at Westchester.\\n \\n

\\n
', 'params': {'stability': 0.9, 'similarity_boost': 0.4, 'style': 0.2}}\n", "2024-10-11 06:29:53,810 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:53,812 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

She looked at me, her eyes searching for something unspoken, a silent connection, awaiting a response.

', 'params': {'stability': 0.6, 'similarity_boost': 0.6, 'style': 0.7}}\n", "2024-10-11 06:29:54,251 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:54,255 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

explained daisy,

', 'params': {'stability': 0.4, 'similarity_boost': 0.6, 'style': 0.7}}\n", "2024-10-11 06:29:54,360 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:54,377 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:54,402 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:54,431 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:54,463 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:54,854 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:54,858 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.206000 seconds\n", "2024-10-11 06:29:55,087 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:55,091 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n In fact, I think I’ll arrange a marriage.\\n \\n \\n Come over often, Nick, and I’ll sort of—oh—\\n fling you together.\\n \\n \\n You know—lock you up accidentally in linen closets and push you out to sea in a boat, and all that sort of thing—\\n \\n

\\n
', 'params': {'stability': 0.3, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:29:55,171 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:55,173 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.138000 seconds\n", "2024-10-11 06:29:55,278 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:55,279 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.098000 seconds\n", "2024-10-11 06:29:55,397 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:55,399 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.926000 seconds\n", "2024-10-11 06:29:55,491 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:55,494 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.850000 seconds\n", "2024-10-11 06:29:55,944 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:55,949 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Confirmed Daisy.\\n \\n

\\n
', 'params': {'stability': 0.4, 'similarity_boost': 0.8, 'style': 0.9}}\n", "2024-10-11 06:29:56,200 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:56,205 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.250000 seconds\n", "2024-10-11 06:29:56,476 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:56,480 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.516000 seconds\n", "2024-10-11 06:29:56,482 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:56,485 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.534000 seconds\n", "2024-10-11 06:29:56,517 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:56,519 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.532000 seconds\n", "2024-10-11 06:29:56,599 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:57,385 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:57,389 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.708000 seconds\n", "2024-10-11 06:29:57,784 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:57,790 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

If you’ll get up.

', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.5}}\n", "2024-10-11 06:29:58,173 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:58,186 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:58,239 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:58,241 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.494000 seconds\n", "2024-10-11 06:29:58,897 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:58,900 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.744000 seconds\n", "2024-10-11 06:29:59,383 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:59,385 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.312000 seconds\n", "2024-10-11 06:29:59,702 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:29:59,707 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Jordan\\'s going to play in the tournament tomorrow,\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:29:59,840 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:29:59,843 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.606000 seconds\n", "2024-10-11 06:29:59,877 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:00,381 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:00,385 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.110000 seconds\n", "2024-10-11 06:30:01,696 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:01,701 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

from Louisville. Our white girlhood was passed together there. Our beautiful white—

', 'params': {'stability': 0.4, 'similarity_boost': 0.6, 'style': 0.7}}\n", "2024-10-11 06:30:01,827 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:02,688 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:02,692 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.648000 seconds\n", "2024-10-11 06:30:04,322 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:04,324 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Her family is one aunt about a thousand years old.\\n \\n \\n Besides, Nick’s going to look after her, aren’t you, Nick? \\n \\n \\n She’s going to spend lots of weekends out here this summer.\\n \\n \\n I think the home influence will be very good for her.\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.6, 'style': 0.7}}\n", "2024-10-11 06:30:05,873 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:05,877 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n I can\\'t seem to remember, but I think we talked about the Nordic race.\\n \\n \\n Yes, I\\'m sure we did. \\n It sort of crept up on us and first thing you know—\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:30:05,879 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'kkLI93Bj55ThFTv6zs13', 'text': '\\n

\\n \\n Jordan\\'s going to play in the tournament tomorrow,\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:30:05,883 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'kkLI93Bj55ThFTv6zs13', 'text': '

explained daisy,

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.6, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:30:05,884 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'kkLI93Bj55ThFTv6zs13', 'text': '\\n

\\n \\n over at Westchester.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.9, similarity_boost=0.4, style=0.2, use_speaker_boost=None)}\n", "2024-10-11 06:30:05,887 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'kkLI93Bj55ThFTv6zs13', 'text': '

If you’ll get up.

', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.5, use_speaker_boost=None)}\n", "2024-10-11 06:30:05,888 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'kkLI93Bj55ThFTv6zs13', 'text': '\\n \\n Of course you will,\\n \\n', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:30:05,889 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'kkLI93Bj55ThFTv6zs13', 'text': '\\n

\\n \\n Confirmed Daisy.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.8, style=0.9, use_speaker_boost=None)}\n", "2024-10-11 06:30:05,890 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'kkLI93Bj55ThFTv6zs13', 'text': '\\n

\\n \\n In fact, I think I’ll arrange a marriage.\\n \\n \\n Come over often, Nick, and I’ll sort of—oh—\\n fling you together.\\n \\n \\n You know—lock you up accidentally in linen closets and push you out to sea in a boat, and all that sort of thing—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.3, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:30:05,892 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'kkLI93Bj55ThFTv6zs13', 'text': '

who oughtn’t to?

', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:30:05,893 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'kkLI93Bj55ThFTv6zs13', 'text': '\\n

\\n \\n Her family is one aunt about a thousand years old.\\n \\n \\n Besides, Nick’s going to look after her, aren’t you, Nick? \\n \\n \\n She’s going to spend lots of weekends out here this summer.\\n \\n \\n I think the home influence will be very good for her.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.6, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:30:05,894 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'kkLI93Bj55ThFTv6zs13', 'text': '

from Louisville. Our white girlhood was passed together there. Our beautiful white—

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.6, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:30:05,895 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'kkLI93Bj55ThFTv6zs13', 'text': '

Did I?

', 'voice_settings': VoiceSettings(stability=0.3, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:30:05,896 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'kkLI93Bj55ThFTv6zs13', 'text': '

She looked at me, her eyes searching for something unspoken, a silent connection, awaiting a response.

', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.6, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:30:05,899 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'kkLI93Bj55ThFTv6zs13', 'text': '\\n

\\n \\n I can\\'t seem to remember, but I think we talked about the Nordic race.\\n \\n \\n Yes, I\\'m sure we did. \\n It sort of crept up on us and first thing you know—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:30:07,002 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/kkLI93Bj55ThFTv6zs13 \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:07,003 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/kkLI93Bj55ThFTv6zs13 \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:07,005 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/kkLI93Bj55ThFTv6zs13 \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:07,012 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/kkLI93Bj55ThFTv6zs13 \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:07,033 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/kkLI93Bj55ThFTv6zs13 \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:07,039 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/kkLI93Bj55ThFTv6zs13 \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:07,089 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/kkLI93Bj55ThFTv6zs13 \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:07,223 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/kkLI93Bj55ThFTv6zs13 \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:07,817 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/kkLI93Bj55ThFTv6zs13 \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:08,155 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/kkLI93Bj55ThFTv6zs13 \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:08,396 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/kkLI93Bj55ThFTv6zs13 \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:09,358 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/kkLI93Bj55ThFTv6zs13 \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:09,396 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/kkLI93Bj55ThFTv6zs13 \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:11,190 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:11,191 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.024000 seconds\n", "2024-10-11 06:30:11,193 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:11,194 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.009000 seconds\n", "2024-10-11 06:30:11,199 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:11,199 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.013000 seconds\n", "2024-10-11 06:30:11,200 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:11,202 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.078000 seconds\n", "2024-10-11 06:30:11,206 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:11,208 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:11,209 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.050000 seconds\n", "2024-10-11 06:30:11,212 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.042000 seconds\n", "2024-10-11 06:30:11,212 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:11,214 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:11,215 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.009000 seconds\n", "2024-10-11 06:30:11,217 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.006000 seconds\n", "2024-10-11 06:30:11,218 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:11,219 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.013000 seconds\n", "2024-10-11 06:30:12,348 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:12,348 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.490000 seconds\n", "2024-10-11 06:30:12,356 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:12,356 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.490000 seconds\n", "2024-10-11 06:30:12,357 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:12,358 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.478000 seconds\n", "2024-10-11 06:30:12,359 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:12,360 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.472000 seconds\n", "2024-10-11 06:30:12,365 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:12,366 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.468000 seconds\n", "2024-10-11 06:30:12,390 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:12,392 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.478000 seconds\n", "2024-10-11 06:30:12,392 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:12,393 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.462000 seconds\n", "2024-10-11 06:30:12,430 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:12,431 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.482000 seconds\n", "2024-10-11 06:30:12,836 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:12,838 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Confirmed, \\n Daisy.\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.8, 'style': 0.6}}\n", "2024-10-11 06:30:12,839 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:12,840 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n if you’ll get up.\\n \\n

\\n
', 'params': {'stability': 0.3, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:30:13,758 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:13,761 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

did I?

', 'params': {'stability': 0.4, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:30:13,972 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:13,977 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:13,980 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:13,981 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:13,994 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:14,014 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:14,026 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:14,029 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Her family is one aunt about a thousand years old.\\n \\n \\n Besides, Nick\\'s going to look after her, aren\\'t you, Nick?\\n \\n \\n She\\'s going to spend lots of weekends out here this summer.\\n \\n \\n I think the home influence will be very good for her.\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:30:14,053 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:14,219 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:14,221 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.388000 seconds\n", "2024-10-11 06:30:14,558 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:14,561 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.028000 seconds\n", "2024-10-11 06:30:14,562 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:14,565 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.013000 seconds\n", "2024-10-11 06:30:14,835 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:14,837 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.804000 seconds\n", "2024-10-11 06:30:14,866 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:14,868 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.706000 seconds\n", "2024-10-11 06:30:14,893 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:14,894 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.668000 seconds\n", "2024-10-11 06:30:14,946 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:14,947 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.616000 seconds\n", "2024-10-11 06:30:15,041 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:15,043 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': 'of course you will,', 'params': {'stability': 0.4, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:30:15,503 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:15,508 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n In fact, I think I\\'ll arrange a marriage.\\n \\n \\n Come over often, Nick, \\n and I\\'ll sort of— ohfling you together.\\n \\n \\n You know—lock you up accidentally in linen closets \\n and push you out to sea in a boat, \\n and all that sort of thing—\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:30:15,701 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:15,704 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.220000 seconds\n", "2024-10-11 06:30:15,707 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:15,709 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.206000 seconds\n", "2024-10-11 06:30:15,715 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:15,716 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.200000 seconds\n", "2024-10-11 06:30:15,718 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:15,720 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.198000 seconds\n", "2024-10-11 06:30:15,725 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:15,727 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.234000 seconds\n", "2024-10-11 06:30:15,748 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:15,749 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.202000 seconds\n", "2024-10-11 06:30:15,779 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:15,781 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.210000 seconds\n", "2024-10-11 06:30:16,054 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:16,058 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:16,062 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:16,085 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:16,103 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:16,132 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:16,266 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:16,268 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.310000 seconds\n", "2024-10-11 06:30:16,489 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:16,492 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.054000 seconds\n", "2024-10-11 06:30:16,557 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:16,560 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.007000 seconds\n", "2024-10-11 06:30:16,898 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:16,901 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.648000 seconds\n", "2024-10-11 06:30:17,010 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:17,012 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.606000 seconds\n", "2024-10-11 06:30:17,675 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:17,680 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Who oughtn’t to?\\n \\n

\\n
', 'params': {'stability': 0.4, 'similarity_boost': 0.8, 'style': 0.6}}\n", "2024-10-11 06:30:17,697 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:17,699 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.484000 seconds\n", "2024-10-11 06:30:17,701 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:17,703 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.496000 seconds\n", "2024-10-11 06:30:17,723 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:17,725 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.494000 seconds\n", "2024-10-11 06:30:17,765 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:17,796 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.492000 seconds\n", "2024-10-11 06:30:18,157 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:18,160 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.034000 seconds\n", "2024-10-11 06:30:19,185 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:19,189 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n She looked at me.\\n \\n

\\n
', 'params': {'stability': 0.9, 'similarity_boost': 0.4, 'style': 0.2}}\n", "2024-10-11 06:30:19,331 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:19,343 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:19,353 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:19,424 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:20,680 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:20,684 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

over at Westchester.

', 'params': {'stability': 0.8, 'similarity_boost': 0.4, 'style': 0.2}}\n", "2024-10-11 06:30:22,146 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:22,148 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.404000 seconds\n", "2024-10-11 06:30:22,775 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:22,777 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.414000 seconds\n", "2024-10-11 06:30:23,430 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:23,432 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.764000 seconds\n", "2024-10-11 06:30:24,000 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:24,005 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n from louisville.\\n \\n our white girlhood was passed together there.\\n \\n \\n our beautiful white—\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:30:24,334 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:24,337 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.610000 seconds\n", "2024-10-11 06:30:25,024 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:25,030 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n I can’t seem to remember, \\n but I think we talked about the Nordic race.\\n \\n \\n Yes, I’m sure we did.\\n It sort of crept up on us and\\n first thing you know—\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.5}}\n", "2024-10-11 06:30:26,094 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:26,122 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:26,125 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Jordan’s going to play in the tournament tomorrow,\\n isn\\'t it exciting?\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.5}}\n", "2024-10-11 06:30:30,039 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:30,042 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

explained daisy,

', 'params': {'stability': 0.3, 'similarity_boost': 0.8, 'style': 0.9}}\n", "2024-10-11 06:30:30,043 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'lNABL6eI3BpPT8BvSqjK', 'text': '\\n

\\n \\n Jordan’s going to play in the tournament tomorrow,\\n isn\\'t it exciting?\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.5, use_speaker_boost=None)}\n", "2024-10-11 06:30:30,044 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'lNABL6eI3BpPT8BvSqjK', 'text': '

explained daisy,

', 'voice_settings': VoiceSettings(stability=0.3, similarity_boost=0.8, style=0.9, use_speaker_boost=None)}\n", "2024-10-11 06:30:30,045 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'lNABL6eI3BpPT8BvSqjK', 'text': '

over at Westchester.

', 'voice_settings': VoiceSettings(stability=0.8, similarity_boost=0.4, style=0.2, use_speaker_boost=None)}\n", "2024-10-11 06:30:30,046 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'lNABL6eI3BpPT8BvSqjK', 'text': '\\n

\\n \\n if you’ll get up.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.3, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:30:30,047 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'lNABL6eI3BpPT8BvSqjK', 'text': 'of course you will,', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:30:30,048 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'lNABL6eI3BpPT8BvSqjK', 'text': '\\n

\\n \\n Confirmed, \\n Daisy.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.8, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:30:30,049 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'lNABL6eI3BpPT8BvSqjK', 'text': '\\n

\\n \\n In fact, I think I\\'ll arrange a marriage.\\n \\n \\n Come over often, Nick, \\n and I\\'ll sort of— ohfling you together.\\n \\n \\n You know—lock you up accidentally in linen closets \\n and push you out to sea in a boat, \\n and all that sort of thing—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:30:30,049 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'lNABL6eI3BpPT8BvSqjK', 'text': '\\n

\\n \\n Who oughtn’t to?\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.8, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:30:30,050 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'lNABL6eI3BpPT8BvSqjK', 'text': '\\n

\\n \\n Her family is one aunt about a thousand years old.\\n \\n \\n Besides, Nick\\'s going to look after her, aren\\'t you, Nick?\\n \\n \\n She\\'s going to spend lots of weekends out here this summer.\\n \\n \\n I think the home influence will be very good for her.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:30:30,051 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'lNABL6eI3BpPT8BvSqjK', 'text': '\\n

\\n \\n from louisville.\\n \\n our white girlhood was passed together there.\\n \\n \\n our beautiful white—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:30:30,053 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'lNABL6eI3BpPT8BvSqjK', 'text': '

did I?

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:30:30,060 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'lNABL6eI3BpPT8BvSqjK', 'text': '\\n

\\n \\n She looked at me.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.9, similarity_boost=0.4, style=0.2, use_speaker_boost=None)}\n", "2024-10-11 06:30:30,066 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'lNABL6eI3BpPT8BvSqjK', 'text': '\\n

\\n \\n I can’t seem to remember, \\n but I think we talked about the Nordic race.\\n \\n \\n Yes, I’m sure we did.\\n It sort of crept up on us and\\n first thing you know—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.5, use_speaker_boost=None)}\n", "2024-10-11 06:30:31,069 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/lNABL6eI3BpPT8BvSqjK \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:31,079 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/lNABL6eI3BpPT8BvSqjK \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:31,087 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/lNABL6eI3BpPT8BvSqjK \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:31,094 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/lNABL6eI3BpPT8BvSqjK \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:31,108 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/lNABL6eI3BpPT8BvSqjK \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:31,140 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/lNABL6eI3BpPT8BvSqjK \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:31,188 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/lNABL6eI3BpPT8BvSqjK \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:31,612 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/lNABL6eI3BpPT8BvSqjK \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:31,624 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/lNABL6eI3BpPT8BvSqjK \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:31,703 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/lNABL6eI3BpPT8BvSqjK \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:32,190 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/lNABL6eI3BpPT8BvSqjK \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:32,811 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/lNABL6eI3BpPT8BvSqjK \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:33,191 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/lNABL6eI3BpPT8BvSqjK \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:35,233 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:35,235 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.898000 seconds\n", "2024-10-11 06:30:35,237 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:35,238 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:35,240 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.892000 seconds\n", "2024-10-11 06:30:35,241 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.888000 seconds\n", "2024-10-11 06:30:35,242 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:35,243 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:35,244 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.896000 seconds\n", "2024-10-11 06:30:35,246 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.928000 seconds\n", "2024-10-11 06:30:35,247 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:35,247 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:35,248 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:35,250 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.908000 seconds\n", "2024-10-11 06:30:35,251 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.998000 seconds\n", "2024-10-11 06:30:35,252 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.954000 seconds\n", "2024-10-11 06:30:36,275 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:36,276 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.482000 seconds\n", "2024-10-11 06:30:36,278 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:36,279 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.478000 seconds\n", "2024-10-11 06:30:36,297 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:36,299 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.476000 seconds\n", "2024-10-11 06:30:36,307 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:36,308 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.490000 seconds\n", "2024-10-11 06:30:36,309 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:36,310 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.490000 seconds\n", "2024-10-11 06:30:36,356 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:36,363 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.474000 seconds\n", "2024-10-11 06:30:36,386 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:36,388 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.476000 seconds\n", "2024-10-11 06:30:36,470 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:36,472 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

explained daisy,

', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.5}}\n", "2024-10-11 06:30:36,657 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:36,661 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n She looked at me.\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.4, 'style': 0.2}}\n", "2024-10-11 06:30:36,695 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:36,697 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n over at Westchester.\\n \\n

\\n
', 'params': {'stability': 0.9, 'similarity_boost': 0.4, 'style': 0.2}}\n", "2024-10-11 06:30:36,818 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:36,820 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Of course you will,

', 'params': {'stability': 0.5, 'similarity_boost': 0.6, 'style': 0.6}}\n", "2024-10-11 06:30:37,619 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:37,623 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': 'did I?', 'params': {'stability': 0.2, 'similarity_boost': 0.8, 'style': 0.8}}\n", "2024-10-11 06:30:37,902 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:37,910 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:37,936 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:37,939 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:37,980 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:37,995 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:38,187 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:38,191 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n In fact, I think I\\'ll arrange a marriage.\\n \\n \\n Come over often, Nick, \\n and I\\'ll sort of— oh—fling you together.\\n \\n \\n You know—lock you up accidentally in linen closets \\n and push you out to sea in a boat, \\n and all that sort of thing—\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:30:38,282 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:38,285 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.486000 seconds\n", "2024-10-11 06:30:38,393 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:38,394 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.482000 seconds\n", "2024-10-11 06:30:38,397 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:38,398 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.390000 seconds\n", "2024-10-11 06:30:38,414 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:38,415 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.386000 seconds\n", "2024-10-11 06:30:38,643 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:38,649 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.228000 seconds\n", "2024-10-11 06:30:38,741 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:38,743 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.024000 seconds\n", "2024-10-11 06:30:39,909 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:39,911 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.486000 seconds\n", "2024-10-11 06:30:39,925 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:39,927 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.490000 seconds\n", "2024-10-11 06:30:39,933 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:39,935 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.498000 seconds\n", "2024-10-11 06:30:40,014 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:40,015 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.496000 seconds\n", "2024-10-11 06:30:40,017 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:40,018 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.450000 seconds\n", "2024-10-11 06:30:41,554 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:41,569 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:41,605 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:41,656 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:41,707 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:41,709 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n who oughtn’t to?\\n \\n

\\n
', 'params': {'stability': 0.4, 'similarity_boost': 0.6, 'style': 0.8}}\n", "2024-10-11 06:30:41,800 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:41,803 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

if you\\'ll get up.

', 'params': {'stability': 0.4, 'similarity_boost': 0.8, 'style': 0.6}}\n", "2024-10-11 06:30:42,777 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:42,781 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.340000 seconds\n", "2024-10-11 06:30:43,007 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:43,012 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.154000 seconds\n", "2024-10-11 06:30:43,312 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:43,314 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.464000 seconds\n", "2024-10-11 06:30:43,398 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:43,400 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.410000 seconds\n", "2024-10-11 06:30:43,509 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:43,511 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.338000 seconds\n", "2024-10-11 06:30:43,541 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:43,543 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Confirmed. Daisy.\\n \\n

\\n
', 'params': {'stability': 0.3, 'similarity_boost': 0.9, 'style': 0.9}}\n", "2024-10-11 06:30:44,950 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:44,953 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.560000 seconds\n", "2024-10-11 06:30:44,983 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:44,984 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.568000 seconds\n", "2024-10-11 06:30:45,309 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:45,311 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Jordan\\'s \\n going to play \\n in the tournament \\n tomorrow,\\n \\n

\\n
', 'params': {'stability': 0.4, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:30:46,692 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:46,799 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:46,804 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

from louisville. our white girlhood was passed together there. our beautiful white—

', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:30:47,218 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:47,220 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.246000 seconds\n", "2024-10-11 06:30:49,700 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:49,703 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n I can\\'t seem to remember, \\n but I think we talked about the Nordic race.\\n \\n \\n Yes, \\n I\\'m sure we did.\\n \\n \\n It sort of crept up on us \\n and first thing you know—\\n \\n

\\n
', 'params': {'stability': 0.3, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:30:51,851 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:51,853 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Her family is one aunt about a thousand years old.\\n \\n \\n Besides, Nick’s going to look after her, aren’t you, Nick?\\n \\n \\n She’s going to spend lots of weekends out here this summer.\\n \\n \\n I think the home influence will be very good for her.\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.5}}\n", "2024-10-11 06:30:51,853 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'lXiTM9o7sfY7DaHQXALn', 'text': '\\n

\\n \\n Jordan\\'s \\n going to play \\n in the tournament \\n tomorrow,\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:30:51,855 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'lXiTM9o7sfY7DaHQXALn', 'text': '

explained daisy,

', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.5, use_speaker_boost=None)}\n", "2024-10-11 06:30:51,856 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'lXiTM9o7sfY7DaHQXALn', 'text': '\\n

\\n \\n over at Westchester.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.9, similarity_boost=0.4, style=0.2, use_speaker_boost=None)}\n", "2024-10-11 06:30:51,857 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'lXiTM9o7sfY7DaHQXALn', 'text': '

if you\\'ll get up.

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.8, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:30:51,857 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'lXiTM9o7sfY7DaHQXALn', 'text': '

Of course you will,

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.6, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:30:51,858 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'lXiTM9o7sfY7DaHQXALn', 'text': '\\n

\\n \\n Confirmed. Daisy.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.3, similarity_boost=0.9, style=0.9, use_speaker_boost=None)}\n", "2024-10-11 06:30:51,859 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'lXiTM9o7sfY7DaHQXALn', 'text': '\\n

\\n \\n In fact, I think I\\'ll arrange a marriage.\\n \\n \\n Come over often, Nick, \\n and I\\'ll sort of— oh—fling you together.\\n \\n \\n You know—lock you up accidentally in linen closets \\n and push you out to sea in a boat, \\n and all that sort of thing—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:30:51,860 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'lXiTM9o7sfY7DaHQXALn', 'text': '\\n

\\n \\n who oughtn’t to?\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.6, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:30:51,861 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'lXiTM9o7sfY7DaHQXALn', 'text': '\\n

\\n \\n Her family is one aunt about a thousand years old.\\n \\n \\n Besides, Nick’s going to look after her, aren’t you, Nick?\\n \\n \\n She’s going to spend lots of weekends out here this summer.\\n \\n \\n I think the home influence will be very good for her.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.5, use_speaker_boost=None)}\n", "2024-10-11 06:30:51,862 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'lXiTM9o7sfY7DaHQXALn', 'text': '

from louisville. our white girlhood was passed together there. our beautiful white—

', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:30:51,862 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'lXiTM9o7sfY7DaHQXALn', 'text': 'did I?', 'voice_settings': VoiceSettings(stability=0.2, similarity_boost=0.8, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:30:51,863 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'lXiTM9o7sfY7DaHQXALn', 'text': '\\n

\\n \\n She looked at me.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.4, style=0.2, use_speaker_boost=None)}\n", "2024-10-11 06:30:51,863 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'lXiTM9o7sfY7DaHQXALn', 'text': '\\n

\\n \\n I can\\'t seem to remember, \\n but I think we talked about the Nordic race.\\n \\n \\n Yes, \\n I\\'m sure we did.\\n \\n \\n It sort of crept up on us \\n and first thing you know—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.3, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:30:53,283 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/lXiTM9o7sfY7DaHQXALn \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:53,398 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/lXiTM9o7sfY7DaHQXALn \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:53,899 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/lXiTM9o7sfY7DaHQXALn \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:54,512 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/lXiTM9o7sfY7DaHQXALn \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:55,029 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/lXiTM9o7sfY7DaHQXALn \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:55,389 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/lXiTM9o7sfY7DaHQXALn \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:55,559 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/lXiTM9o7sfY7DaHQXALn \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:55,607 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/lXiTM9o7sfY7DaHQXALn \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:55,683 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/lXiTM9o7sfY7DaHQXALn \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:56,085 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/lXiTM9o7sfY7DaHQXALn \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:56,161 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/lXiTM9o7sfY7DaHQXALn \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:56,376 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/lXiTM9o7sfY7DaHQXALn \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:57,078 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/lXiTM9o7sfY7DaHQXALn \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:30:58,592 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:58,594 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.286000 seconds\n", "2024-10-11 06:30:58,597 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:58,598 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.346000 seconds\n", "2024-10-11 06:30:58,599 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:58,600 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.288000 seconds\n", "2024-10-11 06:30:58,601 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:58,602 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:58,603 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.272000 seconds\n", "2024-10-11 06:30:58,604 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.388000 seconds\n", "2024-10-11 06:30:58,605 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:58,606 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:58,606 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:58,608 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.272000 seconds\n", "2024-10-11 06:30:58,609 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.274000 seconds\n", "2024-10-11 06:30:58,610 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.380000 seconds\n", "2024-10-11 06:30:59,016 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:59,017 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.488000 seconds\n", "2024-10-11 06:30:59,018 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:59,020 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.492000 seconds\n", "2024-10-11 06:30:59,023 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:59,024 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.490000 seconds\n", "2024-10-11 06:30:59,025 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:59,026 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.482000 seconds\n", "2024-10-11 06:30:59,080 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:59,081 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.494000 seconds\n", "2024-10-11 06:30:59,126 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:59,127 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.488000 seconds\n", "2024-10-11 06:30:59,132 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:30:59,133 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.482000 seconds\n", "2024-10-11 06:31:00,297 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:00,301 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Of course you will,

', 'params': {'stability': 0.6, 'similarity_boost': 0.6, 'style': 0.6}}\n", "2024-10-11 06:31:00,343 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:00,345 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Jordan’s going to play in the tournament tomorrow,\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:31:00,524 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:00,528 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Confirmed Daisy.\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:31:00,629 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:00,631 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

if you\\'ll get up.

', 'params': {'stability': 0.4, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:31:00,660 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:00,681 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:00,682 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:00,718 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:00,758 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:00,761 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:00,886 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:00,888 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

over at westchester.

', 'params': {'stability': 0.8, 'similarity_boost': 0.4, 'style': 0.2}}\n", "2024-10-11 06:31:00,925 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:00,926 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.406000 seconds\n", "2024-10-11 06:31:00,972 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:00,973 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.296000 seconds\n", "2024-10-11 06:31:01,028 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:01,029 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.240000 seconds\n", "2024-10-11 06:31:01,089 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:01,090 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.170000 seconds\n", "2024-10-11 06:31:01,345 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:01,348 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.036000 seconds\n", "2024-10-11 06:31:01,350 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:01,352 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.024000 seconds\n", "2024-10-11 06:31:01,990 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:01,994 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n From Louisville. \\n Our white girlhood \\n was passed together there.\\n \\n \\n Our beautiful white—\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.8, 'style': 0.9}}\n", "2024-10-11 06:31:02,389 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:02,392 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

did I?

', 'params': {'stability': 0.3, 'similarity_boost': 0.8, 'style': 0.9}}\n", "2024-10-11 06:31:02,404 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:02,406 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.018000 seconds\n", "2024-10-11 06:31:02,407 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:02,410 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.018000 seconds\n", "2024-10-11 06:31:02,415 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:02,420 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.016000 seconds\n", "2024-10-11 06:31:02,471 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:02,472 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.018000 seconds\n", "2024-10-11 06:31:02,514 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:02,515 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.014000 seconds\n", "2024-10-11 06:31:02,523 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:02,524 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.016000 seconds\n", "2024-10-11 06:31:02,567 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:02,570 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:02,633 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:02,675 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:02,685 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:02,769 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:02,770 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.278000 seconds\n", "2024-10-11 06:31:02,813 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:02,815 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.242000 seconds\n", "2024-10-11 06:31:03,075 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:03,078 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.090000 seconds\n", "2024-10-11 06:31:03,732 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:03,735 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.394000 seconds\n", "2024-10-11 06:31:04,091 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:04,096 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.066000 seconds\n", "2024-10-11 06:31:04,187 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:04,189 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.488000 seconds\n", "2024-10-11 06:31:04,208 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:04,217 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

she looked at me.

', 'params': {'stability': 0.9, 'similarity_boost': 0.4, 'style': 0.2}}\n", "2024-10-11 06:31:04,269 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:04,270 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.458000 seconds\n", "2024-10-11 06:31:04,301 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:04,302 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.460000 seconds\n", "2024-10-11 06:31:04,303 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:04,304 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.470000 seconds\n", "2024-10-11 06:31:05,678 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:05,682 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

explained daisy,

', 'params': {'stability': 0.4, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:31:05,865 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:05,905 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:05,908 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:06,115 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:06,116 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.290000 seconds\n", "2024-10-11 06:31:06,848 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:06,851 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.514000 seconds\n", "2024-10-11 06:31:07,380 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:07,382 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n who oughtn’t to?\\n \\n

\\n
', 'params': {'stability': 0.4, 'similarity_boost': 0.6, 'style': 0.7}}\n", "2024-10-11 06:31:07,504 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:07,506 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.630000 seconds\n", "2024-10-11 06:31:07,541 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:07,543 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.632000 seconds\n", "2024-10-11 06:31:09,312 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:09,733 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:09,735 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.134000 seconds\n", "2024-10-11 06:31:11,410 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:11,414 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n In fact, I think I’ll arrange a marriage.\\n \\n \\n Come over often, Nick,\\n and I’ll sort of—oh—fling you together.\\n \\n \\n You know—\\n lock you up accidentally in linen closets\\n and push you out to sea in a boat,\\n and all that sort of thing—\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.5}}\n", "2024-10-11 06:31:12,639 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:12,642 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n I can\\'t seem to remember,\\n \\n but I think we talked about the Nordic race.\\n \\n \\n Yes, I’m sure we did.\\n \\n It sort of crept up on us \\n and first thing you know—\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:31:13,662 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:13,665 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Her family is one aunt about a thousand years old. Besides, Nick’s going to look after her, aren’t you, Nick? She’s going to spend lots of weekends out here this summer. I think the home influence will be very good for her.

', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:31:13,666 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'll4WlnkgyMC3yM7qiFTp', 'text': '\\n

\\n \\n Jordan’s going to play in the tournament tomorrow,\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:31:13,670 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'll4WlnkgyMC3yM7qiFTp', 'text': '

explained daisy,

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:31:13,671 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'll4WlnkgyMC3yM7qiFTp', 'text': '

over at westchester.

', 'voice_settings': VoiceSettings(stability=0.8, similarity_boost=0.4, style=0.2, use_speaker_boost=None)}\n", "2024-10-11 06:31:13,672 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'll4WlnkgyMC3yM7qiFTp', 'text': '

if you\\'ll get up.

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:31:13,673 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'll4WlnkgyMC3yM7qiFTp', 'text': '

Of course you will,

', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.6, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:31:13,675 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'll4WlnkgyMC3yM7qiFTp', 'text': '\\n

\\n \\n Confirmed Daisy.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:31:13,683 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'll4WlnkgyMC3yM7qiFTp', 'text': '\\n

\\n \\n In fact, I think I’ll arrange a marriage.\\n \\n \\n Come over often, Nick,\\n and I’ll sort of—oh—fling you together.\\n \\n \\n You know—\\n lock you up accidentally in linen closets\\n and push you out to sea in a boat,\\n and all that sort of thing—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.5, use_speaker_boost=None)}\n", "2024-10-11 06:31:13,691 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'll4WlnkgyMC3yM7qiFTp', 'text': '\\n

\\n \\n who oughtn’t to?\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.6, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:31:13,697 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'll4WlnkgyMC3yM7qiFTp', 'text': '

Her family is one aunt about a thousand years old. Besides, Nick’s going to look after her, aren’t you, Nick? She’s going to spend lots of weekends out here this summer. I think the home influence will be very good for her.

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:31:13,722 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'll4WlnkgyMC3yM7qiFTp', 'text': '\\n

\\n \\n From Louisville. \\n Our white girlhood \\n was passed together there.\\n \\n \\n Our beautiful white—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.8, style=0.9, use_speaker_boost=None)}\n", "2024-10-11 06:31:13,726 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'll4WlnkgyMC3yM7qiFTp', 'text': '

did I?

', 'voice_settings': VoiceSettings(stability=0.3, similarity_boost=0.8, style=0.9, use_speaker_boost=None)}\n", "2024-10-11 06:31:13,726 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'll4WlnkgyMC3yM7qiFTp', 'text': '

she looked at me.

', 'voice_settings': VoiceSettings(stability=0.9, similarity_boost=0.4, style=0.2, use_speaker_boost=None)}\n", "2024-10-11 06:31:13,727 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'll4WlnkgyMC3yM7qiFTp', 'text': '\\n

\\n \\n I can\\'t seem to remember,\\n \\n but I think we talked about the Nordic race.\\n \\n \\n Yes, I’m sure we did.\\n \\n It sort of crept up on us \\n and first thing you know—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:31:15,276 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/ll4WlnkgyMC3yM7qiFTp \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:15,339 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/ll4WlnkgyMC3yM7qiFTp \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:15,520 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/ll4WlnkgyMC3yM7qiFTp \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:15,544 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/ll4WlnkgyMC3yM7qiFTp \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:15,958 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/ll4WlnkgyMC3yM7qiFTp \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:16,840 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/ll4WlnkgyMC3yM7qiFTp \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:16,921 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/ll4WlnkgyMC3yM7qiFTp \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:17,296 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/ll4WlnkgyMC3yM7qiFTp \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:17,627 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/ll4WlnkgyMC3yM7qiFTp \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:17,967 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/ll4WlnkgyMC3yM7qiFTp \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:18,033 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/ll4WlnkgyMC3yM7qiFTp \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:18,049 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/ll4WlnkgyMC3yM7qiFTp \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:18,107 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/ll4WlnkgyMC3yM7qiFTp \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:19,695 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:19,696 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.322000 seconds\n", "2024-10-11 06:31:19,698 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:19,699 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.422000 seconds\n", "2024-10-11 06:31:19,701 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:19,702 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.424000 seconds\n", "2024-10-11 06:31:19,703 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:19,704 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.310000 seconds\n", "2024-10-11 06:31:19,705 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:19,706 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:19,707 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.310000 seconds\n", "2024-10-11 06:31:19,708 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.328000 seconds\n", "2024-10-11 06:31:19,709 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:19,710 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:19,710 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:19,711 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.314000 seconds\n", "2024-10-11 06:31:19,712 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.308000 seconds\n", "2024-10-11 06:31:19,713 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.382000 seconds\n", "2024-10-11 06:31:20,150 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:20,151 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.492000 seconds\n", "2024-10-11 06:31:20,159 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:20,160 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.488000 seconds\n", "2024-10-11 06:31:20,170 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:20,171 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.476000 seconds\n", "2024-10-11 06:31:20,175 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:20,176 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.492000 seconds\n", "2024-10-11 06:31:20,235 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:20,236 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.482000 seconds\n", "2024-10-11 06:31:20,262 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:20,263 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.498000 seconds\n", "2024-10-11 06:31:20,270 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:20,271 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.488000 seconds\n", "2024-10-11 06:31:20,411 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:20,413 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.252000 seconds\n", "2024-10-11 06:31:21,137 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:21,141 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

if you\\'ll get up.

', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:31:21,154 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:21,157 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Confirmed! Daisy.

', 'params': {'stability': 0.3, 'similarity_boost': 0.8, 'style': 0.8}}\n", "2024-10-11 06:31:21,158 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:21,161 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

She looked at me.

', 'params': {'stability': 0.9, 'similarity_boost': 0.3, 'style': 0.2}}\n", "2024-10-11 06:31:21,649 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:21,654 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

over at Westchester.

', 'params': {'stability': 0.8, 'similarity_boost': 0.4, 'style': 0.2}}\n", "2024-10-11 06:31:21,777 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:21,780 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

from louisville. our white girlhood was passed together there. our beautiful white—

', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:31:21,789 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:21,793 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:21,804 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:21,806 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:21,862 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:21,898 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:21,900 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:21,997 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:21,998 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.402000 seconds\n", "2024-10-11 06:31:21,999 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:22,000 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.392000 seconds\n", "2024-10-11 06:31:22,083 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:22,085 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.314000 seconds\n", "2024-10-11 06:31:22,095 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:22,097 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.410000 seconds\n", "2024-10-11 06:31:22,510 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:22,512 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.994000 seconds\n", "2024-10-11 06:31:22,635 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:22,637 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.836000 seconds\n", "2024-10-11 06:31:22,925 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:22,926 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.496000 seconds\n", "2024-10-11 06:31:23,042 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:23,044 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

explained daisy,

', 'params': {'stability': 0.5, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:31:23,533 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:23,534 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.470000 seconds\n", "2024-10-11 06:31:23,541 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:23,542 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.468000 seconds\n", "2024-10-11 06:31:23,558 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:23,560 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.458000 seconds\n", "2024-10-11 06:31:23,608 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:23,610 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.458000 seconds\n", "2024-10-11 06:31:23,641 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:23,643 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.464000 seconds\n", "2024-10-11 06:31:23,644 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:23,645 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.464000 seconds\n", "2024-10-11 06:31:25,147 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:25,152 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:25,213 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:25,242 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:25,248 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:25,595 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:25,597 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Did I?\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:31:25,615 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:25,622 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.038000 seconds\n", "2024-10-11 06:31:26,460 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:26,463 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

of course you will,

', 'params': {'stability': 0.4, 'similarity_boost': 0.8, 'style': 0.6}}\n", "2024-10-11 06:31:26,842 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:26,845 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.436000 seconds\n", "2024-10-11 06:31:26,885 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:26,887 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.484000 seconds\n", "2024-10-11 06:31:26,914 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:26,915 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.450000 seconds\n", "2024-10-11 06:31:27,086 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:27,088 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.272000 seconds\n", "2024-10-11 06:31:28,369 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:28,374 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Who oughtn’t to?\\n \\n

\\n
', 'params': {'stability': 0.4, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:31:28,507 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:28,509 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.534000 seconds\n", "2024-10-11 06:31:28,510 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:28,512 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:28,514 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.492000 seconds\n", "2024-10-11 06:31:28,516 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.532000 seconds\n", "2024-10-11 06:31:30,021 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:30,024 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Jordan\\'s going to play in the tournament tomorrow,\\n \\n

\\n
', 'params': {'stability': 0.4, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:31:30,185 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:30,190 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:33,326 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:33,331 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n I can\\'t seem to remember, \\n but I think we talked about the Nordic race.\\n \\n \\n Yes, \\n I\\'m sure we did.\\n \\n \\n It sort of crept up on us \\n \\n and first thing you know—\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.6, 'style': 0.5}}\n", "2024-10-11 06:31:35,211 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:35,215 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

In fact, I think I\\'ll arrange a marriage. Come over often, Nick, and I\\'ll sort of—oh—fling you together. You know—lock you up accidentally in linen closets and push you out to sea in a boat, and all that sort of thing—

', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:31:37,728 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:37,733 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n her family is one aunt about a thousand years old.\\n \\n \\n besides, nick’s going to look after her, aren’t you, nick?\\n \\n \\n she’s going to spend lots of weekends out here this summer.\\n \\n \\n i think the home influence will be very good for her.\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:31:37,734 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'rfkTsdZrVWEVhDycUYn9', 'text': '\\n

\\n \\n Jordan\\'s going to play in the tournament tomorrow,\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:31:37,738 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'rfkTsdZrVWEVhDycUYn9', 'text': '

explained daisy,

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:31:37,740 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'rfkTsdZrVWEVhDycUYn9', 'text': '

over at Westchester.

', 'voice_settings': VoiceSettings(stability=0.8, similarity_boost=0.4, style=0.2, use_speaker_boost=None)}\n", "2024-10-11 06:31:37,742 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'rfkTsdZrVWEVhDycUYn9', 'text': '

if you\\'ll get up.

', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:31:37,743 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'rfkTsdZrVWEVhDycUYn9', 'text': '

of course you will,

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.8, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:31:37,744 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'rfkTsdZrVWEVhDycUYn9', 'text': '

Confirmed! Daisy.

', 'voice_settings': VoiceSettings(stability=0.3, similarity_boost=0.8, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:31:37,746 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'rfkTsdZrVWEVhDycUYn9', 'text': '

In fact, I think I\\'ll arrange a marriage. Come over often, Nick, and I\\'ll sort of—oh—fling you together. You know—lock you up accidentally in linen closets and push you out to sea in a boat, and all that sort of thing—

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:31:37,747 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'rfkTsdZrVWEVhDycUYn9', 'text': '\\n

\\n \\n Who oughtn’t to?\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:31:37,749 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'rfkTsdZrVWEVhDycUYn9', 'text': '\\n

\\n \\n her family is one aunt about a thousand years old.\\n \\n \\n besides, nick’s going to look after her, aren’t you, nick?\\n \\n \\n she’s going to spend lots of weekends out here this summer.\\n \\n \\n i think the home influence will be very good for her.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:31:37,750 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'rfkTsdZrVWEVhDycUYn9', 'text': '

from louisville. our white girlhood was passed together there. our beautiful white—

', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:31:37,751 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'rfkTsdZrVWEVhDycUYn9', 'text': '\\n

\\n \\n Did I?\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:31:37,751 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'rfkTsdZrVWEVhDycUYn9', 'text': '

She looked at me.

', 'voice_settings': VoiceSettings(stability=0.9, similarity_boost=0.3, style=0.2, use_speaker_boost=None)}\n", "2024-10-11 06:31:37,752 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'rfkTsdZrVWEVhDycUYn9', 'text': '\\n

\\n \\n I can\\'t seem to remember, \\n but I think we talked about the Nordic race.\\n \\n \\n Yes, \\n I\\'m sure we did.\\n \\n \\n It sort of crept up on us \\n \\n and first thing you know—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.6, style=0.5, use_speaker_boost=None)}\n", "2024-10-11 06:31:38,750 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/rfkTsdZrVWEVhDycUYn9 \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:38,762 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/rfkTsdZrVWEVhDycUYn9 \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:38,764 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/rfkTsdZrVWEVhDycUYn9 \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:38,773 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/rfkTsdZrVWEVhDycUYn9 \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:38,779 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/rfkTsdZrVWEVhDycUYn9 \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:38,839 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/rfkTsdZrVWEVhDycUYn9 \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:38,843 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/rfkTsdZrVWEVhDycUYn9 \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:38,933 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/rfkTsdZrVWEVhDycUYn9 \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:38,972 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/rfkTsdZrVWEVhDycUYn9 \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:39,571 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/rfkTsdZrVWEVhDycUYn9 \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:39,908 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/rfkTsdZrVWEVhDycUYn9 \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:40,703 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/rfkTsdZrVWEVhDycUYn9 \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:40,780 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/rfkTsdZrVWEVhDycUYn9 \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:42,547 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:42,549 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.234000 seconds\n", "2024-10-11 06:31:42,550 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:42,550 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.262000 seconds\n", "2024-10-11 06:31:42,551 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:42,552 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:42,553 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.154000 seconds\n", "2024-10-11 06:31:42,554 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.154000 seconds\n", "2024-10-11 06:31:42,554 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:42,556 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.150000 seconds\n", "2024-10-11 06:31:42,557 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:42,558 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.258000 seconds\n", "2024-10-11 06:31:42,561 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:42,562 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.168000 seconds\n", "2024-10-11 06:31:42,569 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:42,571 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.154000 seconds\n", "2024-10-11 06:31:42,583 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:42,584 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.120000 seconds\n", "2024-10-11 06:31:42,840 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:42,841 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.502000 seconds\n", "2024-10-11 06:31:42,843 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:42,844 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.490000 seconds\n", "2024-10-11 06:31:42,848 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:42,849 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.486000 seconds\n", "2024-10-11 06:31:42,855 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:42,856 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.472000 seconds\n", "2024-10-11 06:31:42,867 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:42,868 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.496000 seconds\n", "2024-10-11 06:31:42,928 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:42,929 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.488000 seconds\n", "2024-10-11 06:31:42,944 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:42,945 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.500000 seconds\n", "2024-10-11 06:31:42,954 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:42,955 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.490000 seconds\n", "2024-10-11 06:31:44,177 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:44,181 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

of course you will,

', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:31:44,465 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:44,469 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Confirmed, \\n Daisy.\\n \\n

\\n
', 'params': {'stability': 0.3, 'similarity_boost': 0.8, 'style': 0.9}}\n", "2024-10-11 06:31:44,470 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:44,472 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:44,477 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:44,502 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:44,557 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:44,586 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:44,597 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:44,663 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:44,665 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Who oughtn\\'t to?

', 'params': {'stability': 0.4, 'similarity_boost': 0.8, 'style': 0.9}}\n", "2024-10-11 06:31:44,764 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:44,765 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.424000 seconds\n", "2024-10-11 06:31:44,853 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:44,855 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n from louisville. \\n our white girlhood was passed together there.\\n \\n \\n our beautiful white—\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.6, 'style': 0.7}}\n", "2024-10-11 06:31:44,877 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:44,878 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.324000 seconds\n", "2024-10-11 06:31:45,244 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:45,248 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.994000 seconds\n", "2024-10-11 06:31:45,269 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:45,271 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.934000 seconds\n", "2024-10-11 06:31:45,402 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:45,404 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.908000 seconds\n", "2024-10-11 06:31:45,529 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:45,532 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.742000 seconds\n", "2024-10-11 06:31:45,548 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:45,549 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.644000 seconds\n", "2024-10-11 06:31:45,782 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:45,786 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

did i?

', 'params': {'stability': 0.5, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:31:46,332 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:46,334 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.598000 seconds\n", "2024-10-11 06:31:46,338 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:46,339 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.600000 seconds\n", "2024-10-11 06:31:46,341 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:46,342 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.598000 seconds\n", "2024-10-11 06:31:46,377 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:46,378 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.572000 seconds\n", "2024-10-11 06:31:46,415 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:46,417 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.584000 seconds\n", "2024-10-11 06:31:46,447 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:46,448 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.592000 seconds\n", "2024-10-11 06:31:48,075 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:48,088 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:48,137 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:48,186 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:48,188 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:48,549 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:48,550 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.040000 seconds\n", "2024-10-11 06:31:48,655 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:48,660 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.016000 seconds\n", "2024-10-11 06:31:48,685 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:48,687 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.952000 seconds\n", "2024-10-11 06:31:49,025 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:49,029 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.538000 seconds\n", "2024-10-11 06:31:49,091 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:49,094 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

explained daisy,

', 'params': {'stability': 0.4, 'similarity_boost': 0.6, 'style': 0.6}}\n", "2024-10-11 06:31:49,472 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:49,478 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Her family is one aunt about a thousand years old.\\n \\n \\n Besides, Nick’s going to look after her, \\n aren’t you, Nick?\\n \\n \\n She’s going to spend lots of weekends out here this summer.\\n \\n \\n I think the home influence will be very good for her.\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:31:49,701 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:49,703 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.228000 seconds\n", "2024-10-11 06:31:49,727 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:49,730 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.220000 seconds\n", "2024-10-11 06:31:49,749 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:49,751 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.180000 seconds\n", "2024-10-11 06:31:49,779 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:49,781 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.220000 seconds\n", "2024-10-11 06:31:49,816 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:49,818 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.224000 seconds\n", "2024-10-11 06:31:50,066 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:50,068 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.494000 seconds\n", "2024-10-11 06:31:50,086 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:50,141 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:50,182 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:50,732 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:50,735 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

She looked at me.

', 'params': {'stability': 0.9, 'similarity_boost': 0.4, 'style': 0.2}}\n", "2024-10-11 06:31:51,630 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:51,633 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n If you’ll get up.\\n \\n

\\n
', 'params': {'stability': 0.9, 'similarity_boost': 0.2, 'style': 0.5}}\n", "2024-10-11 06:31:51,638 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:51,640 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.036000 seconds\n", "2024-10-11 06:31:51,707 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:51,809 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:51,811 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.522000 seconds\n", "2024-10-11 06:31:53,582 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:53,585 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Jordan’s going to play in the tournament tomorrow,\\n \\n anticipation\\n is in the air.\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.6, 'style': 0.7}}\n", "2024-10-11 06:31:53,762 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:53,764 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.400000 seconds\n", "2024-10-11 06:31:54,879 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:54,882 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.208000 seconds\n", "2024-10-11 06:31:55,305 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:31:55,307 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.488000 seconds\n", "2024-10-11 06:31:56,057 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:56,059 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

In fact, I think I\\'ll arrange a marriage.Come over often, Nick, and I\\'ll sort of—oh— fling you together.You know—lock you up accidentally in linen closets and push you out to sea in a boat, and all that sort of thing—

', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:31:56,669 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:31:56,673 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

over at westchester.

', 'params': {'stability': 0.9, 'similarity_boost': 0.4, 'style': 0.2}}\n", "2024-10-11 06:31:56,929 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:01,381 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:01,383 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n I can’t seem to remember, \\n but I think we talked about the Nordic race.\\n \\n \\n Yes, I’m sure we did.\\n \\n \\n It sort of crept up on us and first thing you know—\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:32:01,384 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'teAOBFSeynXfbyNgq6Ec', 'text': '\\n

\\n \\n Jordan’s going to play in the tournament tomorrow,\\n \\n anticipation\\n is in the air.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.6, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:32:01,386 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'teAOBFSeynXfbyNgq6Ec', 'text': '

explained daisy,

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.6, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:32:01,386 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'teAOBFSeynXfbyNgq6Ec', 'text': '

over at westchester.

', 'voice_settings': VoiceSettings(stability=0.9, similarity_boost=0.4, style=0.2, use_speaker_boost=None)}\n", "2024-10-11 06:32:01,387 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'teAOBFSeynXfbyNgq6Ec', 'text': '\\n

\\n \\n If you’ll get up.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.9, similarity_boost=0.2, style=0.5, use_speaker_boost=None)}\n", "2024-10-11 06:32:01,387 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'teAOBFSeynXfbyNgq6Ec', 'text': '

of course you will,

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:32:01,388 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'teAOBFSeynXfbyNgq6Ec', 'text': '\\n

\\n \\n Confirmed, \\n Daisy.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.3, similarity_boost=0.8, style=0.9, use_speaker_boost=None)}\n", "2024-10-11 06:32:01,389 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'teAOBFSeynXfbyNgq6Ec', 'text': '

In fact, I think I\\'ll arrange a marriage.Come over often, Nick, and I\\'ll sort of—oh— fling you together.You know—lock you up accidentally in linen closets and push you out to sea in a boat, and all that sort of thing—

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:32:01,390 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'teAOBFSeynXfbyNgq6Ec', 'text': '

Who oughtn\\'t to?

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.8, style=0.9, use_speaker_boost=None)}\n", "2024-10-11 06:32:01,390 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'teAOBFSeynXfbyNgq6Ec', 'text': '\\n

\\n \\n Her family is one aunt about a thousand years old.\\n \\n \\n Besides, Nick’s going to look after her, \\n aren’t you, Nick?\\n \\n \\n She’s going to spend lots of weekends out here this summer.\\n \\n \\n I think the home influence will be very good for her.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:32:01,391 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'teAOBFSeynXfbyNgq6Ec', 'text': '\\n

\\n \\n from louisville. \\n our white girlhood was passed together there.\\n \\n \\n our beautiful white—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.6, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:32:01,391 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'teAOBFSeynXfbyNgq6Ec', 'text': '

did i?

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:32:01,392 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'teAOBFSeynXfbyNgq6Ec', 'text': '

She looked at me.

', 'voice_settings': VoiceSettings(stability=0.9, similarity_boost=0.4, style=0.2, use_speaker_boost=None)}\n", "2024-10-11 06:32:01,393 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'teAOBFSeynXfbyNgq6Ec', 'text': '\\n

\\n \\n I can’t seem to remember, \\n but I think we talked about the Nordic race.\\n \\n \\n Yes, I’m sure we did.\\n \\n \\n It sort of crept up on us and first thing you know—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:32:03,429 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/teAOBFSeynXfbyNgq6Ec \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:03,519 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/teAOBFSeynXfbyNgq6Ec \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:03,537 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/teAOBFSeynXfbyNgq6Ec \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:03,680 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/teAOBFSeynXfbyNgq6Ec \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:03,788 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/teAOBFSeynXfbyNgq6Ec \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:04,556 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/teAOBFSeynXfbyNgq6Ec \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:04,565 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/teAOBFSeynXfbyNgq6Ec \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:04,753 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/teAOBFSeynXfbyNgq6Ec \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:04,783 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/teAOBFSeynXfbyNgq6Ec \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:04,854 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/teAOBFSeynXfbyNgq6Ec \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:05,027 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/teAOBFSeynXfbyNgq6Ec \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:05,360 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/teAOBFSeynXfbyNgq6Ec \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:06,396 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/teAOBFSeynXfbyNgq6Ec \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:08,004 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:08,005 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:08,006 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.896000 seconds\n", "2024-10-11 06:32:08,007 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.794000 seconds\n", "2024-10-11 06:32:08,008 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:08,009 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.806000 seconds\n", "2024-10-11 06:32:08,010 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:08,010 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.802000 seconds\n", "2024-10-11 06:32:08,011 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:08,012 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.892000 seconds\n", "2024-10-11 06:32:08,013 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:08,014 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.818000 seconds\n", "2024-10-11 06:32:08,015 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:08,016 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.822000 seconds\n", "2024-10-11 06:32:08,953 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:08,954 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.520000 seconds\n", "2024-10-11 06:32:08,958 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:08,959 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.474000 seconds\n", "2024-10-11 06:32:08,965 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:08,966 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.470000 seconds\n", "2024-10-11 06:32:08,968 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:08,969 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.508000 seconds\n", "2024-10-11 06:32:09,044 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:09,046 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.492000 seconds\n", "2024-10-11 06:32:09,046 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:09,048 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.520000 seconds\n", "2024-10-11 06:32:09,677 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:09,682 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:09,684 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:09,688 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': 'explained daisy,', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:32:09,690 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n She looked at me.\\n \\n

\\n
', 'params': {'stability': 0.9, 'similarity_boost': 0.4, 'style': 0.6}}\n", "2024-10-11 06:32:09,692 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Confirmed, Daisy.\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:32:09,804 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:09,807 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

did I?

', 'params': {'stability': 0.5, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:32:09,943 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:09,946 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Who oughtn’t to?

', 'params': {'stability': 0.4, 'similarity_boost': 0.8, 'style': 0.9}}\n", "2024-10-11 06:32:10,581 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:10,615 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:10,618 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:10,678 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:10,706 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:10,719 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:10,721 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n I can’t seem to remember, \\n but I think we talked about the Nordic race.\\n \\n \\n Yes, I’m sure we did. \\n It sort of crept up on us \\n and first thing you know—\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.5}}\n", "2024-10-11 06:32:11,219 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:11,222 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.088000 seconds\n", "2024-10-11 06:32:11,236 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:11,239 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.996000 seconds\n", "2024-10-11 06:32:11,365 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:11,378 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.938000 seconds\n", "2024-10-11 06:32:11,391 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:11,392 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.820000 seconds\n", "2024-10-11 06:32:11,495 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:11,497 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

of course you will,

', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:32:11,600 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:11,602 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.584000 seconds\n", "2024-10-11 06:32:11,928 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:11,934 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

If you\\'ll get up.

', 'params': {'stability': 0.4, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:32:12,356 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:12,361 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.464000 seconds\n", "2024-10-11 06:32:12,375 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:12,378 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.464000 seconds\n", "2024-10-11 06:32:12,446 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:12,447 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.458000 seconds\n", "2024-10-11 06:32:12,457 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:12,459 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.446000 seconds\n", "2024-10-11 06:32:13,669 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:13,674 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Over at Westchester.

', 'params': {'stability': 0.4, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:32:13,974 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:14,040 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:14,043 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:14,315 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:14,318 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.256000 seconds\n", "2024-10-11 06:32:14,706 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:14,710 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.864000 seconds\n", "2024-10-11 06:32:15,277 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:15,281 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.224000 seconds\n", "2024-10-11 06:32:15,721 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:15,725 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:15,727 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.520000 seconds\n", "2024-10-11 06:32:15,729 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.520000 seconds\n", "2024-10-11 06:32:17,385 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:17,391 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Jordan\\'s going to play in the tournament tomorrow!\\n \\n

\\n
', 'params': {'stability': 0.3, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:32:17,394 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:18,277 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:18,281 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n from louisville.\\n \\n our white girlhood was \\n passed together there.\\n \\n \\n our beautiful white—\\n \"\\n \\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:32:20,528 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:20,531 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n In fact, I think I\\'ll arrange a marriage.\\n \\n \\n Come over often, Nick, and I\\'ll sort of—oh— fling you together.\\n \\n \\n You know—lock you up accidentally in linen closets and push you out to sea in a boat, and all that sort of thing—\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:32:23,500 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:23,502 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n her family is one aunt about a thousand years old.\\n \\n \\n besides, nick’s going to look after her, aren’t you, nick?\\n \\n \\n she’s going to spend lots of weekends out here this summer.\\n \\n i think the home influence will be very good for her.\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.6, 'style': 0.7}}\n", "2024-10-11 06:32:23,503 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'tpFVjZdYBvOaWaUIRHRz', 'text': '\\n

\\n \\n Jordan\\'s going to play in the tournament tomorrow!\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.3, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:32:23,505 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'tpFVjZdYBvOaWaUIRHRz', 'text': 'explained daisy,', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:32:23,505 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'tpFVjZdYBvOaWaUIRHRz', 'text': '

Over at Westchester.

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:32:23,506 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'tpFVjZdYBvOaWaUIRHRz', 'text': '

If you\\'ll get up.

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:32:23,507 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'tpFVjZdYBvOaWaUIRHRz', 'text': '

of course you will,

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:32:23,507 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'tpFVjZdYBvOaWaUIRHRz', 'text': '\\n

\\n \\n Confirmed, Daisy.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:32:23,508 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'tpFVjZdYBvOaWaUIRHRz', 'text': '\\n

\\n \\n In fact, I think I\\'ll arrange a marriage.\\n \\n \\n Come over often, Nick, and I\\'ll sort of—oh— fling you together.\\n \\n \\n You know—lock you up accidentally in linen closets and push you out to sea in a boat, and all that sort of thing—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:32:23,509 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'tpFVjZdYBvOaWaUIRHRz', 'text': '

Who oughtn’t to?

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.8, style=0.9, use_speaker_boost=None)}\n", "2024-10-11 06:32:23,510 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'tpFVjZdYBvOaWaUIRHRz', 'text': '\\n

\\n \\n her family is one aunt about a thousand years old.\\n \\n \\n besides, nick’s going to look after her, aren’t you, nick?\\n \\n \\n she’s going to spend lots of weekends out here this summer.\\n \\n i think the home influence will be very good for her.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.6, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:32:23,511 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'tpFVjZdYBvOaWaUIRHRz', 'text': '\\n

\\n \\n from louisville.\\n \\n our white girlhood was \\n passed together there.\\n \\n \\n our beautiful white—\\n \"\\n \\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:32:23,511 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'tpFVjZdYBvOaWaUIRHRz', 'text': '

did I?

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:32:23,512 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'tpFVjZdYBvOaWaUIRHRz', 'text': '\\n

\\n \\n She looked at me.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.9, similarity_boost=0.4, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:32:23,513 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'tpFVjZdYBvOaWaUIRHRz', 'text': '\\n

\\n \\n I can’t seem to remember, \\n but I think we talked about the Nordic race.\\n \\n \\n Yes, I’m sure we did. \\n It sort of crept up on us \\n and first thing you know—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.5, use_speaker_boost=None)}\n", "2024-10-11 06:32:24,527 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/tpFVjZdYBvOaWaUIRHRz \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:24,532 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/tpFVjZdYBvOaWaUIRHRz \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:24,587 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/tpFVjZdYBvOaWaUIRHRz \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:24,600 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/tpFVjZdYBvOaWaUIRHRz \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:24,602 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/tpFVjZdYBvOaWaUIRHRz \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:24,642 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/tpFVjZdYBvOaWaUIRHRz \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:24,750 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/tpFVjZdYBvOaWaUIRHRz \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:25,054 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/tpFVjZdYBvOaWaUIRHRz \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:25,060 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/tpFVjZdYBvOaWaUIRHRz \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:25,227 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/tpFVjZdYBvOaWaUIRHRz \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:25,856 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/tpFVjZdYBvOaWaUIRHRz \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:26,468 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/tpFVjZdYBvOaWaUIRHRz \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:26,774 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/tpFVjZdYBvOaWaUIRHRz \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:28,384 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:28,385 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.546000 seconds\n", "2024-10-11 06:32:28,385 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:28,386 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.550000 seconds\n", "2024-10-11 06:32:28,387 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:28,388 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.654000 seconds\n", "2024-10-11 06:32:28,389 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:28,390 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.510000 seconds\n", "2024-10-11 06:32:28,391 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:28,392 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.574000 seconds\n", "2024-10-11 06:32:28,394 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:28,395 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.610000 seconds\n", "2024-10-11 06:32:28,396 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:28,397 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.510000 seconds\n", "2024-10-11 06:32:28,402 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:28,404 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.498000 seconds\n", "2024-10-11 06:32:29,847 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:29,849 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

of course you will,

', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:32:29,850 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:29,852 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Confirmed Daisy.

', 'params': {'stability': 0.4, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:32:29,859 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:29,861 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

explained daisy,

', 'params': {'stability': 0.4, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:32:29,999 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:30,000 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

over at westchester.

', 'params': {'stability': 0.4, 'similarity_boost': 0.6, 'style': 0.5}}\n", "2024-10-11 06:32:30,044 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:30,046 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.500000 seconds\n", "2024-10-11 06:32:30,047 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:30,048 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.494000 seconds\n", "2024-10-11 06:32:30,069 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:30,071 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.466000 seconds\n", "2024-10-11 06:32:30,072 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:30,073 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.494000 seconds\n", "2024-10-11 06:32:30,113 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:30,114 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.490000 seconds\n", "2024-10-11 06:32:30,138 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:30,139 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.504000 seconds\n", "2024-10-11 06:32:30,180 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:30,182 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.466000 seconds\n", "2024-10-11 06:32:30,304 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:30,305 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Jordan\\'s going to play in the tournament tomorrow,\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.8, 'style': 0.6}}\n", "2024-10-11 06:32:31,546 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:31,548 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n She looked at me.\\n \\n

\\n
', 'params': {'stability': 0.9, 'similarity_boost': 0.3, 'style': 0.2}}\n", "2024-10-11 06:32:31,680 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:31,683 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:31,706 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:31,741 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:31,781 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:31,784 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:31,870 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:31,872 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.400000 seconds\n", "2024-10-11 06:32:31,991 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:31,993 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.376000 seconds\n", "2024-10-11 06:32:32,024 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:32,026 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.260000 seconds\n", "2024-10-11 06:32:32,179 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:32,181 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.146000 seconds\n", "2024-10-11 06:32:32,229 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:32,231 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.132000 seconds\n", "2024-10-11 06:32:32,693 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:32,699 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.602000 seconds\n", "2024-10-11 06:32:33,153 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:33,154 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

did I?

', 'params': {'stability': 0.4, 'similarity_boost': 0.8, 'style': 0.9}}\n", "2024-10-11 06:32:33,421 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:33,422 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.488000 seconds\n", "2024-10-11 06:32:33,439 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:33,440 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.514000 seconds\n", "2024-10-11 06:32:33,466 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:33,467 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.510000 seconds\n", "2024-10-11 06:32:33,503 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:33,504 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.512000 seconds\n", "2024-10-11 06:32:33,505 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:33,507 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.538000 seconds\n", "2024-10-11 06:32:34,931 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:34,933 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

who oughtn’t to?

', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:32:35,093 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:35,110 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:35,188 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:35,478 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:35,599 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:35,600 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.977000 seconds\n", "2024-10-11 06:32:36,291 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:36,295 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.348000 seconds\n", "2024-10-11 06:32:36,395 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:36,397 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

if you’ll get up.

', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.5}}\n", "2024-10-11 06:32:36,717 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:36,719 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.580000 seconds\n", "2024-10-11 06:32:36,793 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:36,796 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.510000 seconds\n", "2024-10-11 06:32:36,843 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:36,845 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.416000 seconds\n", "2024-10-11 06:32:38,440 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:38,442 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.558000 seconds\n", "2024-10-11 06:32:38,458 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:38,963 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:38,972 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

from louisville. our white girlhood was passed together there. our beautiful white—

', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:32:41,689 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:41,692 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.164000 seconds\n", "2024-10-11 06:32:42,339 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:42,342 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n I can\\'t seem to remember, \\n \\n but I think we talked about the Nordic race.\\n \\n \\n Yes, I\\'m sure we did.\\n \\n It sort of crept up on us and first thing you know—\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:32:43,263 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:43,266 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Her family is one aunt about a thousand years old.\\n \\n Besides, Nick\\'s going to look after her, aren\\'t you, Nick?\\n \\n \\n She\\'s going to spend lots of weekends out here this summer.\\n \\n I think the home influence will be very good for her.\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.8, 'style': 0.6}}\n", "2024-10-11 06:32:46,130 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:46,135 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n In fact, I think I’ll arrange a marriage.\\n \\n \\n Come over often, Nick, and I’ll sort of—oh—fling you together.\\n \\n \\n You know— lock you up accidentally in linen closets and push you out to sea in a boat,\\n and all that sort of thing—\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:32:46,137 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'v921MVi0ixhdc1CW2WxF', 'text': '\\n

\\n \\n Jordan\\'s going to play in the tournament tomorrow,\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.8, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:32:46,141 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'v921MVi0ixhdc1CW2WxF', 'text': '

explained daisy,

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:32:46,143 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'v921MVi0ixhdc1CW2WxF', 'text': '

over at westchester.

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.6, style=0.5, use_speaker_boost=None)}\n", "2024-10-11 06:32:46,144 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'v921MVi0ixhdc1CW2WxF', 'text': '

if you’ll get up.

', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.5, use_speaker_boost=None)}\n", "2024-10-11 06:32:46,145 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'v921MVi0ixhdc1CW2WxF', 'text': '

of course you will,

', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:32:46,147 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'v921MVi0ixhdc1CW2WxF', 'text': '

Confirmed Daisy.

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:32:46,148 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'v921MVi0ixhdc1CW2WxF', 'text': '\\n

\\n \\n In fact, I think I’ll arrange a marriage.\\n \\n \\n Come over often, Nick, and I’ll sort of—oh—fling you together.\\n \\n \\n You know— lock you up accidentally in linen closets and push you out to sea in a boat,\\n and all that sort of thing—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:32:46,149 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'v921MVi0ixhdc1CW2WxF', 'text': '

who oughtn’t to?

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:32:46,151 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'v921MVi0ixhdc1CW2WxF', 'text': '\\n

\\n \\n Her family is one aunt about a thousand years old.\\n \\n Besides, Nick\\'s going to look after her, aren\\'t you, Nick?\\n \\n \\n She\\'s going to spend lots of weekends out here this summer.\\n \\n I think the home influence will be very good for her.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.8, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:32:46,152 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'v921MVi0ixhdc1CW2WxF', 'text': '

from louisville. our white girlhood was passed together there. our beautiful white—

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:32:46,153 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'v921MVi0ixhdc1CW2WxF', 'text': '

did I?

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.8, style=0.9, use_speaker_boost=None)}\n", "2024-10-11 06:32:46,154 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'v921MVi0ixhdc1CW2WxF', 'text': '\\n

\\n \\n She looked at me.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.9, similarity_boost=0.3, style=0.2, use_speaker_boost=None)}\n", "2024-10-11 06:32:46,155 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'v921MVi0ixhdc1CW2WxF', 'text': '\\n

\\n \\n I can\\'t seem to remember, \\n \\n but I think we talked about the Nordic race.\\n \\n \\n Yes, I\\'m sure we did.\\n \\n It sort of crept up on us and first thing you know—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:32:47,556 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/v921MVi0ixhdc1CW2WxF \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:47,626 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/v921MVi0ixhdc1CW2WxF \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:47,807 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/v921MVi0ixhdc1CW2WxF \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:48,486 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/v921MVi0ixhdc1CW2WxF \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:49,408 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/v921MVi0ixhdc1CW2WxF \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:49,694 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/v921MVi0ixhdc1CW2WxF \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:50,343 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/v921MVi0ixhdc1CW2WxF \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:50,875 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/v921MVi0ixhdc1CW2WxF \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:51,558 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/v921MVi0ixhdc1CW2WxF \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:51,774 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/v921MVi0ixhdc1CW2WxF \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:52,480 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/v921MVi0ixhdc1CW2WxF \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:53,197 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/v921MVi0ixhdc1CW2WxF \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:53,274 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/v921MVi0ixhdc1CW2WxF \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:55,021 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:55,023 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.146000 seconds\n", "2024-10-11 06:32:55,024 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:55,026 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.154000 seconds\n", "2024-10-11 06:32:55,031 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:55,032 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.208000 seconds\n", "2024-10-11 06:32:55,042 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:55,043 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.158000 seconds\n", "2024-10-11 06:32:55,044 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:55,045 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.118000 seconds\n", "2024-10-11 06:32:55,345 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:55,347 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.910000 seconds\n", "2024-10-11 06:32:56,306 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:56,309 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.492000 seconds\n", "2024-10-11 06:32:56,324 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:56,326 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.470000 seconds\n", "2024-10-11 06:32:56,375 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:56,376 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.438000 seconds\n", "2024-10-11 06:32:56,381 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:56,382 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.484000 seconds\n", "2024-10-11 06:32:56,396 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:56,397 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.394000 seconds\n", "2024-10-11 06:32:56,986 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:56,992 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Of course you will,

', 'params': {'stability': 0.5, 'similarity_boost': 0.8, 'style': 0.6}}\n", "2024-10-11 06:32:57,013 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:57,016 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Confirmed, Daisy.

', 'params': {'stability': 0.3, 'similarity_boost': 0.8, 'style': 0.9}}\n", "2024-10-11 06:32:57,244 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:57,247 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Over at Westchester.

', 'params': {'stability': 0.6, 'similarity_boost': 0.6, 'style': 0.7}}\n", "2024-10-11 06:32:57,249 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:57,252 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

from louisville. our white girlhood was passed together there. our beautiful white—

', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:32:57,303 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:57,306 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n if you\\'ll get up.\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:32:57,937 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:57,942 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:57,953 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:58,007 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:58,094 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:58,095 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Did I?

', 'params': {'stability': 0.3, 'similarity_boost': 0.9, 'style': 0.8}}\n", "2024-10-11 06:32:58,486 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:58,490 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Her family is one aunt about a thousand years old.\\n \\n \\n Besides, Nick’s going to look after her, aren’t you, Nick?\\n \\n \\n She’s going to spend lots of weekends out here this summer.\\n \\n \\n I think the home influence will be very good for her.\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:32:58,570 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:58,572 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.268000 seconds\n", "2024-10-11 06:32:58,835 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:58,839 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n In fact, I think I\\'ll arrange a marriage.\\n \\n \\n Come over often, Nick, and I\\'ll sort of—oh—fling you together.\\n \\n \\n You know—lock you up accidentally in linen closets and push you out to sea in a boat, and all that sort of thing—\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:32:58,886 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:58,888 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.284000 seconds\n", "2024-10-11 06:32:58,910 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:58,911 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.246000 seconds\n", "2024-10-11 06:32:59,053 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:59,056 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.194000 seconds\n", "2024-10-11 06:32:59,441 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:32:59,446 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

She looked at me.

', 'params': {'stability': 0.9, 'similarity_boost': 0.3, 'style': 0.2}}\n", "2024-10-11 06:32:59,988 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:32:59,991 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.142000 seconds\n", "2024-10-11 06:33:00,296 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:00,300 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.478000 seconds\n", "2024-10-11 06:33:00,308 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:00,310 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.460000 seconds\n", "2024-10-11 06:33:00,388 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:00,390 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.432000 seconds\n", "2024-10-11 06:33:01,918 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:01,964 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:02,170 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:02,175 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

explained daisy,

', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.5}}\n", "2024-10-11 06:33:03,284 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:03,286 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.134000 seconds\n", "2024-10-11 06:33:03,429 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:03,430 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.038000 seconds\n", "2024-10-11 06:33:03,564 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:03,568 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

who oughtn’t to?

', 'params': {'stability': 0.4, 'similarity_boost': 0.8, 'style': 0.6}}\n", "2024-10-11 06:33:03,624 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:03,626 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.464000 seconds\n", "2024-10-11 06:33:06,301 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:06,305 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Jordan’s going to play in the tournament tomorrow,\\n \\n

\\n
', 'params': {'stability': 0.4, 'similarity_boost': 0.6, 'style': 0.6}}\n", "2024-10-11 06:33:08,246 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:08,250 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

I can’t seem to remember, but I think we talked about the Nordic race.Yes, I’m sure we did. It sort of crept up on us and first thing you know—

', 'params': {'stability': 0.5, 'similarity_boost': 0.6, 'style': 0.8}}\n", "2024-10-11 06:33:08,251 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'yu4eXTP5aod8KAQzTI3T', 'text': '\\n

\\n \\n Jordan’s going to play in the tournament tomorrow,\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.6, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:33:08,253 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'yu4eXTP5aod8KAQzTI3T', 'text': '

explained daisy,

', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.5, use_speaker_boost=None)}\n", "2024-10-11 06:33:08,253 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'yu4eXTP5aod8KAQzTI3T', 'text': '

Over at Westchester.

', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.6, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:33:08,255 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'yu4eXTP5aod8KAQzTI3T', 'text': '\\n

\\n \\n if you\\'ll get up.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:33:08,256 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'yu4eXTP5aod8KAQzTI3T', 'text': '

Of course you will,

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.8, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:33:08,257 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'yu4eXTP5aod8KAQzTI3T', 'text': '

Confirmed, Daisy.

', 'voice_settings': VoiceSettings(stability=0.3, similarity_boost=0.8, style=0.9, use_speaker_boost=None)}\n", "2024-10-11 06:33:08,258 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'yu4eXTP5aod8KAQzTI3T', 'text': '\\n

\\n \\n In fact, I think I\\'ll arrange a marriage.\\n \\n \\n Come over often, Nick, and I\\'ll sort of—oh—fling you together.\\n \\n \\n You know—lock you up accidentally in linen closets and push you out to sea in a boat, and all that sort of thing—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:33:08,259 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'yu4eXTP5aod8KAQzTI3T', 'text': '

who oughtn’t to?

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.8, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:33:08,260 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'yu4eXTP5aod8KAQzTI3T', 'text': '\\n

\\n \\n Her family is one aunt about a thousand years old.\\n \\n \\n Besides, Nick’s going to look after her, aren’t you, Nick?\\n \\n \\n She’s going to spend lots of weekends out here this summer.\\n \\n \\n I think the home influence will be very good for her.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:33:08,261 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'yu4eXTP5aod8KAQzTI3T', 'text': '

from louisville. our white girlhood was passed together there. our beautiful white—

', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:33:08,262 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'yu4eXTP5aod8KAQzTI3T', 'text': '

Did I?

', 'voice_settings': VoiceSettings(stability=0.3, similarity_boost=0.9, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:33:08,263 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'yu4eXTP5aod8KAQzTI3T', 'text': '

She looked at me.

', 'voice_settings': VoiceSettings(stability=0.9, similarity_boost=0.3, style=0.2, use_speaker_boost=None)}\n", "2024-10-11 06:33:08,264 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'yu4eXTP5aod8KAQzTI3T', 'text': '

I can’t seem to remember, but I think we talked about the Nordic race.Yes, I’m sure we did. It sort of crept up on us and first thing you know—

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.6, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:33:09,372 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/yu4eXTP5aod8KAQzTI3T \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:09,373 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/yu4eXTP5aod8KAQzTI3T \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:09,375 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/yu4eXTP5aod8KAQzTI3T \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:09,377 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/yu4eXTP5aod8KAQzTI3T \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:09,380 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/yu4eXTP5aod8KAQzTI3T \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:09,385 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/yu4eXTP5aod8KAQzTI3T \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:09,391 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/yu4eXTP5aod8KAQzTI3T \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:09,470 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/yu4eXTP5aod8KAQzTI3T \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:09,567 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/yu4eXTP5aod8KAQzTI3T \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:09,944 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/yu4eXTP5aod8KAQzTI3T \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:10,505 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/yu4eXTP5aod8KAQzTI3T \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:11,113 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/yu4eXTP5aod8KAQzTI3T \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:11,116 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/yu4eXTP5aod8KAQzTI3T \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:12,694 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:12,695 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.066000 seconds\n", "2024-10-11 06:33:12,696 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:12,697 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.962000 seconds\n", "2024-10-11 06:33:12,700 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:12,700 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.952000 seconds\n", "2024-10-11 06:33:12,702 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:12,703 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.952000 seconds\n", "2024-10-11 06:33:12,703 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:12,705 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.956000 seconds\n", "2024-10-11 06:33:12,705 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:12,706 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.954000 seconds\n", "2024-10-11 06:33:12,707 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:12,707 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:12,708 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.022000 seconds\n", "2024-10-11 06:33:12,709 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.973000 seconds\n", "2024-10-11 06:33:12,710 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:12,711 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.016000 seconds\n", "2024-10-11 06:33:13,787 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:13,789 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.494000 seconds\n", "2024-10-11 06:33:13,791 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:13,792 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.494000 seconds\n", "2024-10-11 06:33:13,796 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:13,797 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.494000 seconds\n", "2024-10-11 06:33:13,797 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:13,798 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.484000 seconds\n", "2024-10-11 06:33:13,819 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:13,819 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.484000 seconds\n", "2024-10-11 06:33:13,876 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:13,877 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:13,878 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.458000 seconds\n", "2024-10-11 06:33:13,880 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.486000 seconds\n", "2024-10-11 06:33:13,897 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:13,898 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.494000 seconds\n", "2024-10-11 06:33:14,064 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:14,066 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

if you’ll get up.

', 'params': {'stability': 0.4, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:33:14,596 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:14,599 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

Did I?

', 'params': {'stability': 0.6, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:33:15,292 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:15,297 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

who oughtn’t to?

', 'params': {'stability': 0.5, 'similarity_boost': 0.8, 'style': 0.8}}\n", "2024-10-11 06:33:15,433 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:15,437 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:15,438 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:15,442 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:15,493 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:15,515 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:15,573 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:15,742 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:15,744 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.138000 seconds\n", "2024-10-11 06:33:15,819 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:15,821 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.120000 seconds\n", "2024-10-11 06:33:15,924 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:15,925 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.068000 seconds\n", "2024-10-11 06:33:15,981 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:15,983 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

explained daisy,

', 'params': {'stability': 0.4, 'similarity_boost': 0.9, 'style': 0.8}}\n", "2024-10-11 06:33:16,001 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:16,002 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.886000 seconds\n", "2024-10-11 06:33:16,069 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:16,070 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.834000 seconds\n", "2024-10-11 06:33:16,169 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:16,171 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.716000 seconds\n", "2024-10-11 06:33:16,584 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:16,587 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.340000 seconds\n", "2024-10-11 06:33:17,032 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:17,035 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.502000 seconds\n", "2024-10-11 06:33:17,040 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:17,042 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.490000 seconds\n", "2024-10-11 06:33:17,053 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:17,055 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.512000 seconds\n", "2024-10-11 06:33:17,060 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:17,062 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.480000 seconds\n", "2024-10-11 06:33:17,077 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:17,081 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.502000 seconds\n", "2024-10-11 06:33:17,132 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:17,133 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.488000 seconds\n", "2024-10-11 06:33:17,420 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:17,426 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Confirmed Daisy.\\n \\n

\\n
', 'params': {'stability': 0.4, 'similarity_boost': 0.8, 'style': 0.7}}\n", "2024-10-11 06:33:18,078 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:18,081 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

In fact, I think I\\'ll arrange a marriage. Come over often, Nick, and I\\'ll sort of—oh—fling you together. You know— lock you up accidentally in linen closets and push you out to sea in a boat, and all that sort of thing—

', 'params': {'stability': 0.4, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:33:18,682 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:18,687 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:18,694 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:18,709 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:18,727 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:18,755 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:19,204 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:19,210 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n She looked at me.\\n \\n

\\n
', 'params': {'stability': 0.8, 'similarity_boost': 0.5, 'style': 0.4}}\n", "2024-10-11 06:33:19,747 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:19,748 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.988000 seconds\n", "2024-10-11 06:33:19,829 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:19,831 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.832000 seconds\n", "2024-10-11 06:33:19,893 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:19,894 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.802000 seconds\n", "2024-10-11 06:33:20,055 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:20,058 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.618000 seconds\n", "2024-10-11 06:33:20,806 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:20,808 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.488000 seconds\n", "2024-10-11 06:33:20,811 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:20,812 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.492000 seconds\n", "2024-10-11 06:33:20,832 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:20,835 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.492000 seconds\n", "2024-10-11 06:33:20,893 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:20,894 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.458000 seconds\n", "2024-10-11 06:33:22,276 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:22,282 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Her family is one aunt about a thousand years old.\\n \\n \\n Besides, Nick’s going to look after her, aren’t you, Nick?\\n \\n \\n She’s going to spend lots of weekends out here this summer.\\n \\n \\n I think the home influence will be very good for her.\\n \\n

\\n
', 'params': {'stability': 0.6, 'similarity_boost': 0.6, 'style': 0.7}}\n", "2024-10-11 06:33:22,400 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:22,402 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n over at\\n Westchester.\\n \\n

\\n
', 'params': {'stability': 0.85, 'similarity_boost': 0.4, 'style': 0.2}}\n", "2024-10-11 06:33:22,438 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:22,443 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:22,469 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:22,491 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:23,396 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:23,399 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.858000 seconds\n", "2024-10-11 06:33:24,734 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:24,738 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n from Louisville.\\n \\n \\n our white girlhood was passed together there.\\n \\n \\n our beautiful white—\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:33:25,829 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:25,830 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 0.172000 seconds\n", "2024-10-11 06:33:25,878 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:25,879 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n Jordan\\'s going to play in the tournament tomorrow,\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.7, 'style': 0.8}}\n", "2024-10-11 06:33:26,188 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 429 Too Many Requests\"\n", "2024-10-11 06:33:26,190 [INFO] openai._base_client (_base_client.py): Retrying request to /chat/completions in 1.532000 seconds\n", "2024-10-11 06:33:27,498 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:27,501 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '

of course you will,

', 'params': {'stability': 0.4, 'similarity_boost': 0.7, 'style': 0.6}}\n", "2024-10-11 06:33:30,468 [INFO] httpx (_client.py): HTTP Request: POST https://api.openai.com/v1/chat/completions \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:30,472 [INFO] audio-books (generation.py): Successfully modified text with emotional cues: {'modified_text': '\\n

\\n \\n I can\\'t seem to remember, \\n but I think we talked about the Nordic race.\\n \\n \\n Yes, I\\'m sure we did.\\n \\n \\n It sort of crept up on us and first thing you know—\\n \\n

\\n
', 'params': {'stability': 0.5, 'similarity_boost': 0.6, 'style': 0.7}}\n", "2024-10-11 06:33:30,474 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'yxHHj4hKJKKTyvUpnbds', 'text': '\\n

\\n \\n Jordan\\'s going to play in the tournament tomorrow,\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:33:30,478 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'yxHHj4hKJKKTyvUpnbds', 'text': '

explained daisy,

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.9, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:33:30,480 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'yxHHj4hKJKKTyvUpnbds', 'text': '\\n

\\n \\n over at\\n Westchester.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.85, similarity_boost=0.4, style=0.2, use_speaker_boost=None)}\n", "2024-10-11 06:33:30,482 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'yxHHj4hKJKKTyvUpnbds', 'text': '

if you’ll get up.

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:33:30,484 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'yxHHj4hKJKKTyvUpnbds', 'text': '

of course you will,

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.7, style=0.6, use_speaker_boost=None)}\n", "2024-10-11 06:33:30,485 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'yxHHj4hKJKKTyvUpnbds', 'text': '\\n

\\n \\n Confirmed Daisy.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.8, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:33:30,486 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'yxHHj4hKJKKTyvUpnbds', 'text': '

In fact, I think I\\'ll arrange a marriage. Come over often, Nick, and I\\'ll sort of—oh—fling you together. You know— lock you up accidentally in linen closets and push you out to sea in a boat, and all that sort of thing—

', 'voice_settings': VoiceSettings(stability=0.4, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:33:30,487 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'yxHHj4hKJKKTyvUpnbds', 'text': '

who oughtn’t to?

', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.8, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:33:30,488 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'yxHHj4hKJKKTyvUpnbds', 'text': '\\n

\\n \\n Her family is one aunt about a thousand years old.\\n \\n \\n Besides, Nick’s going to look after her, aren’t you, Nick?\\n \\n \\n She’s going to spend lots of weekends out here this summer.\\n \\n \\n I think the home influence will be very good for her.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.6, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:33:30,489 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'yxHHj4hKJKKTyvUpnbds', 'text': '\\n

\\n \\n from Louisville.\\n \\n \\n our white girlhood was passed together there.\\n \\n \\n our beautiful white—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:33:30,490 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'yxHHj4hKJKKTyvUpnbds', 'text': '

Did I?

', 'voice_settings': VoiceSettings(stability=0.6, similarity_boost=0.7, style=0.8, use_speaker_boost=None)}\n", "2024-10-11 06:33:30,491 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'yxHHj4hKJKKTyvUpnbds', 'text': '\\n

\\n \\n She looked at me.\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.8, similarity_boost=0.5, style=0.4, use_speaker_boost=None)}\n", "2024-10-11 06:33:30,496 [INFO] audio-books (tts.py): call to 11labs TTS endpoint with params: {'voice_id': 'yxHHj4hKJKKTyvUpnbds', 'text': '\\n

\\n \\n I can\\'t seem to remember, \\n but I think we talked about the Nordic race.\\n \\n \\n Yes, I\\'m sure we did.\\n \\n \\n It sort of crept up on us and first thing you know—\\n \\n

\\n
', 'voice_settings': VoiceSettings(stability=0.5, similarity_boost=0.6, style=0.7, use_speaker_boost=None)}\n", "2024-10-11 06:33:32,007 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/yxHHj4hKJKKTyvUpnbds \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:32,062 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/yxHHj4hKJKKTyvUpnbds \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:32,722 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/yxHHj4hKJKKTyvUpnbds \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:33,238 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/yxHHj4hKJKKTyvUpnbds \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:33,747 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/yxHHj4hKJKKTyvUpnbds \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:33,796 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/yxHHj4hKJKKTyvUpnbds \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:34,040 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/yxHHj4hKJKKTyvUpnbds \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:34,565 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/yxHHj4hKJKKTyvUpnbds \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:35,183 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/yxHHj4hKJKKTyvUpnbds \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:35,248 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/yxHHj4hKJKKTyvUpnbds \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:35,403 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/yxHHj4hKJKKTyvUpnbds \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:35,765 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/yxHHj4hKJKKTyvUpnbds \"HTTP/1.1 200 OK\"\n", "2024-10-11 06:33:35,843 [INFO] httpx (_client.py): HTTP Request: POST https://api.elevenlabs.io/v1/text-to-speech/yxHHj4hKJKKTyvUpnbds \"HTTP/1.1 200 OK\"\n" ] } ], "source": [ "for voice_id in voices_to_consider.query(\"gender == 'female'\")[\"voice_id\"].to_list():\n", " await tts_character_phrases_using_voice(\n", " builder,\n", " split_text=female_phrases,\n", " character=female_character,\n", " voice=voice_id,\n", " )" ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "\n", "RangeIndex: 59 entries, 0 to 58\n", "Data columns (total 7 columns):\n", " # Column Non-Null Count Dtype \n", "--- ------ -------------- ----- \n", " 0 voice_id 59 non-null object\n", " 1 name 59 non-null object\n", " 2 age 59 non-null object\n", " 3 gender 59 non-null object\n", " 4 category 59 non-null object\n", " 5 accent 59 non-null object\n", " 6 comment 59 non-null object\n", "dtypes: object(7)\n", "memory usage: 3.4+ KB\n" ] } ], "source": [ "reviewed_voices = pd.read_excel(\"reviewed_voices.xlsx\")\n", "reviewed_voices.info()" ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "34" ] }, "execution_count": 19, "metadata": {}, "output_type": "execute_result" } ], "source": [ "ok_voices = reviewed_voices.query(\"comment in ('ok', 'ok-ish')\").copy()\n", "len(ok_voices)" ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [], "source": [ "ok_voice_ids = ok_voices[\"voice_id\"].unique()" ] }, { "cell_type": "code", "execution_count": 21, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
genderfemalemale
age
middle_aged49
old55
young83
\n", "
" ], "text/plain": [ "gender female male\n", "age \n", "middle_aged 4 9\n", "old 5 5\n", "young 8 3" ] }, "execution_count": 21, "metadata": {}, "output_type": "execute_result" } ], "source": [ "grouping_columns = [\"age\", \"gender\"]\n", "voices_to_consider.query(\"voice_id in @ok_voice_ids\").groupby(grouping_columns)[\"voice_id\"].count().unstack(fill_value=0)" ] }, { "cell_type": "code", "execution_count": 23, "metadata": {}, "outputs": [], "source": [ "voices_to_consider.query(\"voice_id in @ok_voice_ids\").to_csv(\"data/11labs_available_tts_voices.csv\", index=False)" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "venv", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.11.9" } }, "nbformat": 4, "nbformat_minor": 2 }