Upload 18 files
Browse files- .gitattributes +5 -0
- Pipfile +69 -0
- Pipfile.lock +1165 -0
- README.md +151 -11
- Temp.mp3 +0 -0
- acne.jpg +3 -0
- ai-doctor-voicebit-ppt.pdf +3 -0
- brain_of_the_doctor.py +48 -0
- dandruff-optimized.webp +3 -0
- final.mp3 +3 -0
- gradio_app.py +185 -0
- gtts_testing.mp3 +0 -0
- gtts_testing_autoplay.mp3 +0 -0
- patient_voice_test_for_patient.mp3 +0 -0
- presentation.pdf +3 -0
- requirements.txt +59 -0
- tempCodeRunnerFile.py +57 -0
- voice_of_the_doctor.py +95 -0
- voice_of_the_patient.py +69 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,8 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
acne.jpg filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
ai-doctor-voicebit-ppt.pdf filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
dandruff-optimized.webp filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
final.mp3 filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
presentation.pdf filter=lfs diff=lfs merge=lfs -text
|
Pipfile
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[[source]]
|
| 2 |
+
url = "https://pypi.org/simple"
|
| 3 |
+
verify_ssl = true
|
| 4 |
+
name = "pypi"
|
| 5 |
+
|
| 6 |
+
[packages]
|
| 7 |
+
aiofiles = "==23.2.1"
|
| 8 |
+
annotated-types = "==0.7.0"
|
| 9 |
+
anyio = "==4.8.0"
|
| 10 |
+
certifi = "==2024.12.14"
|
| 11 |
+
charset-normalizer = "==3.4.1"
|
| 12 |
+
click = "==8.1.8"
|
| 13 |
+
distro = "==1.9.0"
|
| 14 |
+
fastapi = "==0.115.6"
|
| 15 |
+
ffmpy = "==0.5.0"
|
| 16 |
+
filelock = "==3.16.1"
|
| 17 |
+
fsspec = "==2024.12.0"
|
| 18 |
+
gradio-client = "==1.5.4"
|
| 19 |
+
h11 = "==0.14.0"
|
| 20 |
+
httpcore = "==1.0.7"
|
| 21 |
+
httpx = "==0.28.1"
|
| 22 |
+
huggingface-hub = "==0.27.1"
|
| 23 |
+
idna = "==3.10"
|
| 24 |
+
jinja2 = "==3.1.5"
|
| 25 |
+
markdown-it-py = "==3.0.0"
|
| 26 |
+
markupsafe = "==2.1.5"
|
| 27 |
+
mdurl = "==0.1.2"
|
| 28 |
+
numpy = "==2.2.1"
|
| 29 |
+
orjson = "==3.10.14"
|
| 30 |
+
packaging = "==24.2"
|
| 31 |
+
pandas = "==2.2.3"
|
| 32 |
+
pillow = "==11.1.0"
|
| 33 |
+
pydantic = "==2.10.5"
|
| 34 |
+
pydantic-core = "==2.27.2"
|
| 35 |
+
pygments = "==2.19.1"
|
| 36 |
+
python-dateutil = "==2.9.0.post0"
|
| 37 |
+
python-multipart = "==0.0.20"
|
| 38 |
+
pytz = "==2024.2"
|
| 39 |
+
pyyaml = "==6.0.2"
|
| 40 |
+
requests = "==2.32.3"
|
| 41 |
+
rich = "==13.9.4"
|
| 42 |
+
ruff = "==0.9.1"
|
| 43 |
+
safehttpx = "==0.1.6"
|
| 44 |
+
semantic-version = "==2.10.0"
|
| 45 |
+
shellingham = "==1.5.4"
|
| 46 |
+
six = "==1.17.0"
|
| 47 |
+
sniffio = "==1.3.1"
|
| 48 |
+
starlette = "==0.41.3"
|
| 49 |
+
tomlkit = "==0.13.2"
|
| 50 |
+
tqdm = "==4.67.1"
|
| 51 |
+
typer = "==0.15.1"
|
| 52 |
+
typing-extensions = "==4.12.2"
|
| 53 |
+
tzdata = "==2024.2"
|
| 54 |
+
urllib3 = "==2.3.0"
|
| 55 |
+
uvicorn = "==0.34.0"
|
| 56 |
+
websockets = "==14.1"
|
| 57 |
+
python-dotenv = "*"
|
| 58 |
+
pydub = "*"
|
| 59 |
+
groq = "*"
|
| 60 |
+
elevenlabs = "*"
|
| 61 |
+
speechrecognition = "*"
|
| 62 |
+
pyaudio = "*"
|
| 63 |
+
gradio = "*"
|
| 64 |
+
gtts = "*"
|
| 65 |
+
|
| 66 |
+
[dev-packages]
|
| 67 |
+
|
| 68 |
+
[requires]
|
| 69 |
+
python_version = "3.11"
|
Pipfile.lock
ADDED
|
@@ -0,0 +1,1165 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_meta": {
|
| 3 |
+
"hash": {
|
| 4 |
+
"sha256": "c79e47dadfb96464137dfb5c5054c6046aa0ffe7c493f0f3439f67cb44d30967"
|
| 5 |
+
},
|
| 6 |
+
"pipfile-spec": 6,
|
| 7 |
+
"requires": {
|
| 8 |
+
"python_version": "3.11"
|
| 9 |
+
},
|
| 10 |
+
"sources": [
|
| 11 |
+
{
|
| 12 |
+
"name": "pypi",
|
| 13 |
+
"url": "https://pypi.org/simple",
|
| 14 |
+
"verify_ssl": true
|
| 15 |
+
}
|
| 16 |
+
]
|
| 17 |
+
},
|
| 18 |
+
"default": {
|
| 19 |
+
"aiofiles": {
|
| 20 |
+
"hashes": [
|
| 21 |
+
"sha256:19297512c647d4b27a2cf7c34caa7e405c0d60b5560618a29a9fe027b18b0107",
|
| 22 |
+
"sha256:84ec2218d8419404abcb9f0c02df3f34c6e0a68ed41072acfb1cef5cbc29051a"
|
| 23 |
+
],
|
| 24 |
+
"index": "pypi",
|
| 25 |
+
"markers": "python_version >= '3.7'",
|
| 26 |
+
"version": "==23.2.1"
|
| 27 |
+
},
|
| 28 |
+
"annotated-types": {
|
| 29 |
+
"hashes": [
|
| 30 |
+
"sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53",
|
| 31 |
+
"sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89"
|
| 32 |
+
],
|
| 33 |
+
"index": "pypi",
|
| 34 |
+
"markers": "python_version >= '3.8'",
|
| 35 |
+
"version": "==0.7.0"
|
| 36 |
+
},
|
| 37 |
+
"anyio": {
|
| 38 |
+
"hashes": [
|
| 39 |
+
"sha256:1d9fe889df5212298c0c0723fa20479d1b94883a2df44bd3897aa91083316f7a",
|
| 40 |
+
"sha256:b5011f270ab5eb0abf13385f851315585cc37ef330dd88e27ec3d34d651fd47a"
|
| 41 |
+
],
|
| 42 |
+
"index": "pypi",
|
| 43 |
+
"markers": "python_version >= '3.9'",
|
| 44 |
+
"version": "==4.8.0"
|
| 45 |
+
},
|
| 46 |
+
"certifi": {
|
| 47 |
+
"hashes": [
|
| 48 |
+
"sha256:1275f7a45be9464efc1173084eaa30f866fe2e47d389406136d332ed4967ec56",
|
| 49 |
+
"sha256:b650d30f370c2b724812bee08008be0c4163b163ddaec3f2546c1caf65f191db"
|
| 50 |
+
],
|
| 51 |
+
"index": "pypi",
|
| 52 |
+
"markers": "python_version >= '3.6'",
|
| 53 |
+
"version": "==2024.12.14"
|
| 54 |
+
},
|
| 55 |
+
"charset-normalizer": {
|
| 56 |
+
"hashes": [
|
| 57 |
+
"sha256:0167ddc8ab6508fe81860a57dd472b2ef4060e8d378f0cc555707126830f2537",
|
| 58 |
+
"sha256:01732659ba9b5b873fc117534143e4feefecf3b2078b0a6a2e925271bb6f4cfa",
|
| 59 |
+
"sha256:01ad647cdd609225c5350561d084b42ddf732f4eeefe6e678765636791e78b9a",
|
| 60 |
+
"sha256:04432ad9479fa40ec0f387795ddad4437a2b50417c69fa275e212933519ff294",
|
| 61 |
+
"sha256:0907f11d019260cdc3f94fbdb23ff9125f6b5d1039b76003b5b0ac9d6a6c9d5b",
|
| 62 |
+
"sha256:0924e81d3d5e70f8126529951dac65c1010cdf117bb75eb02dd12339b57749dd",
|
| 63 |
+
"sha256:09b26ae6b1abf0d27570633b2b078a2a20419c99d66fb2823173d73f188ce601",
|
| 64 |
+
"sha256:09b5e6733cbd160dcc09589227187e242a30a49ca5cefa5a7edd3f9d19ed53fd",
|
| 65 |
+
"sha256:0af291f4fe114be0280cdd29d533696a77b5b49cfde5467176ecab32353395c4",
|
| 66 |
+
"sha256:0f55e69f030f7163dffe9fd0752b32f070566451afe180f99dbeeb81f511ad8d",
|
| 67 |
+
"sha256:1a2bc9f351a75ef49d664206d51f8e5ede9da246602dc2d2726837620ea034b2",
|
| 68 |
+
"sha256:22e14b5d70560b8dd51ec22863f370d1e595ac3d024cb8ad7d308b4cd95f8313",
|
| 69 |
+
"sha256:234ac59ea147c59ee4da87a0c0f098e9c8d169f4dc2a159ef720f1a61bbe27cd",
|
| 70 |
+
"sha256:2369eea1ee4a7610a860d88f268eb39b95cb588acd7235e02fd5a5601773d4fa",
|
| 71 |
+
"sha256:237bdbe6159cff53b4f24f397d43c6336c6b0b42affbe857970cefbb620911c8",
|
| 72 |
+
"sha256:28bf57629c75e810b6ae989f03c0828d64d6b26a5e205535585f96093e405ed1",
|
| 73 |
+
"sha256:2967f74ad52c3b98de4c3b32e1a44e32975e008a9cd2a8cc8966d6a5218c5cb2",
|
| 74 |
+
"sha256:2a75d49014d118e4198bcee5ee0a6f25856b29b12dbf7cd012791f8a6cc5c496",
|
| 75 |
+
"sha256:2bdfe3ac2e1bbe5b59a1a63721eb3b95fc9b6817ae4a46debbb4e11f6232428d",
|
| 76 |
+
"sha256:2d074908e1aecee37a7635990b2c6d504cd4766c7bc9fc86d63f9c09af3fa11b",
|
| 77 |
+
"sha256:2fb9bd477fdea8684f78791a6de97a953c51831ee2981f8e4f583ff3b9d9687e",
|
| 78 |
+
"sha256:311f30128d7d333eebd7896965bfcfbd0065f1716ec92bd5638d7748eb6f936a",
|
| 79 |
+
"sha256:329ce159e82018d646c7ac45b01a430369d526569ec08516081727a20e9e4af4",
|
| 80 |
+
"sha256:345b0426edd4e18138d6528aed636de7a9ed169b4aaf9d61a8c19e39d26838ca",
|
| 81 |
+
"sha256:363e2f92b0f0174b2f8238240a1a30142e3db7b957a5dd5689b0e75fb717cc78",
|
| 82 |
+
"sha256:3a3bd0dcd373514dcec91c411ddb9632c0d7d92aed7093b8c3bbb6d69ca74408",
|
| 83 |
+
"sha256:3bed14e9c89dcb10e8f3a29f9ccac4955aebe93c71ae803af79265c9ca5644c5",
|
| 84 |
+
"sha256:44251f18cd68a75b56585dd00dae26183e102cd5e0f9f1466e6df5da2ed64ea3",
|
| 85 |
+
"sha256:44ecbf16649486d4aebafeaa7ec4c9fed8b88101f4dd612dcaf65d5e815f837f",
|
| 86 |
+
"sha256:4532bff1b8421fd0a320463030c7520f56a79c9024a4e88f01c537316019005a",
|
| 87 |
+
"sha256:49402233c892a461407c512a19435d1ce275543138294f7ef013f0b63d5d3765",
|
| 88 |
+
"sha256:4c0907b1928a36d5a998d72d64d8eaa7244989f7aaaf947500d3a800c83a3fd6",
|
| 89 |
+
"sha256:4d86f7aff21ee58f26dcf5ae81a9addbd914115cdebcbb2217e4f0ed8982e146",
|
| 90 |
+
"sha256:5777ee0881f9499ed0f71cc82cf873d9a0ca8af166dfa0af8ec4e675b7df48e6",
|
| 91 |
+
"sha256:5df196eb874dae23dcfb968c83d4f8fdccb333330fe1fc278ac5ceeb101003a9",
|
| 92 |
+
"sha256:619a609aa74ae43d90ed2e89bdd784765de0a25ca761b93e196d938b8fd1dbbd",
|
| 93 |
+
"sha256:6e27f48bcd0957c6d4cb9d6fa6b61d192d0b13d5ef563e5f2ae35feafc0d179c",
|
| 94 |
+
"sha256:6ff8a4a60c227ad87030d76e99cd1698345d4491638dfa6673027c48b3cd395f",
|
| 95 |
+
"sha256:73d94b58ec7fecbc7366247d3b0b10a21681004153238750bb67bd9012414545",
|
| 96 |
+
"sha256:7461baadb4dc00fd9e0acbe254e3d7d2112e7f92ced2adc96e54ef6501c5f176",
|
| 97 |
+
"sha256:75832c08354f595c760a804588b9357d34ec00ba1c940c15e31e96d902093770",
|
| 98 |
+
"sha256:7709f51f5f7c853f0fb938bcd3bc59cdfdc5203635ffd18bf354f6967ea0f824",
|
| 99 |
+
"sha256:78baa6d91634dfb69ec52a463534bc0df05dbd546209b79a3880a34487f4b84f",
|
| 100 |
+
"sha256:7974a0b5ecd505609e3b19742b60cee7aa2aa2fb3151bc917e6e2646d7667dcf",
|
| 101 |
+
"sha256:7a4f97a081603d2050bfaffdefa5b02a9ec823f8348a572e39032caa8404a487",
|
| 102 |
+
"sha256:7b1bef6280950ee6c177b326508f86cad7ad4dff12454483b51d8b7d673a2c5d",
|
| 103 |
+
"sha256:7d053096f67cd1241601111b698f5cad775f97ab25d81567d3f59219b5f1adbd",
|
| 104 |
+
"sha256:804a4d582ba6e5b747c625bf1255e6b1507465494a40a2130978bda7b932c90b",
|
| 105 |
+
"sha256:807f52c1f798eef6cf26beb819eeb8819b1622ddfeef9d0977a8502d4db6d534",
|
| 106 |
+
"sha256:80ed5e856eb7f30115aaf94e4a08114ccc8813e6ed1b5efa74f9f82e8509858f",
|
| 107 |
+
"sha256:8417cb1f36cc0bc7eaba8ccb0e04d55f0ee52df06df3ad55259b9a323555fc8b",
|
| 108 |
+
"sha256:8436c508b408b82d87dc5f62496973a1805cd46727c34440b0d29d8a2f50a6c9",
|
| 109 |
+
"sha256:89149166622f4db9b4b6a449256291dc87a99ee53151c74cbd82a53c8c2f6ccd",
|
| 110 |
+
"sha256:8bfa33f4f2672964266e940dd22a195989ba31669bd84629f05fab3ef4e2d125",
|
| 111 |
+
"sha256:8c60ca7339acd497a55b0ea5d506b2a2612afb2826560416f6894e8b5770d4a9",
|
| 112 |
+
"sha256:91b36a978b5ae0ee86c394f5a54d6ef44db1de0815eb43de826d41d21e4af3de",
|
| 113 |
+
"sha256:955f8851919303c92343d2f66165294848d57e9bba6cf6e3625485a70a038d11",
|
| 114 |
+
"sha256:97f68b8d6831127e4787ad15e6757232e14e12060bec17091b85eb1486b91d8d",
|
| 115 |
+
"sha256:9b23ca7ef998bc739bf6ffc077c2116917eabcc901f88da1b9856b210ef63f35",
|
| 116 |
+
"sha256:9f0b8b1c6d84c8034a44893aba5e767bf9c7a211e313a9605d9c617d7083829f",
|
| 117 |
+
"sha256:aabfa34badd18f1da5ec1bc2715cadc8dca465868a4e73a0173466b688f29dda",
|
| 118 |
+
"sha256:ab36c8eb7e454e34e60eb55ca5d241a5d18b2c6244f6827a30e451c42410b5f7",
|
| 119 |
+
"sha256:b010a7a4fd316c3c484d482922d13044979e78d1861f0e0650423144c616a46a",
|
| 120 |
+
"sha256:b1ac5992a838106edb89654e0aebfc24f5848ae2547d22c2c3f66454daa11971",
|
| 121 |
+
"sha256:b7b2d86dd06bfc2ade3312a83a5c364c7ec2e3498f8734282c6c3d4b07b346b8",
|
| 122 |
+
"sha256:b97e690a2118911e39b4042088092771b4ae3fc3aa86518f84b8cf6888dbdb41",
|
| 123 |
+
"sha256:bc2722592d8998c870fa4e290c2eec2c1569b87fe58618e67d38b4665dfa680d",
|
| 124 |
+
"sha256:c0429126cf75e16c4f0ad00ee0eae4242dc652290f940152ca8c75c3a4b6ee8f",
|
| 125 |
+
"sha256:c30197aa96e8eed02200a83fba2657b4c3acd0f0aa4bdc9f6c1af8e8962e0757",
|
| 126 |
+
"sha256:c4c3e6da02df6fa1410a7680bd3f63d4f710232d3139089536310d027950696a",
|
| 127 |
+
"sha256:c75cb2a3e389853835e84a2d8fb2b81a10645b503eca9bcb98df6b5a43eb8886",
|
| 128 |
+
"sha256:c96836c97b1238e9c9e3fe90844c947d5afbf4f4c92762679acfe19927d81d77",
|
| 129 |
+
"sha256:d7f50a1f8c450f3925cb367d011448c39239bb3eb4117c36a6d354794de4ce76",
|
| 130 |
+
"sha256:d973f03c0cb71c5ed99037b870f2be986c3c05e63622c017ea9816881d2dd247",
|
| 131 |
+
"sha256:d98b1668f06378c6dbefec3b92299716b931cd4e6061f3c875a71ced1780ab85",
|
| 132 |
+
"sha256:d9c3cdf5390dcd29aa8056d13e8e99526cda0305acc038b96b30352aff5ff2bb",
|
| 133 |
+
"sha256:dad3e487649f498dd991eeb901125411559b22e8d7ab25d3aeb1af367df5efd7",
|
| 134 |
+
"sha256:dccbe65bd2f7f7ec22c4ff99ed56faa1e9f785482b9bbd7c717e26fd723a1d1e",
|
| 135 |
+
"sha256:dd78cfcda14a1ef52584dbb008f7ac81c1328c0f58184bf9a84c49c605002da6",
|
| 136 |
+
"sha256:e218488cd232553829be0664c2292d3af2eeeb94b32bea483cf79ac6a694e037",
|
| 137 |
+
"sha256:e358e64305fe12299a08e08978f51fc21fac060dcfcddd95453eabe5b93ed0e1",
|
| 138 |
+
"sha256:ea0d8d539afa5eb2728aa1932a988a9a7af94f18582ffae4bc10b3fbdad0626e",
|
| 139 |
+
"sha256:eab677309cdb30d047996b36d34caeda1dc91149e4fdca0b1a039b3f79d9a807",
|
| 140 |
+
"sha256:eb8178fe3dba6450a3e024e95ac49ed3400e506fd4e9e5c32d30adda88cbd407",
|
| 141 |
+
"sha256:ecddf25bee22fe4fe3737a399d0d177d72bc22be6913acfab364b40bce1ba83c",
|
| 142 |
+
"sha256:eea6ee1db730b3483adf394ea72f808b6e18cf3cb6454b4d86e04fa8c4327a12",
|
| 143 |
+
"sha256:f08ff5e948271dc7e18a35641d2f11a4cd8dfd5634f55228b691e62b37125eb3",
|
| 144 |
+
"sha256:f30bf9fd9be89ecb2360c7d94a711f00c09b976258846efe40db3d05828e8089",
|
| 145 |
+
"sha256:fa88b843d6e211393a37219e6a1c1df99d35e8fd90446f1118f4216e307e48cd",
|
| 146 |
+
"sha256:fc54db6c8593ef7d4b2a331b58653356cf04f67c960f584edb7c3d8c97e8f39e",
|
| 147 |
+
"sha256:fd4ec41f914fa74ad1b8304bbc634b3de73d2a0889bd32076342a573e0779e00",
|
| 148 |
+
"sha256:ffc9202a29ab3920fa812879e95a9e78b2465fd10be7fcbd042899695d75e616"
|
| 149 |
+
],
|
| 150 |
+
"index": "pypi",
|
| 151 |
+
"markers": "python_version >= '3.7'",
|
| 152 |
+
"version": "==3.4.1"
|
| 153 |
+
},
|
| 154 |
+
"click": {
|
| 155 |
+
"hashes": [
|
| 156 |
+
"sha256:63c132bbbed01578a06712a2d1f497bb62d9c1c0d329b7903a866228027263b2",
|
| 157 |
+
"sha256:ed53c9d8990d83c2a27deae68e4ee337473f6330c040a31d4225c9574d16096a"
|
| 158 |
+
],
|
| 159 |
+
"index": "pypi",
|
| 160 |
+
"markers": "python_version >= '3.7'",
|
| 161 |
+
"version": "==8.1.8"
|
| 162 |
+
},
|
| 163 |
+
"distro": {
|
| 164 |
+
"hashes": [
|
| 165 |
+
"sha256:2fa77c6fd8940f116ee1d6b94a2f90b13b5ea8d019b98bc8bafdcabcdd9bdbed",
|
| 166 |
+
"sha256:7bffd925d65168f85027d8da9af6bddab658135b840670a223589bc0c8ef02b2"
|
| 167 |
+
],
|
| 168 |
+
"index": "pypi",
|
| 169 |
+
"markers": "python_version >= '3.6'",
|
| 170 |
+
"version": "==1.9.0"
|
| 171 |
+
},
|
| 172 |
+
"elevenlabs": {
|
| 173 |
+
"hashes": [
|
| 174 |
+
"sha256:acfd94a5a313566f672cf893fe41ecc46be2498354029c61e38c5c219252e924",
|
| 175 |
+
"sha256:f47e44c7d2d8e9152b71c77f4391b43467eb3ca016123d83fcc2c787e4c5989f"
|
| 176 |
+
],
|
| 177 |
+
"index": "pypi",
|
| 178 |
+
"markers": "python_version >= '3.8' and python_version < '4.0'",
|
| 179 |
+
"version": "==2.21.0"
|
| 180 |
+
},
|
| 181 |
+
"fastapi": {
|
| 182 |
+
"hashes": [
|
| 183 |
+
"sha256:9ec46f7addc14ea472958a96aae5b5de65f39721a46aaf5705c480d9a8b76654",
|
| 184 |
+
"sha256:e9240b29e36fa8f4bb7290316988e90c381e5092e0cbe84e7818cc3713bcf305"
|
| 185 |
+
],
|
| 186 |
+
"index": "pypi",
|
| 187 |
+
"markers": "python_version >= '3.8'",
|
| 188 |
+
"version": "==0.115.6"
|
| 189 |
+
},
|
| 190 |
+
"ffmpy": {
|
| 191 |
+
"hashes": [
|
| 192 |
+
"sha256:277e131f246d18e9dcfee9bb514c50749031c43582ce5ef82c57b51e3d3955c3",
|
| 193 |
+
"sha256:df3799cf5816daa56d4959a023630ee53c6768b66009dae6d131519ba4b80233"
|
| 194 |
+
],
|
| 195 |
+
"index": "pypi",
|
| 196 |
+
"markers": "python_version >= '3.8' and python_version < '4.0'",
|
| 197 |
+
"version": "==0.5.0"
|
| 198 |
+
},
|
| 199 |
+
"filelock": {
|
| 200 |
+
"hashes": [
|
| 201 |
+
"sha256:2082e5703d51fbf98ea75855d9d5527e33d8ff23099bec374a134febee6946b0",
|
| 202 |
+
"sha256:c249fbfcd5db47e5e2d6d62198e565475ee65e4831e2561c8e313fa7eb961435"
|
| 203 |
+
],
|
| 204 |
+
"index": "pypi",
|
| 205 |
+
"markers": "python_version >= '3.8'",
|
| 206 |
+
"version": "==3.16.1"
|
| 207 |
+
},
|
| 208 |
+
"fsspec": {
|
| 209 |
+
"hashes": [
|
| 210 |
+
"sha256:670700c977ed2fb51e0d9f9253177ed20cbde4a3e5c0283cc5385b5870c8533f",
|
| 211 |
+
"sha256:b520aed47ad9804237ff878b504267a3b0b441e97508bd6d2d8774e3db85cee2"
|
| 212 |
+
],
|
| 213 |
+
"index": "pypi",
|
| 214 |
+
"markers": "python_version >= '3.8'",
|
| 215 |
+
"version": "==2024.12.0"
|
| 216 |
+
},
|
| 217 |
+
"gradio": {
|
| 218 |
+
"hashes": [
|
| 219 |
+
"sha256:b4b79a2c537131a8a5e23046565e64da40156ac24f9082e563e734e89641e160"
|
| 220 |
+
],
|
| 221 |
+
"index": "pypi",
|
| 222 |
+
"markers": "python_version >= '3.10'",
|
| 223 |
+
"version": "==5.12.0"
|
| 224 |
+
},
|
| 225 |
+
"gradio-client": {
|
| 226 |
+
"hashes": [
|
| 227 |
+
"sha256:281a1b6c4e45210c70b60888bb6f329c27f30645d7aa376e1f20966de82273dc",
|
| 228 |
+
"sha256:ad38c9a6f7fc590e822627f5bf5685321a7822b8f1a88b76d00a0621a43162d6"
|
| 229 |
+
],
|
| 230 |
+
"index": "pypi",
|
| 231 |
+
"markers": "python_version >= '3.10'",
|
| 232 |
+
"version": "==1.5.4"
|
| 233 |
+
},
|
| 234 |
+
"groq": {
|
| 235 |
+
"hashes": [
|
| 236 |
+
"sha256:5342158026a1f6bf58653d774696f47ef1d763c401e20f9dbc9598337859523a",
|
| 237 |
+
"sha256:ed8c33e55872dea3c7a087741af0c36c2a1a6699a24a34f6cada53e502d3ad75"
|
| 238 |
+
],
|
| 239 |
+
"index": "pypi",
|
| 240 |
+
"markers": "python_version >= '3.8'",
|
| 241 |
+
"version": "==0.33.0"
|
| 242 |
+
},
|
| 243 |
+
"gtts": {
|
| 244 |
+
"hashes": [
|
| 245 |
+
"sha256:5dd579377f9f5546893bc26315ab1f846933dc27a054764b168f141065ca8436",
|
| 246 |
+
"sha256:f5737b585f6442f677dbe8773424fd50697c75bdf3e36443585e30a8d48c1884"
|
| 247 |
+
],
|
| 248 |
+
"index": "pypi",
|
| 249 |
+
"markers": "python_version >= '3.7'",
|
| 250 |
+
"version": "==2.5.4"
|
| 251 |
+
},
|
| 252 |
+
"h11": {
|
| 253 |
+
"hashes": [
|
| 254 |
+
"sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d",
|
| 255 |
+
"sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"
|
| 256 |
+
],
|
| 257 |
+
"index": "pypi",
|
| 258 |
+
"markers": "python_version >= '3.7'",
|
| 259 |
+
"version": "==0.14.0"
|
| 260 |
+
},
|
| 261 |
+
"httpcore": {
|
| 262 |
+
"hashes": [
|
| 263 |
+
"sha256:8551cb62a169ec7162ac7be8d4817d561f60e08eaa485234898414bb5a8a0b4c",
|
| 264 |
+
"sha256:a3fff8f43dc260d5bd363d9f9cf1830fa3a458b332856f34282de498ed420edd"
|
| 265 |
+
],
|
| 266 |
+
"index": "pypi",
|
| 267 |
+
"markers": "python_version >= '3.8'",
|
| 268 |
+
"version": "==1.0.7"
|
| 269 |
+
},
|
| 270 |
+
"httpx": {
|
| 271 |
+
"hashes": [
|
| 272 |
+
"sha256:75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc",
|
| 273 |
+
"sha256:d909fcccc110f8c7faf814ca82a9a4d816bc5a6dbfea25d6591d6985b8ba59ad"
|
| 274 |
+
],
|
| 275 |
+
"index": "pypi",
|
| 276 |
+
"markers": "python_version >= '3.8'",
|
| 277 |
+
"version": "==0.28.1"
|
| 278 |
+
},
|
| 279 |
+
"huggingface-hub": {
|
| 280 |
+
"hashes": [
|
| 281 |
+
"sha256:1c5155ca7d60b60c2e2fc38cbb3ffb7f7c3adf48f824015b219af9061771daec",
|
| 282 |
+
"sha256:c004463ca870283909d715d20f066ebd6968c2207dae9393fdffb3c1d4d8f98b"
|
| 283 |
+
],
|
| 284 |
+
"index": "pypi",
|
| 285 |
+
"markers": "python_full_version >= '3.8.0'",
|
| 286 |
+
"version": "==0.27.1"
|
| 287 |
+
},
|
| 288 |
+
"idna": {
|
| 289 |
+
"hashes": [
|
| 290 |
+
"sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9",
|
| 291 |
+
"sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"
|
| 292 |
+
],
|
| 293 |
+
"index": "pypi",
|
| 294 |
+
"markers": "python_version >= '3.6'",
|
| 295 |
+
"version": "==3.10"
|
| 296 |
+
},
|
| 297 |
+
"jinja2": {
|
| 298 |
+
"hashes": [
|
| 299 |
+
"sha256:8fefff8dc3034e27bb80d67c671eb8a9bc424c0ef4c0826edbff304cceff43bb",
|
| 300 |
+
"sha256:aba0f4dc9ed8013c424088f68a5c226f7d6097ed89b246d7749c2ec4175c6adb"
|
| 301 |
+
],
|
| 302 |
+
"index": "pypi",
|
| 303 |
+
"markers": "python_version >= '3.7'",
|
| 304 |
+
"version": "==3.1.5"
|
| 305 |
+
},
|
| 306 |
+
"markdown-it-py": {
|
| 307 |
+
"hashes": [
|
| 308 |
+
"sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1",
|
| 309 |
+
"sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb"
|
| 310 |
+
],
|
| 311 |
+
"index": "pypi",
|
| 312 |
+
"markers": "python_version >= '3.8'",
|
| 313 |
+
"version": "==3.0.0"
|
| 314 |
+
},
|
| 315 |
+
"markupsafe": {
|
| 316 |
+
"hashes": [
|
| 317 |
+
"sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf",
|
| 318 |
+
"sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff",
|
| 319 |
+
"sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f",
|
| 320 |
+
"sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3",
|
| 321 |
+
"sha256:1f3fbcb7ef1f16e48246f704ab79d79da8a46891e2da03f8783a5b6fa41a9532",
|
| 322 |
+
"sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f",
|
| 323 |
+
"sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617",
|
| 324 |
+
"sha256:2d2d793e36e230fd32babe143b04cec8a8b3eb8a3122d2aceb4a371e6b09b8df",
|
| 325 |
+
"sha256:30b600cf0a7ac9234b2638fbc0fb6158ba5bdcdf46aeb631ead21248b9affbc4",
|
| 326 |
+
"sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906",
|
| 327 |
+
"sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f",
|
| 328 |
+
"sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4",
|
| 329 |
+
"sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8",
|
| 330 |
+
"sha256:4096e9de5c6fdf43fb4f04c26fb114f61ef0bf2e5604b6ee3019d51b69e8c371",
|
| 331 |
+
"sha256:4275d846e41ecefa46e2015117a9f491e57a71ddd59bbead77e904dc02b1bed2",
|
| 332 |
+
"sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465",
|
| 333 |
+
"sha256:4f11aa001c540f62c6166c7726f71f7573b52c68c31f014c25cc7901deea0b52",
|
| 334 |
+
"sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6",
|
| 335 |
+
"sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169",
|
| 336 |
+
"sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad",
|
| 337 |
+
"sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2",
|
| 338 |
+
"sha256:5dedb4db619ba5a2787a94d877bc8ffc0566f92a01c0ef214865e54ecc9ee5e0",
|
| 339 |
+
"sha256:619bc166c4f2de5caa5a633b8b7326fbe98e0ccbfacabd87268a2b15ff73a029",
|
| 340 |
+
"sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f",
|
| 341 |
+
"sha256:656f7526c69fac7f600bd1f400991cc282b417d17539a1b228617081106feb4a",
|
| 342 |
+
"sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced",
|
| 343 |
+
"sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5",
|
| 344 |
+
"sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c",
|
| 345 |
+
"sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf",
|
| 346 |
+
"sha256:7b2e5a267c855eea6b4283940daa6e88a285f5f2a67f2220203786dfa59b37e9",
|
| 347 |
+
"sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb",
|
| 348 |
+
"sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad",
|
| 349 |
+
"sha256:8dd717634f5a044f860435c1d8c16a270ddf0ef8588d4887037c5028b859b0c3",
|
| 350 |
+
"sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1",
|
| 351 |
+
"sha256:97cafb1f3cbcd3fd2b6fbfb99ae11cdb14deea0736fc2b0952ee177f2b813a46",
|
| 352 |
+
"sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc",
|
| 353 |
+
"sha256:a549b9c31bec33820e885335b451286e2969a2d9e24879f83fe904a5ce59d70a",
|
| 354 |
+
"sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee",
|
| 355 |
+
"sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900",
|
| 356 |
+
"sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5",
|
| 357 |
+
"sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea",
|
| 358 |
+
"sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f",
|
| 359 |
+
"sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5",
|
| 360 |
+
"sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e",
|
| 361 |
+
"sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a",
|
| 362 |
+
"sha256:c8b29db45f8fe46ad280a7294f5c3ec36dbac9491f2d1c17345be8e69cc5928f",
|
| 363 |
+
"sha256:ce409136744f6521e39fd8e2a24c53fa18ad67aa5bc7c2cf83645cce5b5c4e50",
|
| 364 |
+
"sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a",
|
| 365 |
+
"sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b",
|
| 366 |
+
"sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4",
|
| 367 |
+
"sha256:daa4ee5a243f0f20d528d939d06670a298dd39b1ad5f8a72a4275124a7819eff",
|
| 368 |
+
"sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2",
|
| 369 |
+
"sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46",
|
| 370 |
+
"sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b",
|
| 371 |
+
"sha256:ec6a563cff360b50eed26f13adc43e61bc0c04d94b8be985e6fb24b81f6dcfdf",
|
| 372 |
+
"sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5",
|
| 373 |
+
"sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5",
|
| 374 |
+
"sha256:fa9db3f79de01457b03d4f01b34cf91bc0048eb2c3846ff26f66687c2f6d16ab",
|
| 375 |
+
"sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd",
|
| 376 |
+
"sha256:ffee1f21e5ef0d712f9033568f8344d5da8cc2869dbd08d87c84656e6a2d2f68"
|
| 377 |
+
],
|
| 378 |
+
"index": "pypi",
|
| 379 |
+
"markers": "python_version >= '3.7'",
|
| 380 |
+
"version": "==2.1.5"
|
| 381 |
+
},
|
| 382 |
+
"mdurl": {
|
| 383 |
+
"hashes": [
|
| 384 |
+
"sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8",
|
| 385 |
+
"sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba"
|
| 386 |
+
],
|
| 387 |
+
"index": "pypi",
|
| 388 |
+
"markers": "python_version >= '3.7'",
|
| 389 |
+
"version": "==0.1.2"
|
| 390 |
+
},
|
| 391 |
+
"numpy": {
|
| 392 |
+
"hashes": [
|
| 393 |
+
"sha256:059e6a747ae84fce488c3ee397cee7e5f905fd1bda5fb18c66bc41807ff119b2",
|
| 394 |
+
"sha256:08ef779aed40dbc52729d6ffe7dd51df85796a702afbf68a4f4e41fafdc8bda5",
|
| 395 |
+
"sha256:164a829b6aacf79ca47ba4814b130c4020b202522a93d7bff2202bfb33b61c60",
|
| 396 |
+
"sha256:26c9c4382b19fcfbbed3238a14abf7ff223890ea1936b8890f058e7ba35e8d71",
|
| 397 |
+
"sha256:27f5cdf9f493b35f7e41e8368e7d7b4bbafaf9660cba53fb21d2cd174ec09631",
|
| 398 |
+
"sha256:31b89fa67a8042e96715c68e071a1200c4e172f93b0fbe01a14c0ff3ff820fc8",
|
| 399 |
+
"sha256:32cb94448be47c500d2c7a95f93e2f21a01f1fd05dd2beea1ccd049bb6001cd2",
|
| 400 |
+
"sha256:360137f8fb1b753c5cde3ac388597ad680eccbbbb3865ab65efea062c4a1fd16",
|
| 401 |
+
"sha256:3683a8d166f2692664262fd4900f207791d005fb088d7fdb973cc8d663626faa",
|
| 402 |
+
"sha256:38efc1e56b73cc9b182fe55e56e63b044dd26a72128fd2fbd502f75555d92591",
|
| 403 |
+
"sha256:3d03883435a19794e41f147612a77a8f56d4e52822337844fff3d4040a142964",
|
| 404 |
+
"sha256:3ecc47cd7f6ea0336042be87d9e7da378e5c7e9b3c8ad0f7c966f714fc10d821",
|
| 405 |
+
"sha256:40f9e544c1c56ba8f1cf7686a8c9b5bb249e665d40d626a23899ba6d5d9e1484",
|
| 406 |
+
"sha256:4250888bcb96617e00bfa28ac24850a83c9f3a16db471eca2ee1f1714df0f957",
|
| 407 |
+
"sha256:4511d9e6071452b944207c8ce46ad2f897307910b402ea5fa975da32e0102800",
|
| 408 |
+
"sha256:45681fd7128c8ad1c379f0ca0776a8b0c6583d2f69889ddac01559dfe4390918",
|
| 409 |
+
"sha256:48fd472630715e1c1c89bf1feab55c29098cb403cc184b4859f9c86d4fcb6a95",
|
| 410 |
+
"sha256:4c86e2a209199ead7ee0af65e1d9992d1dce7e1f63c4b9a616500f93820658d0",
|
| 411 |
+
"sha256:4dfda918a13cc4f81e9118dea249e192ab167a0bb1966272d5503e39234d694e",
|
| 412 |
+
"sha256:5062dc1a4e32a10dc2b8b13cedd58988261416e811c1dc4dbdea4f57eea61b0d",
|
| 413 |
+
"sha256:51faf345324db860b515d3f364eaa93d0e0551a88d6218a7d61286554d190d73",
|
| 414 |
+
"sha256:526fc406ab991a340744aad7e25251dd47a6720a685fa3331e5c59fef5282a59",
|
| 415 |
+
"sha256:53c09385ff0b72ba79d8715683c1168c12e0b6e84fb0372e97553d1ea91efe51",
|
| 416 |
+
"sha256:55ba24ebe208344aa7a00e4482f65742969a039c2acfcb910bc6fcd776eb4355",
|
| 417 |
+
"sha256:5b6c390bfaef8c45a260554888966618328d30e72173697e5cabe6b285fb2348",
|
| 418 |
+
"sha256:5c5cc0cbabe9452038ed984d05ac87910f89370b9242371bd9079cb4af61811e",
|
| 419 |
+
"sha256:5edb4e4caf751c1518e6a26a83501fda79bff41cc59dac48d70e6d65d4ec4440",
|
| 420 |
+
"sha256:61048b4a49b1c93fe13426e04e04fdf5a03f456616f6e98c7576144677598675",
|
| 421 |
+
"sha256:676f4eebf6b2d430300f1f4f4c2461685f8269f94c89698d832cdf9277f30b84",
|
| 422 |
+
"sha256:67d4cda6fa6ffa073b08c8372aa5fa767ceb10c9a0587c707505a6d426f4e046",
|
| 423 |
+
"sha256:694f9e921a0c8f252980e85bce61ebbd07ed2b7d4fa72d0e4246f2f8aa6642ab",
|
| 424 |
+
"sha256:733585f9f4b62e9b3528dd1070ec4f52b8acf64215b60a845fa13ebd73cd0712",
|
| 425 |
+
"sha256:7671dc19c7019103ca44e8d94917eba8534c76133523ca8406822efdd19c9308",
|
| 426 |
+
"sha256:780077d95eafc2ccc3ced969db22377b3864e5b9a0ea5eb347cc93b3ea900315",
|
| 427 |
+
"sha256:7ba9cc93a91d86365a5d270dee221fdc04fb68d7478e6bf6af650de78a8339e3",
|
| 428 |
+
"sha256:89b16a18e7bba224ce5114db863e7029803c179979e1af6ad6a6b11f70545008",
|
| 429 |
+
"sha256:9036d6365d13b6cbe8f27a0eaf73ddcc070cae584e5ff94bb45e3e9d729feab5",
|
| 430 |
+
"sha256:93cf4e045bae74c90ca833cba583c14b62cb4ba2cba0abd2b141ab52548247e2",
|
| 431 |
+
"sha256:9ad014faa93dbb52c80d8f4d3dcf855865c876c9660cb9bd7553843dd03a4b1e",
|
| 432 |
+
"sha256:9b1d07b53b78bf84a96898c1bc139ad7f10fda7423f5fd158fd0f47ec5e01ac7",
|
| 433 |
+
"sha256:a7746f235c47abc72b102d3bce9977714c2444bdfaea7888d241b4c4bb6a78bf",
|
| 434 |
+
"sha256:aa3017c40d513ccac9621a2364f939d39e550c542eb2a894b4c8da92b38896ab",
|
| 435 |
+
"sha256:b34d87e8a3090ea626003f87f9392b3929a7bbf4104a05b6667348b6bd4bf1cd",
|
| 436 |
+
"sha256:b541032178a718c165a49638d28272b771053f628382d5e9d1c93df23ff58dbf",
|
| 437 |
+
"sha256:ba5511d8f31c033a5fcbda22dd5c813630af98c70b2661f2d2c654ae3cdfcfc8",
|
| 438 |
+
"sha256:bc8a37ad5b22c08e2dbd27df2b3ef7e5c0864235805b1e718a235bcb200cf1cb",
|
| 439 |
+
"sha256:bff7d8ec20f5f42607599f9994770fa65d76edca264a87b5e4ea5629bce12268",
|
| 440 |
+
"sha256:c1ad395cf254c4fbb5b2132fee391f361a6e8c1adbd28f2cd8e79308a615fe9d",
|
| 441 |
+
"sha256:f1d09e520217618e76396377c81fba6f290d5f926f50c35f3a5f72b01a0da780",
|
| 442 |
+
"sha256:f3eac17d9ec51be534685ba877b6ab5edc3ab7ec95c8f163e5d7b39859524716",
|
| 443 |
+
"sha256:f419290bc8968a46c4933158c91a0012b7a99bb2e465d5ef5293879742f8797e",
|
| 444 |
+
"sha256:f62aa6ee4eb43b024b0e5a01cf65a0bb078ef8c395e8713c6e8a12a697144528",
|
| 445 |
+
"sha256:f74e6fdeb9a265624ec3a3918430205dff1df7e95a230779746a6af78bc615af",
|
| 446 |
+
"sha256:f9b57eaa3b0cd8db52049ed0330747b0364e899e8a606a624813452b8203d5f7",
|
| 447 |
+
"sha256:fce4f615f8ca31b2e61aa0eb5865a21e14f5629515c9151850aa936c02a1ee51"
|
| 448 |
+
],
|
| 449 |
+
"index": "pypi",
|
| 450 |
+
"markers": "python_version >= '3.10'",
|
| 451 |
+
"version": "==2.2.1"
|
| 452 |
+
},
|
| 453 |
+
"orjson": {
|
| 454 |
+
"hashes": [
|
| 455 |
+
"sha256:0293a88815e9bb5c90af4045f81ed364d982f955d12052d989d844d6c4e50945",
|
| 456 |
+
"sha256:03f61ca3674555adcb1aa717b9fc87ae936aa7a63f6aba90a474a88701278780",
|
| 457 |
+
"sha256:06d4ec218b1ec1467d8d64da4e123b4794c781b536203c309ca0f52819a16c03",
|
| 458 |
+
"sha256:07520685d408a2aba514c17ccc16199ff2934f9f9e28501e676c557f454a37fe",
|
| 459 |
+
"sha256:0905ca08a10f7e0e0c97d11359609300eb1437490a7f32bbaa349de757e2e0c7",
|
| 460 |
+
"sha256:0de4d6315cfdbd9ec803b945c23b3a68207fd47cbe43626036d97e8e9561a436",
|
| 461 |
+
"sha256:164ac155109226b3a2606ee6dda899ccfbe6e7e18b5bdc3fbc00f79cc074157d",
|
| 462 |
+
"sha256:16642f10c1ca5611251bd835de9914a4b03095e28a34c8ba6a5500b5074338bd",
|
| 463 |
+
"sha256:175abf3d20e737fec47261d278f95031736a49d7832a09ab684026528c4d96db",
|
| 464 |
+
"sha256:175cafd322e458603e8ce73510a068d16b6e6f389c13f69bf16de0e843d7d406",
|
| 465 |
+
"sha256:1b49e2af011c84c3f2d541bb5cd1e3c7c2df672223e7e3ea608f09cf295e5f8a",
|
| 466 |
+
"sha256:21d3be4132f71ef1360385770474f29ea1538a242eef72ac4934fe142800e37f",
|
| 467 |
+
"sha256:26336c0d4b2d44636e1e1e6ed1002f03c6aae4a8a9329561c8883f135e9ff010",
|
| 468 |
+
"sha256:29ca1a93e035d570e8b791b6c0feddd403c6a5388bfe870bf2aa6bba1b9d9b8e",
|
| 469 |
+
"sha256:2ad4b7e367efba6dc3f119c9a0fcd41908b7ec0399a696f3cdea7ec477441b09",
|
| 470 |
+
"sha256:33449c67195969b1a677533dee9d76e006001213a24501333624623e13c7cc8e",
|
| 471 |
+
"sha256:36f5bfc0399cd4811bf10ec7a759c7ab0cd18080956af8ee138097d5b5296a95",
|
| 472 |
+
"sha256:3871bad546aa66c155e3f36f99c459780c2a392d502a64e23fb96d9abf338511",
|
| 473 |
+
"sha256:397083806abd51cf2b3bbbf6c347575374d160331a2d33c5823e22249ad3118b",
|
| 474 |
+
"sha256:3af8e42ae4363773658b8d578d56dedffb4f05ceeb4d1d4dd3fb504950b45526",
|
| 475 |
+
"sha256:4ddc8c866d7467f5ee2991397d2ea94bcf60d0048bdd8ca555740b56f9042725",
|
| 476 |
+
"sha256:4f5007abfdbb1d866e2aa8990bd1c465f0f6da71d19e695fc278282be12cffa5",
|
| 477 |
+
"sha256:56ee546c2bbe9599aba78169f99d1dc33301853e897dbaf642d654248280dc6e",
|
| 478 |
+
"sha256:6169d3868b190d6b21adc8e61f64e3db30f50559dfbdef34a1cd6c738d409dfc",
|
| 479 |
+
"sha256:64410696c97a35af2432dea7bdc4ce32416458159430ef1b4beb79fd30093ad6",
|
| 480 |
+
"sha256:691ab9a13834310a263664313e4f747ceb93662d14a8bdf20eb97d27ed488f16",
|
| 481 |
+
"sha256:6b1225024cf0ef5d15934b5ffe9baf860fe8bc68a796513f5ea4f5056de30bca",
|
| 482 |
+
"sha256:6e2ec73b7099b6a29b40a62e08a23b936423bd35529f8f55c42e27acccde7954",
|
| 483 |
+
"sha256:76344269b550ea01488d19a2a369ab572c1ac4449a72e9f6ac0d70eb1cbfb953",
|
| 484 |
+
"sha256:7796692136a67b3e301ef9052bde6fe8e7bd5200da766811a3a608ffa62aaff0",
|
| 485 |
+
"sha256:7e947f70167fe18469f2023644e91ab3d24f9aed69a5e1c78e2c81b9cea553fb",
|
| 486 |
+
"sha256:8050a5d81c022561ee29cd2739de5b4445f3c72f39423fde80a63299c1892c52",
|
| 487 |
+
"sha256:83adda3db595cb1a7e2237029b3249c85afbe5c747d26b41b802e7482cb3933e",
|
| 488 |
+
"sha256:849ea7845a55f09965826e816cdc7689d6cf74fe9223d79d758c714af955bcb6",
|
| 489 |
+
"sha256:84dd83110503bc10e94322bf3ffab8bc49150176b49b4984dc1cce4c0a993bf9",
|
| 490 |
+
"sha256:868943660fb2a1e6b6b965b74430c16a79320b665b28dd4511d15ad5038d37d5",
|
| 491 |
+
"sha256:8cc8204f0b75606869c707da331058ddf085de29558b516fc43c73ee5ee2aadb",
|
| 492 |
+
"sha256:901e826cb2f1bdc1fcef3ef59adf0c451e8f7c0b5deb26c1a933fb66fb505eae",
|
| 493 |
+
"sha256:90937664e776ad316d64251e2fa2ad69265e4443067668e4727074fe39676414",
|
| 494 |
+
"sha256:92d13292249f9f2a3e418cbc307a9fbbef043c65f4bd8ba1eb620bc2aaba3d15",
|
| 495 |
+
"sha256:962c2ec0dcaf22b76dee9831fdf0c4a33d4bf9a257a2bc5d4adc00d5c8ad9034",
|
| 496 |
+
"sha256:96a1c0ee30fb113b3ae3c748fd75ca74a157ff4c58476c47db4d61518962a011",
|
| 497 |
+
"sha256:998019ef74a4997a9d741b1473533cdb8faa31373afc9849b35129b4b8ec048d",
|
| 498 |
+
"sha256:9a0fba3b8a587a54c18585f077dcab6dd251c170d85cfa4d063d5746cd595a0f",
|
| 499 |
+
"sha256:9d034abdd36f0f0f2240f91492684e5043d46f290525d1117712d5b8137784eb",
|
| 500 |
+
"sha256:9d3f9ed72e7458ded9a1fb1b4d4ed4c4fdbaf82030ce3f9274b4dc1bff7ace2b",
|
| 501 |
+
"sha256:9ed3d26c4cb4f6babaf791aa46a029265850e80ec2a566581f5c2ee1a14df4f1",
|
| 502 |
+
"sha256:9f1d2942605c894162252d6259b0121bf1cb493071a1ea8cb35d79cb3e6ac5bc",
|
| 503 |
+
"sha256:a2d1679df9f9cd9504f8dff24555c1eaabba8aad7f5914f28dab99e3c2552c9d",
|
| 504 |
+
"sha256:b11ed82054fce82fb74cea33247d825d05ad6a4015ecfc02af5fbce442fbf361",
|
| 505 |
+
"sha256:b49a28e30d3eca86db3fe6f9b7f4152fcacbb4a467953cd1b42b94b479b77956",
|
| 506 |
+
"sha256:b5947b139dfa33f72eecc63f17e45230a97e741942955a6c9e650069305eb73d",
|
| 507 |
+
"sha256:c28ed60597c149a9e3f5ad6dd9cebaee6fb2f0e3f2d159a4a2b9b862d4748860",
|
| 508 |
+
"sha256:c6dfbaeb7afa77ca608a50e2770a0461177b63a99520d4928e27591b142c74b1",
|
| 509 |
+
"sha256:c7f189bbfcded40e41a6969c1068ba305850ba016665be71a217918931416fbf",
|
| 510 |
+
"sha256:ca041ad20291a65d853a9523744eebc3f5a4b2f7634e99f8fe88320695ddf766",
|
| 511 |
+
"sha256:cde6d76910d3179dae70f164466692f4ea36da124d6fb1a61399ca589e81d69a",
|
| 512 |
+
"sha256:cf31f6f071a6b8e7aa1ead1fa27b935b48d00fbfa6a28ce856cfff2d5dd68eed",
|
| 513 |
+
"sha256:d313a2998b74bb26e9e371851a173a9b9474764916f1fc7971095699b3c6e964",
|
| 514 |
+
"sha256:d5075c54edf1d6ad81d4c6523ce54a748ba1208b542e54b97d8a882ecd810fd1",
|
| 515 |
+
"sha256:d6546e8073dc382e60fcae4a001a5a1bc46da5eab4a4878acc2d12072d6166d5",
|
| 516 |
+
"sha256:deaa2899dff7f03ab667e2ec25842d233e2a6a9e333efa484dfe666403f3501c",
|
| 517 |
+
"sha256:e2979d0f2959990620f7e62da6cd954e4620ee815539bc57a8ae46e2dacf90e3",
|
| 518 |
+
"sha256:e2bc525e335a8545c4e48f84dd0328bc46158c9aaeb8a1c2276546e94540ea3d",
|
| 519 |
+
"sha256:e4c9f60f9fb0b5be66e416dcd8c9d94c3eabff3801d875bdb1f8ffc12cf86905",
|
| 520 |
+
"sha256:e70a1d62b8288677d48f3bea66c21586a5f999c64ecd3878edb7393e8d1b548d",
|
| 521 |
+
"sha256:eca04dfd792cedad53dc9a917da1a522486255360cb4e77619343a20d9f35364",
|
| 522 |
+
"sha256:eee4bc767f348fba485ed9dc576ca58b0a9eac237f0e160f7a59bce628ed06b3",
|
| 523 |
+
"sha256:efe5fd254cfb0eeee13b8ef7ecb20f5d5a56ddda8a587f3852ab2cedfefdb5f6",
|
| 524 |
+
"sha256:f1c3ea52642c9714dc6e56de8a451a066f6d2707d273e07fe8a9cc1ba073813d",
|
| 525 |
+
"sha256:f496286fc85e93ce0f71cc84fc1c42de2decf1bf494094e188e27a53694777a7",
|
| 526 |
+
"sha256:f506fd666dd1ecd15a832bebc66c4df45c1902fd47526292836c339f7ba665a9",
|
| 527 |
+
"sha256:f77202c80e8ab5a1d1e9faf642343bee5aaf332061e1ada4e9147dbd9eb00c46",
|
| 528 |
+
"sha256:fa18f949d3183a8d468367056be989666ac2bef3a72eece0bade9cdb733b3c28",
|
| 529 |
+
"sha256:fa45e489ef80f28ff0e5ba0a72812b8cfc7c1ef8b46a694723807d1b07c89ebb"
|
| 530 |
+
],
|
| 531 |
+
"index": "pypi",
|
| 532 |
+
"markers": "python_version >= '3.8'",
|
| 533 |
+
"version": "==3.10.14"
|
| 534 |
+
},
|
| 535 |
+
"packaging": {
|
| 536 |
+
"hashes": [
|
| 537 |
+
"sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759",
|
| 538 |
+
"sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f"
|
| 539 |
+
],
|
| 540 |
+
"index": "pypi",
|
| 541 |
+
"markers": "python_version >= '3.8'",
|
| 542 |
+
"version": "==24.2"
|
| 543 |
+
},
|
| 544 |
+
"pandas": {
|
| 545 |
+
"hashes": [
|
| 546 |
+
"sha256:062309c1b9ea12a50e8ce661145c6aab431b1e99530d3cd60640e255778bd43a",
|
| 547 |
+
"sha256:15c0e1e02e93116177d29ff83e8b1619c93ddc9c49083f237d4312337a61165d",
|
| 548 |
+
"sha256:1948ddde24197a0f7add2bdc4ca83bf2b1ef84a1bc8ccffd95eda17fd836ecb5",
|
| 549 |
+
"sha256:1db71525a1538b30142094edb9adc10be3f3e176748cd7acc2240c2f2e5aa3a4",
|
| 550 |
+
"sha256:22a9d949bfc9a502d320aa04e5d02feab689d61da4e7764b62c30b991c42c5f0",
|
| 551 |
+
"sha256:29401dbfa9ad77319367d36940cd8a0b3a11aba16063e39632d98b0e931ddf32",
|
| 552 |
+
"sha256:31d0ced62d4ea3e231a9f228366919a5ea0b07440d9d4dac345376fd8e1477ea",
|
| 553 |
+
"sha256:3508d914817e153ad359d7e069d752cdd736a247c322d932eb89e6bc84217f28",
|
| 554 |
+
"sha256:37e0aced3e8f539eccf2e099f65cdb9c8aa85109b0be6e93e2baff94264bdc6f",
|
| 555 |
+
"sha256:381175499d3802cde0eabbaf6324cce0c4f5d52ca6f8c377c29ad442f50f6348",
|
| 556 |
+
"sha256:38cf8125c40dae9d5acc10fa66af8ea6fdf760b2714ee482ca691fc66e6fcb18",
|
| 557 |
+
"sha256:3b71f27954685ee685317063bf13c7709a7ba74fc996b84fc6821c59b0f06468",
|
| 558 |
+
"sha256:3fc6873a41186404dad67245896a6e440baacc92f5b716ccd1bc9ed2995ab2c5",
|
| 559 |
+
"sha256:4850ba03528b6dd51d6c5d273c46f183f39a9baf3f0143e566b89450965b105e",
|
| 560 |
+
"sha256:4f18ba62b61d7e192368b84517265a99b4d7ee8912f8708660fb4a366cc82667",
|
| 561 |
+
"sha256:56534ce0746a58afaf7942ba4863e0ef81c9c50d3f0ae93e9497d6a41a057645",
|
| 562 |
+
"sha256:59ef3764d0fe818125a5097d2ae867ca3fa64df032331b7e0917cf5d7bf66b13",
|
| 563 |
+
"sha256:5dbca4c1acd72e8eeef4753eeca07de9b1db4f398669d5994086f788a5d7cc30",
|
| 564 |
+
"sha256:5de54125a92bb4d1c051c0659e6fcb75256bf799a732a87184e5ea503965bce3",
|
| 565 |
+
"sha256:61c5ad4043f791b61dd4752191d9f07f0ae412515d59ba8f005832a532f8736d",
|
| 566 |
+
"sha256:6374c452ff3ec675a8f46fd9ab25c4ad0ba590b71cf0656f8b6daa5202bca3fb",
|
| 567 |
+
"sha256:63cc132e40a2e084cf01adf0775b15ac515ba905d7dcca47e9a251819c575ef3",
|
| 568 |
+
"sha256:66108071e1b935240e74525006034333f98bcdb87ea116de573a6a0dccb6c039",
|
| 569 |
+
"sha256:6dfcb5ee8d4d50c06a51c2fffa6cff6272098ad6540aed1a76d15fb9318194d8",
|
| 570 |
+
"sha256:7c2875855b0ff77b2a64a0365e24455d9990730d6431b9e0ee18ad8acee13dbd",
|
| 571 |
+
"sha256:7eee9e7cea6adf3e3d24e304ac6b8300646e2a5d1cd3a3c2abed9101b0846761",
|
| 572 |
+
"sha256:800250ecdadb6d9c78eae4990da62743b857b470883fa27f652db8bdde7f6659",
|
| 573 |
+
"sha256:86976a1c5b25ae3f8ccae3a5306e443569ee3c3faf444dfd0f41cda24667ad57",
|
| 574 |
+
"sha256:8cd6d7cc958a3910f934ea8dbdf17b2364827bb4dafc38ce6eef6bb3d65ff09c",
|
| 575 |
+
"sha256:99df71520d25fade9db7c1076ac94eb994f4d2673ef2aa2e86ee039b6746d20c",
|
| 576 |
+
"sha256:a5a1595fe639f5988ba6a8e5bc9649af3baf26df3998a0abe56c02609392e0a4",
|
| 577 |
+
"sha256:ad5b65698ab28ed8d7f18790a0dc58005c7629f227be9ecc1072aa74c0c1d43a",
|
| 578 |
+
"sha256:b1d432e8d08679a40e2a6d8b2f9770a5c21793a6f9f47fdd52c5ce1948a5a8a9",
|
| 579 |
+
"sha256:b8661b0238a69d7aafe156b7fa86c44b881387509653fdf857bebc5e4008ad42",
|
| 580 |
+
"sha256:ba96630bc17c875161df3818780af30e43be9b166ce51c9a18c1feae342906c2",
|
| 581 |
+
"sha256:bc6b93f9b966093cb0fd62ff1a7e4c09e6d546ad7c1de191767baffc57628f39",
|
| 582 |
+
"sha256:c124333816c3a9b03fbeef3a9f230ba9a737e9e5bb4060aa2107a86cc0a497fc",
|
| 583 |
+
"sha256:cd8d0c3be0515c12fed0bdbae072551c8b54b7192c7b1fda0ba56059a0179698",
|
| 584 |
+
"sha256:d9c45366def9a3dd85a6454c0e7908f2b3b8e9c138f5dc38fed7ce720d8453ed",
|
| 585 |
+
"sha256:f00d1345d84d8c86a63e476bb4955e46458b304b9575dcf71102b5c705320015",
|
| 586 |
+
"sha256:f3a255b2c19987fbbe62a9dfd6cff7ff2aa9ccab3fc75218fd4b7530f01efa24",
|
| 587 |
+
"sha256:fffb8ae78d8af97f849404f21411c95062db1496aeb3e56f146f0355c9989319"
|
| 588 |
+
],
|
| 589 |
+
"index": "pypi",
|
| 590 |
+
"markers": "python_version >= '3.9'",
|
| 591 |
+
"version": "==2.2.3"
|
| 592 |
+
},
|
| 593 |
+
"pillow": {
|
| 594 |
+
"hashes": [
|
| 595 |
+
"sha256:015c6e863faa4779251436db398ae75051469f7c903b043a48f078e437656f83",
|
| 596 |
+
"sha256:0a2f91f8a8b367e7a57c6e91cd25af510168091fb89ec5146003e424e1558a96",
|
| 597 |
+
"sha256:11633d58b6ee5733bde153a8dafd25e505ea3d32e261accd388827ee987baf65",
|
| 598 |
+
"sha256:2062ffb1d36544d42fcaa277b069c88b01bb7298f4efa06731a7fd6cc290b81a",
|
| 599 |
+
"sha256:31eba6bbdd27dde97b0174ddf0297d7a9c3a507a8a1480e1e60ef914fe23d352",
|
| 600 |
+
"sha256:3362c6ca227e65c54bf71a5f88b3d4565ff1bcbc63ae72c34b07bbb1cc59a43f",
|
| 601 |
+
"sha256:368da70808b36d73b4b390a8ffac11069f8a5c85f29eff1f1b01bcf3ef5b2a20",
|
| 602 |
+
"sha256:36ba10b9cb413e7c7dfa3e189aba252deee0602c86c309799da5a74009ac7a1c",
|
| 603 |
+
"sha256:3764d53e09cdedd91bee65c2527815d315c6b90d7b8b79759cc48d7bf5d4f114",
|
| 604 |
+
"sha256:3a5fe20a7b66e8135d7fd617b13272626a28278d0e578c98720d9ba4b2439d49",
|
| 605 |
+
"sha256:3cdcdb0b896e981678eee140d882b70092dac83ac1cdf6b3a60e2216a73f2b91",
|
| 606 |
+
"sha256:4637b88343166249fe8aa94e7c4a62a180c4b3898283bb5d3d2fd5fe10d8e4e0",
|
| 607 |
+
"sha256:4db853948ce4e718f2fc775b75c37ba2efb6aaea41a1a5fc57f0af59eee774b2",
|
| 608 |
+
"sha256:4dd43a78897793f60766563969442020e90eb7847463eca901e41ba186a7d4a5",
|
| 609 |
+
"sha256:54251ef02a2309b5eec99d151ebf5c9904b77976c8abdcbce7891ed22df53884",
|
| 610 |
+
"sha256:54ce1c9a16a9561b6d6d8cb30089ab1e5eb66918cb47d457bd996ef34182922e",
|
| 611 |
+
"sha256:593c5fd6be85da83656b93ffcccc2312d2d149d251e98588b14fbc288fd8909c",
|
| 612 |
+
"sha256:5bb94705aea800051a743aa4874bb1397d4695fb0583ba5e425ee0328757f196",
|
| 613 |
+
"sha256:67cd427c68926108778a9005f2a04adbd5e67c442ed21d95389fe1d595458756",
|
| 614 |
+
"sha256:70ca5ef3b3b1c4a0812b5c63c57c23b63e53bc38e758b37a951e5bc466449861",
|
| 615 |
+
"sha256:73ddde795ee9b06257dac5ad42fcb07f3b9b813f8c1f7f870f402f4dc54b5269",
|
| 616 |
+
"sha256:758e9d4ef15d3560214cddbc97b8ef3ef86ce04d62ddac17ad39ba87e89bd3b1",
|
| 617 |
+
"sha256:7d33d2fae0e8b170b6a6c57400e077412240f6f5bb2a342cf1ee512a787942bb",
|
| 618 |
+
"sha256:7fdadc077553621911f27ce206ffcbec7d3f8d7b50e0da39f10997e8e2bb7f6a",
|
| 619 |
+
"sha256:8000376f139d4d38d6851eb149b321a52bb8893a88dae8ee7d95840431977081",
|
| 620 |
+
"sha256:837060a8599b8f5d402e97197d4924f05a2e0d68756998345c829c33186217b1",
|
| 621 |
+
"sha256:89dbdb3e6e9594d512780a5a1c42801879628b38e3efc7038094430844e271d8",
|
| 622 |
+
"sha256:8c730dc3a83e5ac137fbc92dfcfe1511ce3b2b5d7578315b63dbbb76f7f51d90",
|
| 623 |
+
"sha256:8e275ee4cb11c262bd108ab2081f750db2a1c0b8c12c1897f27b160c8bd57bbc",
|
| 624 |
+
"sha256:9044b5e4f7083f209c4e35aa5dd54b1dd5b112b108648f5c902ad586d4f945c5",
|
| 625 |
+
"sha256:93a18841d09bcdd774dcdc308e4537e1f867b3dec059c131fde0327899734aa1",
|
| 626 |
+
"sha256:9409c080586d1f683df3f184f20e36fb647f2e0bc3988094d4fd8c9f4eb1b3b3",
|
| 627 |
+
"sha256:96f82000e12f23e4f29346e42702b6ed9a2f2fea34a740dd5ffffcc8c539eb35",
|
| 628 |
+
"sha256:9aa9aeddeed452b2f616ff5507459e7bab436916ccb10961c4a382cd3e03f47f",
|
| 629 |
+
"sha256:9ee85f0696a17dd28fbcfceb59f9510aa71934b483d1f5601d1030c3c8304f3c",
|
| 630 |
+
"sha256:a07dba04c5e22824816b2615ad7a7484432d7f540e6fa86af60d2de57b0fcee2",
|
| 631 |
+
"sha256:a3cd561ded2cf2bbae44d4605837221b987c216cff94f49dfeed63488bb228d2",
|
| 632 |
+
"sha256:a697cd8ba0383bba3d2d3ada02b34ed268cb548b369943cd349007730c92bddf",
|
| 633 |
+
"sha256:a76da0a31da6fcae4210aa94fd779c65c75786bc9af06289cd1c184451ef7a65",
|
| 634 |
+
"sha256:a85b653980faad27e88b141348707ceeef8a1186f75ecc600c395dcac19f385b",
|
| 635 |
+
"sha256:a8d65b38173085f24bc07f8b6c505cbb7418009fa1a1fcb111b1f4961814a442",
|
| 636 |
+
"sha256:aa8dd43daa836b9a8128dbe7d923423e5ad86f50a7a14dc688194b7be5c0dea2",
|
| 637 |
+
"sha256:ab8a209b8485d3db694fa97a896d96dd6533d63c22829043fd9de627060beade",
|
| 638 |
+
"sha256:abc56501c3fd148d60659aae0af6ddc149660469082859fa7b066a298bde9482",
|
| 639 |
+
"sha256:ad5db5781c774ab9a9b2c4302bbf0c1014960a0a7be63278d13ae6fdf88126fe",
|
| 640 |
+
"sha256:ae98e14432d458fc3de11a77ccb3ae65ddce70f730e7c76140653048c71bfcbc",
|
| 641 |
+
"sha256:b20be51b37a75cc54c2c55def3fa2c65bb94ba859dde241cd0a4fd302de5ae0a",
|
| 642 |
+
"sha256:b523466b1a31d0dcef7c5be1f20b942919b62fd6e9a9be199d035509cbefc0ec",
|
| 643 |
+
"sha256:b5d658fbd9f0d6eea113aea286b21d3cd4d3fd978157cbf2447a6035916506d3",
|
| 644 |
+
"sha256:b6123aa4a59d75f06e9dd3dac5bf8bc9aa383121bb3dd9a7a612e05eabc9961a",
|
| 645 |
+
"sha256:bd165131fd51697e22421d0e467997ad31621b74bfc0b75956608cb2906dda07",
|
| 646 |
+
"sha256:bf902d7413c82a1bfa08b06a070876132a5ae6b2388e2712aab3a7cbc02205c6",
|
| 647 |
+
"sha256:c12fc111ef090845de2bb15009372175d76ac99969bdf31e2ce9b42e4b8cd88f",
|
| 648 |
+
"sha256:c1eec9d950b6fe688edee07138993e54ee4ae634c51443cfb7c1e7613322718e",
|
| 649 |
+
"sha256:c640e5a06869c75994624551f45e5506e4256562ead981cce820d5ab39ae2192",
|
| 650 |
+
"sha256:cc1331b6d5a6e144aeb5e626f4375f5b7ae9934ba620c0ac6b3e43d5e683a0f0",
|
| 651 |
+
"sha256:cfd5cd998c2e36a862d0e27b2df63237e67273f2fc78f47445b14e73a810e7e6",
|
| 652 |
+
"sha256:d3d8da4a631471dfaf94c10c85f5277b1f8e42ac42bade1ac67da4b4a7359b73",
|
| 653 |
+
"sha256:d44ff19eea13ae4acdaaab0179fa68c0c6f2f45d66a4d8ec1eda7d6cecbcc15f",
|
| 654 |
+
"sha256:dd0052e9db3474df30433f83a71b9b23bd9e4ef1de13d92df21a52c0303b8ab6",
|
| 655 |
+
"sha256:dd0e081319328928531df7a0e63621caf67652c8464303fd102141b785ef9547",
|
| 656 |
+
"sha256:dda60aa465b861324e65a78c9f5cf0f4bc713e4309f83bc387be158b077963d9",
|
| 657 |
+
"sha256:e06695e0326d05b06833b40b7ef477e475d0b1ba3a6d27da1bb48c23209bf457",
|
| 658 |
+
"sha256:e1abe69aca89514737465752b4bcaf8016de61b3be1397a8fc260ba33321b3a8",
|
| 659 |
+
"sha256:e267b0ed063341f3e60acd25c05200df4193e15a4a5807075cd71225a2386e26",
|
| 660 |
+
"sha256:e5449ca63da169a2e6068dd0e2fcc8d91f9558aba89ff6d02121ca8ab11e79e5",
|
| 661 |
+
"sha256:e63e4e5081de46517099dc30abe418122f54531a6ae2ebc8680bcd7096860eab",
|
| 662 |
+
"sha256:f189805c8be5ca5add39e6f899e6ce2ed824e65fb45f3c28cb2841911da19070",
|
| 663 |
+
"sha256:f7955ecf5609dee9442cbface754f2c6e541d9e6eda87fad7f7a989b0bdb9d71",
|
| 664 |
+
"sha256:f86d3a7a9af5d826744fabf4afd15b9dfef44fe69a98541f666f66fbb8d3fef9",
|
| 665 |
+
"sha256:fbd43429d0d7ed6533b25fc993861b8fd512c42d04514a0dd6337fb3ccf22761"
|
| 666 |
+
],
|
| 667 |
+
"index": "pypi",
|
| 668 |
+
"markers": "python_version >= '3.9'",
|
| 669 |
+
"version": "==11.1.0"
|
| 670 |
+
},
|
| 671 |
+
"pyaudio": {
|
| 672 |
+
"hashes": [
|
| 673 |
+
"sha256:009f357ee5aa6bc8eb19d69921cd30e98c42cddd34210615d592a71d09c4bd57",
|
| 674 |
+
"sha256:126065b5e82a1c03ba16e7c0404d8f54e17368836e7d2d92427358ad44fefe61",
|
| 675 |
+
"sha256:12f2f1ba04e06ff95d80700a78967897a489c05e093e3bffa05a84ed9c0a7fa3",
|
| 676 |
+
"sha256:2a166fc88d435a2779810dd2678354adc33499e9d4d7f937f28b20cc55893e83",
|
| 677 |
+
"sha256:2dac0d6d675fe7e181ba88f2de88d321059b69abd52e3f4934a8878e03a7a074",
|
| 678 |
+
"sha256:506b32a595f8693811682ab4b127602d404df7dfc453b499c91a80d0f7bad289",
|
| 679 |
+
"sha256:5fce4bcdd2e0e8c063d835dbe2860dac46437506af509353c7f8114d4bacbd5b",
|
| 680 |
+
"sha256:692d8c1446f52ed2662120bcd9ddcb5aa2b71f38bda31e58b19fb4672fffba69",
|
| 681 |
+
"sha256:78dfff3879b4994d1f4fc6485646a57755c6ee3c19647a491f790a0895bd2f87",
|
| 682 |
+
"sha256:858caf35b05c26d8fc62f1efa2e8f53d5fa1a01164842bd622f70ddc41f55000",
|
| 683 |
+
"sha256:95328285b4dab57ea8c52a4a996cb52be6d629353315be5bfda403d15932a497",
|
| 684 |
+
"sha256:bbeb01d36a2f472ae5ee5e1451cacc42112986abe622f735bb870a5db77cf903",
|
| 685 |
+
"sha256:f745109634a7c19fa4d6b8b7d6967c3123d988c9ade0cd35d4295ee1acdb53e9"
|
| 686 |
+
],
|
| 687 |
+
"index": "pypi",
|
| 688 |
+
"version": "==0.2.14"
|
| 689 |
+
},
|
| 690 |
+
"pydantic": {
|
| 691 |
+
"hashes": [
|
| 692 |
+
"sha256:278b38dbbaec562011d659ee05f63346951b3a248a6f3642e1bc68894ea2b4ff",
|
| 693 |
+
"sha256:4dd4e322dbe55472cb7ca7e73f4b63574eecccf2835ffa2af9021ce113c83c53"
|
| 694 |
+
],
|
| 695 |
+
"index": "pypi",
|
| 696 |
+
"markers": "python_version >= '3.8'",
|
| 697 |
+
"version": "==2.10.5"
|
| 698 |
+
},
|
| 699 |
+
"pydantic-core": {
|
| 700 |
+
"hashes": [
|
| 701 |
+
"sha256:00bad2484fa6bda1e216e7345a798bd37c68fb2d97558edd584942aa41b7d278",
|
| 702 |
+
"sha256:0296abcb83a797db256b773f45773da397da75a08f5fcaef41f2044adec05f50",
|
| 703 |
+
"sha256:03d0f86ea3184a12f41a2d23f7ccb79cdb5a18e06993f8a45baa8dfec746f0e9",
|
| 704 |
+
"sha256:044a50963a614ecfae59bb1eaf7ea7efc4bc62f49ed594e18fa1e5d953c40e9f",
|
| 705 |
+
"sha256:05e3a55d124407fffba0dd6b0c0cd056d10e983ceb4e5dbd10dda135c31071d6",
|
| 706 |
+
"sha256:08e125dbdc505fa69ca7d9c499639ab6407cfa909214d500897d02afb816e7cc",
|
| 707 |
+
"sha256:097830ed52fd9e427942ff3b9bc17fab52913b2f50f2880dc4a5611446606a54",
|
| 708 |
+
"sha256:0d1e85068e818c73e048fe28cfc769040bb1f475524f4745a5dc621f75ac7630",
|
| 709 |
+
"sha256:0d75070718e369e452075a6017fbf187f788e17ed67a3abd47fa934d001863d9",
|
| 710 |
+
"sha256:14d4a5c49d2f009d62a2a7140d3064f686d17a5d1a268bc641954ba181880236",
|
| 711 |
+
"sha256:172fce187655fece0c90d90a678424b013f8fbb0ca8b036ac266749c09438cb7",
|
| 712 |
+
"sha256:18a101c168e4e092ab40dbc2503bdc0f62010e95d292b27827871dc85450d7ee",
|
| 713 |
+
"sha256:1a4207639fb02ec2dbb76227d7c751a20b1a6b4bc52850568e52260cae64ca3b",
|
| 714 |
+
"sha256:1c1fd185014191700554795c99b347d64f2bb637966c4cfc16998a0ca700d048",
|
| 715 |
+
"sha256:1e2cb691ed9834cd6a8be61228471d0a503731abfb42f82458ff27be7b2186fc",
|
| 716 |
+
"sha256:1ebaf1d0481914d004a573394f4be3a7616334be70261007e47c2a6fe7e50130",
|
| 717 |
+
"sha256:220f892729375e2d736b97d0e51466252ad84c51857d4d15f5e9692f9ef12be4",
|
| 718 |
+
"sha256:251136cdad0cb722e93732cb45ca5299fb56e1344a833640bf93b2803f8d1bfd",
|
| 719 |
+
"sha256:26f0d68d4b235a2bae0c3fc585c585b4ecc51382db0e3ba402a22cbc440915e4",
|
| 720 |
+
"sha256:26f32e0adf166a84d0cb63be85c562ca8a6fa8de28e5f0d92250c6b7e9e2aff7",
|
| 721 |
+
"sha256:280d219beebb0752699480fe8f1dc61ab6615c2046d76b7ab7ee38858de0a4e7",
|
| 722 |
+
"sha256:28ccb213807e037460326424ceb8b5245acb88f32f3d2777427476e1b32c48c4",
|
| 723 |
+
"sha256:2bf14caea37e91198329b828eae1618c068dfb8ef17bb33287a7ad4b61ac314e",
|
| 724 |
+
"sha256:2d367ca20b2f14095a8f4fa1210f5a7b78b8a20009ecced6b12818f455b1e9fa",
|
| 725 |
+
"sha256:30c5f68ded0c36466acede341551106821043e9afaad516adfb6e8fa80a4e6a6",
|
| 726 |
+
"sha256:337b443af21d488716f8d0b6164de833e788aa6bd7e3a39c005febc1284f4962",
|
| 727 |
+
"sha256:3911ac9284cd8a1792d3cb26a2da18f3ca26c6908cc434a18f730dc0db7bfa3b",
|
| 728 |
+
"sha256:3d591580c34f4d731592f0e9fe40f9cc1b430d297eecc70b962e93c5c668f15f",
|
| 729 |
+
"sha256:3de3ce3c9ddc8bbd88f6e0e304dea0e66d843ec9de1b0042b0911c1663ffd474",
|
| 730 |
+
"sha256:3de9961f2a346257caf0aa508a4da705467f53778e9ef6fe744c038119737ef5",
|
| 731 |
+
"sha256:40d02e7d45c9f8af700f3452f329ead92da4c5f4317ca9b896de7ce7199ea459",
|
| 732 |
+
"sha256:42c5f762659e47fdb7b16956c71598292f60a03aa92f8b6351504359dbdba6cf",
|
| 733 |
+
"sha256:47956ae78b6422cbd46f772f1746799cbb862de838fd8d1fbd34a82e05b0983a",
|
| 734 |
+
"sha256:491a2b73db93fab69731eaee494f320faa4e093dbed776be1a829c2eb222c34c",
|
| 735 |
+
"sha256:4c9775e339e42e79ec99c441d9730fccf07414af63eac2f0e48e08fd38a64d76",
|
| 736 |
+
"sha256:4e0b4220ba5b40d727c7f879eac379b822eee5d8fff418e9d3381ee45b3b0362",
|
| 737 |
+
"sha256:50a68f3e3819077be2c98110c1f9dcb3817e93f267ba80a2c05bb4f8799e2ff4",
|
| 738 |
+
"sha256:519f29f5213271eeeeb3093f662ba2fd512b91c5f188f3bb7b27bc5973816934",
|
| 739 |
+
"sha256:521eb9b7f036c9b6187f0b47318ab0d7ca14bd87f776240b90b21c1f4f149320",
|
| 740 |
+
"sha256:57762139821c31847cfb2df63c12f725788bd9f04bc2fb392790959b8f70f118",
|
| 741 |
+
"sha256:5e4f4bb20d75e9325cc9696c6802657b58bc1dbbe3022f32cc2b2b632c3fbb96",
|
| 742 |
+
"sha256:5e68c4446fe0810e959cdff46ab0a41ce2f2c86d227d96dc3847af0ba7def306",
|
| 743 |
+
"sha256:669e193c1c576a58f132e3158f9dfa9662969edb1a250c54d8fa52590045f046",
|
| 744 |
+
"sha256:688d3fd9fcb71f41c4c015c023d12a79d1c4c0732ec9eb35d96e3388a120dcf3",
|
| 745 |
+
"sha256:6fb4aadc0b9a0c063206846d603b92030eb6f03069151a625667f982887153e2",
|
| 746 |
+
"sha256:7041c36f5680c6e0f08d922aed302e98b3745d97fe1589db0a3eebf6624523af",
|
| 747 |
+
"sha256:71b24c7d61131bb83df10cc7e687433609963a944ccf45190cfc21e0887b08c9",
|
| 748 |
+
"sha256:77d1bca19b0f7021b3a982e6f903dcd5b2b06076def36a652e3907f596e29f67",
|
| 749 |
+
"sha256:7969e133a6f183be60e9f6f56bfae753585680f3b7307a8e555a948d443cc05a",
|
| 750 |
+
"sha256:7a66efda2387de898c8f38c0cf7f14fca0b51a8ef0b24bfea5849f1b3c95af27",
|
| 751 |
+
"sha256:7d0c8399fcc1848491f00e0314bd59fb34a9c008761bcb422a057670c3f65e35",
|
| 752 |
+
"sha256:7d14bd329640e63852364c306f4d23eb744e0f8193148d4044dd3dacdaacbd8b",
|
| 753 |
+
"sha256:7e17b560be3c98a8e3aa66ce828bdebb9e9ac6ad5466fba92eb74c4c95cb1151",
|
| 754 |
+
"sha256:8083d4e875ebe0b864ffef72a4304827015cff328a1be6e22cc850753bfb122b",
|
| 755 |
+
"sha256:82f91663004eb8ed30ff478d77c4d1179b3563df6cdb15c0817cd1cdaf34d154",
|
| 756 |
+
"sha256:82f986faf4e644ffc189a7f1aafc86e46ef70372bb153e7001e8afccc6e54133",
|
| 757 |
+
"sha256:83097677b8e3bd7eaa6775720ec8e0405f1575015a463285a92bfdfe254529ef",
|
| 758 |
+
"sha256:85210c4d99a0114f5a9481b44560d7d1e35e32cc5634c656bc48e590b669b145",
|
| 759 |
+
"sha256:8c19d1ea0673cd13cc2f872f6c9ab42acc4e4f492a7ca9d3795ce2b112dd7e15",
|
| 760 |
+
"sha256:8d9b3388db186ba0c099a6d20f0604a44eabdeef1777ddd94786cdae158729e4",
|
| 761 |
+
"sha256:8e10c99ef58cfdf2a66fc15d66b16c4a04f62bca39db589ae8cba08bc55331bc",
|
| 762 |
+
"sha256:953101387ecf2f5652883208769a79e48db18c6df442568a0b5ccd8c2723abee",
|
| 763 |
+
"sha256:9c3ed807c7b91de05e63930188f19e921d1fe90de6b4f5cd43ee7fcc3525cb8c",
|
| 764 |
+
"sha256:9e0c8cfefa0ef83b4da9588448b6d8d2a2bf1a53c3f1ae5fca39eb3061e2f0b0",
|
| 765 |
+
"sha256:9fdbe7629b996647b99c01b37f11170a57ae675375b14b8c13b8518b8320ced5",
|
| 766 |
+
"sha256:a0fcd29cd6b4e74fe8ddd2c90330fd8edf2e30cb52acda47f06dd615ae72da57",
|
| 767 |
+
"sha256:ac4dbfd1691affb8f48c2c13241a2e3b60ff23247cbcf981759c768b6633cf8b",
|
| 768 |
+
"sha256:b0cb791f5b45307caae8810c2023a184c74605ec3bcbb67d13846c28ff731ff8",
|
| 769 |
+
"sha256:ba5dd002f88b78a4215ed2f8ddbdf85e8513382820ba15ad5ad8955ce0ca19a1",
|
| 770 |
+
"sha256:bca101c00bff0adb45a833f8451b9105d9df18accb8743b08107d7ada14bd7da",
|
| 771 |
+
"sha256:bd8086fa684c4775c27f03f062cbb9eaa6e17f064307e86b21b9e0abc9c0f02e",
|
| 772 |
+
"sha256:bec317a27290e2537f922639cafd54990551725fc844249e64c523301d0822fc",
|
| 773 |
+
"sha256:c10eb4f1659290b523af58fa7cffb452a61ad6ae5613404519aee4bfbf1df993",
|
| 774 |
+
"sha256:c33939a82924da9ed65dab5a65d427205a73181d8098e79b6b426bdf8ad4e656",
|
| 775 |
+
"sha256:c61709a844acc6bf0b7dce7daae75195a10aac96a596ea1b776996414791ede4",
|
| 776 |
+
"sha256:c70c26d2c99f78b125a3459f8afe1aed4d9687c24fd677c6a4436bc042e50d6c",
|
| 777 |
+
"sha256:c817e2b40aba42bac6f457498dacabc568c3b7a986fc9ba7c8d9d260b71485fb",
|
| 778 |
+
"sha256:cabb9bcb7e0d97f74df8646f34fc76fbf793b7f6dc2438517d7a9e50eee4f14d",
|
| 779 |
+
"sha256:cc3f1a99a4f4f9dd1de4fe0312c114e740b5ddead65bb4102884b384c15d8bc9",
|
| 780 |
+
"sha256:cca63613e90d001b9f2f9a9ceb276c308bfa2a43fafb75c8031c4f66039e8c6e",
|
| 781 |
+
"sha256:ce8918cbebc8da707ba805b7fd0b382816858728ae7fe19a942080c24e5b7cd1",
|
| 782 |
+
"sha256:d2088237af596f0a524d3afc39ab3b036e8adb054ee57cbb1dcf8e09da5b29cc",
|
| 783 |
+
"sha256:d262606bf386a5ba0b0af3b97f37c83d7011439e3dc1a9298f21efb292e42f1a",
|
| 784 |
+
"sha256:d2d63f1215638d28221f664596b1ccb3944f6e25dd18cd3b86b0a4c408d5ebb9",
|
| 785 |
+
"sha256:d3e8d504bdd3f10835468f29008d72fc8359d95c9c415ce6e767203db6127506",
|
| 786 |
+
"sha256:d4041c0b966a84b4ae7a09832eb691a35aec90910cd2dbe7a208de59be77965b",
|
| 787 |
+
"sha256:d716e2e30c6f140d7560ef1538953a5cd1a87264c737643d481f2779fc247fe1",
|
| 788 |
+
"sha256:d81d2068e1c1228a565af076598f9e7451712700b673de8f502f0334f281387d",
|
| 789 |
+
"sha256:d9640b0059ff4f14d1f37321b94061c6db164fbe49b334b31643e0528d100d99",
|
| 790 |
+
"sha256:de3cd1899e2c279b140adde9357c4495ed9d47131b4a4eaff9052f23398076b3",
|
| 791 |
+
"sha256:e0fd26b16394ead34a424eecf8a31a1f5137094cabe84a1bcb10fa6ba39d3d31",
|
| 792 |
+
"sha256:e2bb4d3e5873c37bb3dd58714d4cd0b0e6238cebc4177ac8fe878f8b3aa8e74c",
|
| 793 |
+
"sha256:eb026e5a4c1fee05726072337ff51d1efb6f59090b7da90d30ea58625b1ffb39",
|
| 794 |
+
"sha256:eda3f5c2a021bbc5d976107bb302e0131351c2ba54343f8a496dc8783d3d3a6a",
|
| 795 |
+
"sha256:ef592d4bad47296fb11f96cd7dc898b92e795032b4894dfb4076cfccd43a9308",
|
| 796 |
+
"sha256:f141ee28a0ad2123b6611b6ceff018039df17f32ada8b534e6aa039545a3efb2",
|
| 797 |
+
"sha256:f66d89ba397d92f840f8654756196d93804278457b5fbede59598a1f9f90b228",
|
| 798 |
+
"sha256:f6f8e111843bbb0dee4cb6594cdc73e79b3329b526037ec242a3e49012495b3b",
|
| 799 |
+
"sha256:fa8e459d4954f608fa26116118bb67f56b93b209c39b008277ace29937453dc9",
|
| 800 |
+
"sha256:fd1aea04935a508f62e0d0ef1f5ae968774a32afc306fb8545e06f5ff5cdf3ad"
|
| 801 |
+
],
|
| 802 |
+
"index": "pypi",
|
| 803 |
+
"markers": "python_version >= '3.8'",
|
| 804 |
+
"version": "==2.27.2"
|
| 805 |
+
},
|
| 806 |
+
"pydub": {
|
| 807 |
+
"hashes": [
|
| 808 |
+
"sha256:65617e33033874b59d87db603aa1ed450633288aefead953b30bded59cb599a6",
|
| 809 |
+
"sha256:980a33ce9949cab2a569606b65674d748ecbca4f0796887fd6f46173a7b0d30f"
|
| 810 |
+
],
|
| 811 |
+
"index": "pypi",
|
| 812 |
+
"version": "==0.25.1"
|
| 813 |
+
},
|
| 814 |
+
"pygments": {
|
| 815 |
+
"hashes": [
|
| 816 |
+
"sha256:61c16d2a8576dc0649d9f39e089b5f02bcd27fba10d8fb4dcc28173f7a45151f",
|
| 817 |
+
"sha256:9ea1544ad55cecf4b8242fab6dd35a93bbce657034b0611ee383099054ab6d8c"
|
| 818 |
+
],
|
| 819 |
+
"index": "pypi",
|
| 820 |
+
"markers": "python_version >= '3.8'",
|
| 821 |
+
"version": "==2.19.1"
|
| 822 |
+
},
|
| 823 |
+
"python-dateutil": {
|
| 824 |
+
"hashes": [
|
| 825 |
+
"sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3",
|
| 826 |
+
"sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"
|
| 827 |
+
],
|
| 828 |
+
"index": "pypi",
|
| 829 |
+
"markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2'",
|
| 830 |
+
"version": "==2.9.0.post0"
|
| 831 |
+
},
|
| 832 |
+
"python-dotenv": {
|
| 833 |
+
"hashes": [
|
| 834 |
+
"sha256:42667e897e16ab0d66954af0e60a9caa94f0fd4ecf3aaf6d2d260eec1aa36ad6",
|
| 835 |
+
"sha256:b81ee9561e9ca4004139c6cbba3a238c32b03e4894671e181b671e8cb8425d61"
|
| 836 |
+
],
|
| 837 |
+
"index": "pypi",
|
| 838 |
+
"markers": "python_version >= '3.9'",
|
| 839 |
+
"version": "==1.2.1"
|
| 840 |
+
},
|
| 841 |
+
"python-multipart": {
|
| 842 |
+
"hashes": [
|
| 843 |
+
"sha256:8a62d3a8335e06589fe01f2a3e178cdcc632f3fbe0d492ad9ee0ec35aab1f104",
|
| 844 |
+
"sha256:8dd0cab45b8e23064ae09147625994d090fa46f5b0d1e13af944c331a7fa9d13"
|
| 845 |
+
],
|
| 846 |
+
"index": "pypi",
|
| 847 |
+
"markers": "python_version >= '3.8'",
|
| 848 |
+
"version": "==0.0.20"
|
| 849 |
+
},
|
| 850 |
+
"pytz": {
|
| 851 |
+
"hashes": [
|
| 852 |
+
"sha256:2aa355083c50a0f93fa581709deac0c9ad65cca8a9e9beac660adcbd493c798a",
|
| 853 |
+
"sha256:31c7c1817eb7fae7ca4b8c7ee50c72f93aa2dd863de768e1ef4245d426aa0725"
|
| 854 |
+
],
|
| 855 |
+
"index": "pypi",
|
| 856 |
+
"version": "==2024.2"
|
| 857 |
+
},
|
| 858 |
+
"pyyaml": {
|
| 859 |
+
"hashes": [
|
| 860 |
+
"sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff",
|
| 861 |
+
"sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48",
|
| 862 |
+
"sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086",
|
| 863 |
+
"sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e",
|
| 864 |
+
"sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133",
|
| 865 |
+
"sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5",
|
| 866 |
+
"sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484",
|
| 867 |
+
"sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee",
|
| 868 |
+
"sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5",
|
| 869 |
+
"sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68",
|
| 870 |
+
"sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a",
|
| 871 |
+
"sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf",
|
| 872 |
+
"sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99",
|
| 873 |
+
"sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8",
|
| 874 |
+
"sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85",
|
| 875 |
+
"sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19",
|
| 876 |
+
"sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc",
|
| 877 |
+
"sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a",
|
| 878 |
+
"sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1",
|
| 879 |
+
"sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317",
|
| 880 |
+
"sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c",
|
| 881 |
+
"sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631",
|
| 882 |
+
"sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d",
|
| 883 |
+
"sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652",
|
| 884 |
+
"sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5",
|
| 885 |
+
"sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e",
|
| 886 |
+
"sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b",
|
| 887 |
+
"sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8",
|
| 888 |
+
"sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476",
|
| 889 |
+
"sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706",
|
| 890 |
+
"sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563",
|
| 891 |
+
"sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237",
|
| 892 |
+
"sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b",
|
| 893 |
+
"sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083",
|
| 894 |
+
"sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180",
|
| 895 |
+
"sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425",
|
| 896 |
+
"sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e",
|
| 897 |
+
"sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f",
|
| 898 |
+
"sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725",
|
| 899 |
+
"sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183",
|
| 900 |
+
"sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab",
|
| 901 |
+
"sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774",
|
| 902 |
+
"sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725",
|
| 903 |
+
"sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e",
|
| 904 |
+
"sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5",
|
| 905 |
+
"sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d",
|
| 906 |
+
"sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290",
|
| 907 |
+
"sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44",
|
| 908 |
+
"sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed",
|
| 909 |
+
"sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4",
|
| 910 |
+
"sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba",
|
| 911 |
+
"sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12",
|
| 912 |
+
"sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"
|
| 913 |
+
],
|
| 914 |
+
"index": "pypi",
|
| 915 |
+
"markers": "python_version >= '3.8'",
|
| 916 |
+
"version": "==6.0.2"
|
| 917 |
+
},
|
| 918 |
+
"requests": {
|
| 919 |
+
"hashes": [
|
| 920 |
+
"sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760",
|
| 921 |
+
"sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6"
|
| 922 |
+
],
|
| 923 |
+
"index": "pypi",
|
| 924 |
+
"markers": "python_version >= '3.8'",
|
| 925 |
+
"version": "==2.32.3"
|
| 926 |
+
},
|
| 927 |
+
"rich": {
|
| 928 |
+
"hashes": [
|
| 929 |
+
"sha256:439594978a49a09530cff7ebc4b5c7103ef57baf48d5ea3184f21d9a2befa098",
|
| 930 |
+
"sha256:6049d5e6ec054bf2779ab3358186963bac2ea89175919d699e378b99738c2a90"
|
| 931 |
+
],
|
| 932 |
+
"index": "pypi",
|
| 933 |
+
"markers": "python_full_version >= '3.8.0'",
|
| 934 |
+
"version": "==13.9.4"
|
| 935 |
+
},
|
| 936 |
+
"ruff": {
|
| 937 |
+
"hashes": [
|
| 938 |
+
"sha256:186c2313de946f2c22bdf5954b8dd083e124bcfb685732cfb0beae0c47233d9b",
|
| 939 |
+
"sha256:1cd76c7f9c679e6e8f2af8f778367dca82b95009bc7b1a85a47f1521ae524fa7",
|
| 940 |
+
"sha256:2f312c86fb40c5c02b44a29a750ee3b21002bd813b5233facdaf63a51d9a85e1",
|
| 941 |
+
"sha256:342a824b46ddbcdddd3abfbb332fa7fcaac5488bf18073e841236aadf4ad5c19",
|
| 942 |
+
"sha256:39d0174ccc45c439093971cc06ed3ac4dc545f5e8bdacf9f067adf879544d969",
|
| 943 |
+
"sha256:3cae39ba5d137054b0e5b472aee3b78a7c884e61591b100aeb544bcd1fc38d4f",
|
| 944 |
+
"sha256:3f94942a3bb767675d9a051867c036655fe9f6c8a491539156a6f7e6b5f31831",
|
| 945 |
+
"sha256:46ebf5cc106cf7e7378ca3c28ce4293b61b449cd121b98699be727d40b79ba72",
|
| 946 |
+
"sha256:50c647ff96f4ba288db0ad87048257753733763b409b2faf2ea78b45c8bb7fcb",
|
| 947 |
+
"sha256:5dc40a378a0e21b4cfe2b8a0f1812a6572fc7b230ef12cd9fac9161aa91d807f",
|
| 948 |
+
"sha256:69572926c0f0c9912288915214ca9b2809525ea263603370b9e00bed2ba56dbd",
|
| 949 |
+
"sha256:728d791b769cc28c05f12c280f99e8896932e9833fef1dd8756a6af2261fd1ab",
|
| 950 |
+
"sha256:84330dda7abcc270e6055551aca93fdde1b0685fc4fd358f26410f9349cf1743",
|
| 951 |
+
"sha256:937267afce0c9170d6d29f01fcd1f4378172dec6760a9f4dface48cdabf9610a",
|
| 952 |
+
"sha256:ae017c3a29bee341ba584f3823f805abbe5fe9cd97f87ed07ecbf533c4c88366",
|
| 953 |
+
"sha256:beb3298604540c884d8b282fe7625651378e1986c25df51dec5b2f60cafc31ce",
|
| 954 |
+
"sha256:f0c8b149e9c7353cace7d698e1656ffcf1e36e50f8ea3b5d5f7f87ff9986a7ca",
|
| 955 |
+
"sha256:fd2b25ecaf907d6458fa842675382c8597b3c746a2dde6717fe3415425df0c17"
|
| 956 |
+
],
|
| 957 |
+
"index": "pypi",
|
| 958 |
+
"markers": "python_version >= '3.7'",
|
| 959 |
+
"version": "==0.9.1"
|
| 960 |
+
},
|
| 961 |
+
"safehttpx": {
|
| 962 |
+
"hashes": [
|
| 963 |
+
"sha256:407cff0b410b071623087c63dd2080c3b44dc076888d8c5823c00d1e58cb381c",
|
| 964 |
+
"sha256:b356bfc82cee3a24c395b94a2dbeabbed60aff1aa5fa3b5fe97c4f2456ebce42"
|
| 965 |
+
],
|
| 966 |
+
"index": "pypi",
|
| 967 |
+
"markers": "python_version >= '3.10'",
|
| 968 |
+
"version": "==0.1.6"
|
| 969 |
+
},
|
| 970 |
+
"semantic-version": {
|
| 971 |
+
"hashes": [
|
| 972 |
+
"sha256:bdabb6d336998cbb378d4b9db3a4b56a1e3235701dc05ea2690d9a997ed5041c",
|
| 973 |
+
"sha256:de78a3b8e0feda74cabc54aab2da702113e33ac9d9eb9d2389bcf1f58b7d9177"
|
| 974 |
+
],
|
| 975 |
+
"index": "pypi",
|
| 976 |
+
"markers": "python_version >= '2.7'",
|
| 977 |
+
"version": "==2.10.0"
|
| 978 |
+
},
|
| 979 |
+
"shellingham": {
|
| 980 |
+
"hashes": [
|
| 981 |
+
"sha256:7ecfff8f2fd72616f7481040475a65b2bf8af90a56c89140852d1120324e8686",
|
| 982 |
+
"sha256:8dbca0739d487e5bd35ab3ca4b36e11c4078f3a234bfce294b0a0291363404de"
|
| 983 |
+
],
|
| 984 |
+
"index": "pypi",
|
| 985 |
+
"markers": "python_version >= '3.7'",
|
| 986 |
+
"version": "==1.5.4"
|
| 987 |
+
},
|
| 988 |
+
"six": {
|
| 989 |
+
"hashes": [
|
| 990 |
+
"sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274",
|
| 991 |
+
"sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81"
|
| 992 |
+
],
|
| 993 |
+
"index": "pypi",
|
| 994 |
+
"markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2'",
|
| 995 |
+
"version": "==1.17.0"
|
| 996 |
+
},
|
| 997 |
+
"sniffio": {
|
| 998 |
+
"hashes": [
|
| 999 |
+
"sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2",
|
| 1000 |
+
"sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"
|
| 1001 |
+
],
|
| 1002 |
+
"index": "pypi",
|
| 1003 |
+
"markers": "python_version >= '3.7'",
|
| 1004 |
+
"version": "==1.3.1"
|
| 1005 |
+
},
|
| 1006 |
+
"speechrecognition": {
|
| 1007 |
+
"hashes": [
|
| 1008 |
+
"sha256:1859fbb09ae23fa759200f5b0677307f1fb16e2c5c798f4259fcc41dd5399fe6",
|
| 1009 |
+
"sha256:bdd2000a9897832b33095e33adfa48580787255706092e1346d1c6c36adae0a4"
|
| 1010 |
+
],
|
| 1011 |
+
"index": "pypi",
|
| 1012 |
+
"markers": "python_version >= '3.9'",
|
| 1013 |
+
"version": "==3.14.3"
|
| 1014 |
+
},
|
| 1015 |
+
"starlette": {
|
| 1016 |
+
"hashes": [
|
| 1017 |
+
"sha256:0e4ab3d16522a255be6b28260b938eae2482f98ce5cc934cb08dce8dc3ba5835",
|
| 1018 |
+
"sha256:44cedb2b7c77a9de33a8b74b2b90e9f50d11fcf25d8270ea525ad71a25374ff7"
|
| 1019 |
+
],
|
| 1020 |
+
"index": "pypi",
|
| 1021 |
+
"markers": "python_version >= '3.8'",
|
| 1022 |
+
"version": "==0.41.3"
|
| 1023 |
+
},
|
| 1024 |
+
"tomlkit": {
|
| 1025 |
+
"hashes": [
|
| 1026 |
+
"sha256:7a974427f6e119197f670fbbbeae7bef749a6c14e793db934baefc1b5f03efde",
|
| 1027 |
+
"sha256:fff5fe59a87295b278abd31bec92c15d9bc4a06885ab12bcea52c71119392e79"
|
| 1028 |
+
],
|
| 1029 |
+
"index": "pypi",
|
| 1030 |
+
"markers": "python_version >= '3.8'",
|
| 1031 |
+
"version": "==0.13.2"
|
| 1032 |
+
},
|
| 1033 |
+
"tqdm": {
|
| 1034 |
+
"hashes": [
|
| 1035 |
+
"sha256:26445eca388f82e72884e0d580d5464cd801a3ea01e63e5601bdff9ba6a48de2",
|
| 1036 |
+
"sha256:f8aef9c52c08c13a65f30ea34f4e5aac3fd1a34959879d7e59e63027286627f2"
|
| 1037 |
+
],
|
| 1038 |
+
"index": "pypi",
|
| 1039 |
+
"markers": "python_version >= '3.7'",
|
| 1040 |
+
"version": "==4.67.1"
|
| 1041 |
+
},
|
| 1042 |
+
"typer": {
|
| 1043 |
+
"hashes": [
|
| 1044 |
+
"sha256:7994fb7b8155b64d3402518560648446072864beefd44aa2dc36972a5972e847",
|
| 1045 |
+
"sha256:a0588c0a7fa68a1978a069818657778f86abe6ff5ea6abf472f940a08bfe4f0a"
|
| 1046 |
+
],
|
| 1047 |
+
"index": "pypi",
|
| 1048 |
+
"markers": "python_version >= '3.7'",
|
| 1049 |
+
"version": "==0.15.1"
|
| 1050 |
+
},
|
| 1051 |
+
"typing-extensions": {
|
| 1052 |
+
"hashes": [
|
| 1053 |
+
"sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d",
|
| 1054 |
+
"sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8"
|
| 1055 |
+
],
|
| 1056 |
+
"index": "pypi",
|
| 1057 |
+
"markers": "python_version >= '3.8'",
|
| 1058 |
+
"version": "==4.12.2"
|
| 1059 |
+
},
|
| 1060 |
+
"tzdata": {
|
| 1061 |
+
"hashes": [
|
| 1062 |
+
"sha256:7d85cc416e9382e69095b7bdf4afd9e3880418a2413feec7069d533d6b4e31cc",
|
| 1063 |
+
"sha256:a48093786cdcde33cad18c2555e8532f34422074448fbc874186f0abd79565cd"
|
| 1064 |
+
],
|
| 1065 |
+
"index": "pypi",
|
| 1066 |
+
"markers": "python_version >= '2'",
|
| 1067 |
+
"version": "==2024.2"
|
| 1068 |
+
},
|
| 1069 |
+
"urllib3": {
|
| 1070 |
+
"hashes": [
|
| 1071 |
+
"sha256:1cee9ad369867bfdbbb48b7dd50374c0967a0bb7710050facf0dd6911440e3df",
|
| 1072 |
+
"sha256:f8c5449b3cf0861679ce7e0503c7b44b5ec981bec0d1d3795a07f1ba96f0204d"
|
| 1073 |
+
],
|
| 1074 |
+
"index": "pypi",
|
| 1075 |
+
"markers": "python_version >= '3.9'",
|
| 1076 |
+
"version": "==2.3.0"
|
| 1077 |
+
},
|
| 1078 |
+
"uvicorn": {
|
| 1079 |
+
"hashes": [
|
| 1080 |
+
"sha256:023dc038422502fa28a09c7a30bf2b6991512da7dcdb8fd35fe57cfc154126f4",
|
| 1081 |
+
"sha256:404051050cd7e905de2c9a7e61790943440b3416f49cb409f965d9dcd0fa73e9"
|
| 1082 |
+
],
|
| 1083 |
+
"index": "pypi",
|
| 1084 |
+
"markers": "python_version >= '3.9'",
|
| 1085 |
+
"version": "==0.34.0"
|
| 1086 |
+
},
|
| 1087 |
+
"websockets": {
|
| 1088 |
+
"hashes": [
|
| 1089 |
+
"sha256:00fe5da3f037041da1ee0cf8e308374e236883f9842c7c465aa65098b1c9af59",
|
| 1090 |
+
"sha256:01bb2d4f0a6d04538d3c5dfd27c0643269656c28045a53439cbf1c004f90897a",
|
| 1091 |
+
"sha256:034feb9f4286476f273b9a245fb15f02c34d9586a5bc936aff108c3ba1b21beb",
|
| 1092 |
+
"sha256:04a97aca96ca2acedf0d1f332c861c5a4486fdcba7bcef35873820f940c4231e",
|
| 1093 |
+
"sha256:0d4290d559d68288da9f444089fd82490c8d2744309113fc26e2da6e48b65da6",
|
| 1094 |
+
"sha256:1288369a6a84e81b90da5dbed48610cd7e5d60af62df9851ed1d1d23a9069f10",
|
| 1095 |
+
"sha256:14839f54786987ccd9d03ed7f334baec0f02272e7ec4f6e9d427ff584aeea8b4",
|
| 1096 |
+
"sha256:1d045cbe1358d76b24d5e20e7b1878efe578d9897a25c24e6006eef788c0fdf0",
|
| 1097 |
+
"sha256:1f874ba705deea77bcf64a9da42c1f5fc2466d8f14daf410bc7d4ceae0a9fcb0",
|
| 1098 |
+
"sha256:205f672a6c2c671a86d33f6d47c9b35781a998728d2c7c2a3e1cf3333fcb62b7",
|
| 1099 |
+
"sha256:2177ee3901075167f01c5e335a6685e71b162a54a89a56001f1c3e9e3d2ad250",
|
| 1100 |
+
"sha256:219c8187b3ceeadbf2afcf0f25a4918d02da7b944d703b97d12fb01510869078",
|
| 1101 |
+
"sha256:25225cc79cfebc95ba1d24cd3ab86aaa35bcd315d12fa4358939bd55e9bd74a5",
|
| 1102 |
+
"sha256:3630b670d5057cd9e08b9c4dab6493670e8e762a24c2c94ef312783870736ab9",
|
| 1103 |
+
"sha256:368a05465f49c5949e27afd6fbe0a77ce53082185bbb2ac096a3a8afaf4de52e",
|
| 1104 |
+
"sha256:36ebd71db3b89e1f7b1a5deaa341a654852c3518ea7a8ddfdf69cc66acc2db1b",
|
| 1105 |
+
"sha256:39450e6215f7d9f6f7bc2a6da21d79374729f5d052333da4d5825af8a97e6735",
|
| 1106 |
+
"sha256:398b10c77d471c0aab20a845e7a60076b6390bfdaac7a6d2edb0d2c59d75e8d8",
|
| 1107 |
+
"sha256:3c3deac3748ec73ef24fc7be0b68220d14d47d6647d2f85b2771cb35ea847aa1",
|
| 1108 |
+
"sha256:3f14a96a0034a27f9d47fd9788913924c89612225878f8078bb9d55f859272b0",
|
| 1109 |
+
"sha256:3fc753451d471cff90b8f467a1fc0ae64031cf2d81b7b34e1811b7e2691bc4bc",
|
| 1110 |
+
"sha256:414ffe86f4d6f434a8c3b7913655a1a5383b617f9bf38720e7c0799fac3ab1c6",
|
| 1111 |
+
"sha256:449d77d636f8d9c17952628cc7e3b8faf6e92a17ec581ec0c0256300717e1512",
|
| 1112 |
+
"sha256:4b6caec8576e760f2c7dd878ba817653144d5f369200b6ddf9771d64385b84d4",
|
| 1113 |
+
"sha256:4d4fc827a20abe6d544a119896f6b78ee13fe81cbfef416f3f2ddf09a03f0e2e",
|
| 1114 |
+
"sha256:5a42d3ecbb2db5080fc578314439b1d79eef71d323dc661aa616fb492436af5d",
|
| 1115 |
+
"sha256:5b918d288958dc3fa1c5a0b9aa3256cb2b2b84c54407f4813c45d52267600cd3",
|
| 1116 |
+
"sha256:5ef440054124728cc49b01c33469de06755e5a7a4e83ef61934ad95fc327fbb0",
|
| 1117 |
+
"sha256:660c308dabd2b380807ab64b62985eaccf923a78ebc572bd485375b9ca2b7dc7",
|
| 1118 |
+
"sha256:6a6c9bcf7cdc0fd41cc7b7944447982e8acfd9f0d560ea6d6845428ed0562058",
|
| 1119 |
+
"sha256:6d24fc337fc055c9e83414c94e1ee0dee902a486d19d2a7f0929e49d7d604b09",
|
| 1120 |
+
"sha256:7048eb4415d46368ef29d32133134c513f507fff7d953c18c91104738a68c3b3",
|
| 1121 |
+
"sha256:77569d19a13015e840b81550922056acabc25e3f52782625bc6843cfa034e1da",
|
| 1122 |
+
"sha256:8149a0f5a72ca36720981418eeffeb5c2729ea55fa179091c81a0910a114a5d2",
|
| 1123 |
+
"sha256:836bef7ae338a072e9d1863502026f01b14027250a4545672673057997d5c05a",
|
| 1124 |
+
"sha256:8621a07991add373c3c5c2cf89e1d277e49dc82ed72c75e3afc74bd0acc446f0",
|
| 1125 |
+
"sha256:87e31011b5c14a33b29f17eb48932e63e1dcd3fa31d72209848652310d3d1f0d",
|
| 1126 |
+
"sha256:88cf9163ef674b5be5736a584c999e98daf3aabac6e536e43286eb74c126b9c7",
|
| 1127 |
+
"sha256:8fda642151d5affdee8a430bd85496f2e2517be3a2b9d2484d633d5712b15c56",
|
| 1128 |
+
"sha256:90b5d9dfbb6d07a84ed3e696012610b6da074d97453bd01e0e30744b472c8179",
|
| 1129 |
+
"sha256:90f4c7a069c733d95c308380aae314f2cb45bd8a904fb03eb36d1a4983a4993f",
|
| 1130 |
+
"sha256:9481a6de29105d73cf4515f2bef8eb71e17ac184c19d0b9918a3701c6c9c4f23",
|
| 1131 |
+
"sha256:9607b9a442392e690a57909c362811184ea429585a71061cd5d3c2b98065c199",
|
| 1132 |
+
"sha256:9777564c0a72a1d457f0848977a1cbe15cfa75fa2f67ce267441e465717dcf1a",
|
| 1133 |
+
"sha256:a032855dc7db987dff813583d04f4950d14326665d7e714d584560b140ae6b8b",
|
| 1134 |
+
"sha256:a0adf84bc2e7c86e8a202537b4fd50e6f7f0e4a6b6bf64d7ccb96c4cd3330b29",
|
| 1135 |
+
"sha256:a35f704be14768cea9790d921c2c1cc4fc52700410b1c10948511039be824aac",
|
| 1136 |
+
"sha256:a3dfff83ca578cada2d19e665e9c8368e1598d4e787422a460ec70e531dbdd58",
|
| 1137 |
+
"sha256:a4c805c6034206143fbabd2d259ec5e757f8b29d0a2f0bf3d2fe5d1f60147a4a",
|
| 1138 |
+
"sha256:a655bde548ca98f55b43711b0ceefd2a88a71af6350b0c168aa77562104f3f45",
|
| 1139 |
+
"sha256:ad2ab2547761d79926effe63de21479dfaf29834c50f98c4bf5b5480b5838434",
|
| 1140 |
+
"sha256:b1f3628a0510bd58968c0f60447e7a692933589b791a6b572fcef374053ca280",
|
| 1141 |
+
"sha256:b7e7ea2f782408c32d86b87a0d2c1fd8871b0399dd762364c731d86c86069a78",
|
| 1142 |
+
"sha256:bc6ccf7d54c02ae47a48ddf9414c54d48af9c01076a2e1023e3b486b6e72c707",
|
| 1143 |
+
"sha256:bea45f19b7ca000380fbd4e02552be86343080120d074b87f25593ce1700ad58",
|
| 1144 |
+
"sha256:cc1fc87428c1d18b643479caa7b15db7d544652e5bf610513d4a3478dbe823d0",
|
| 1145 |
+
"sha256:cd7c11968bc3860d5c78577f0dbc535257ccec41750675d58d8dc66aa47fe52c",
|
| 1146 |
+
"sha256:ceada5be22fa5a5a4cdeec74e761c2ee7db287208f54c718f2df4b7e200b8d4a",
|
| 1147 |
+
"sha256:cf5201a04550136ef870aa60ad3d29d2a59e452a7f96b94193bee6d73b8ad9a9",
|
| 1148 |
+
"sha256:d9fd19ecc3a4d5ae82ddbfb30962cf6d874ff943e56e0c81f5169be2fda62979",
|
| 1149 |
+
"sha256:ddaa4a390af911da6f680be8be4ff5aaf31c4c834c1a9147bc21cbcbca2d4370",
|
| 1150 |
+
"sha256:df174ece723b228d3e8734a6f2a6febbd413ddec39b3dc592f5a4aa0aff28098",
|
| 1151 |
+
"sha256:e0744623852f1497d825a49a99bfbec9bea4f3f946df6eb9d8a2f0c37a2fec2e",
|
| 1152 |
+
"sha256:e5dc25a9dbd1a7f61eca4b7cb04e74ae4b963d658f9e4f9aad9cd00b688692c8",
|
| 1153 |
+
"sha256:e7591d6f440af7f73c4bd9404f3772bfee064e639d2b6cc8c94076e71b2471c1",
|
| 1154 |
+
"sha256:eb6d38971c800ff02e4a6afd791bbe3b923a9a57ca9aeab7314c21c84bf9ff05",
|
| 1155 |
+
"sha256:ed907449fe5e021933e46a3e65d651f641975a768d0649fee59f10c2985529ed",
|
| 1156 |
+
"sha256:f6cf0ad281c979306a6a34242b371e90e891bce504509fb6bb5246bbbf31e7b6",
|
| 1157 |
+
"sha256:f95ba34d71e2fa0c5d225bde3b3bdb152e957150100e75c86bc7f3964c450d89"
|
| 1158 |
+
],
|
| 1159 |
+
"index": "pypi",
|
| 1160 |
+
"markers": "python_version >= '3.9'",
|
| 1161 |
+
"version": "==14.1"
|
| 1162 |
+
}
|
| 1163 |
+
},
|
| 1164 |
+
"develop": {}
|
| 1165 |
+
}
|
README.md
CHANGED
|
@@ -1,14 +1,154 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
---
|
| 13 |
|
| 14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Project Setup Guide
|
| 2 |
+
|
| 3 |
+
This guide provides step-by-step instructions to set up your project environment, including the installation of FFmpeg and PortAudio across macOS, Linux, and Windows, as well as setting up a Python virtual environment using Pipenv, pip, or conda.
|
| 4 |
+
|
| 5 |
+
## Table of Contents
|
| 6 |
+
|
| 7 |
+
1. [Installing FFmpeg and PortAudio](#installing-ffmpeg-and-portaudio)
|
| 8 |
+
- [macOS](#macos)
|
| 9 |
+
- [Linux](#linux)
|
| 10 |
+
- [Windows](#windows)
|
| 11 |
+
2. [Setting Up a Python Virtual Environment](#setting-up-a-python-virtual-environment)
|
| 12 |
+
- [Using Pipenv](#using-pipenv)
|
| 13 |
+
- [Using pip and venv](#using-pip-and-venv)
|
| 14 |
+
- [Using Conda](#using-conda)
|
| 15 |
+
3. [Running the application](#project-phases-and-python-commands)
|
| 16 |
+
|
| 17 |
+
## Installing FFmpeg and PortAudio
|
| 18 |
+
|
| 19 |
+
### macOS
|
| 20 |
+
|
| 21 |
+
1. **Install Homebrew** (if not already installed):
|
| 22 |
+
|
| 23 |
+
```bash
|
| 24 |
+
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
| 25 |
+
```
|
| 26 |
+
|
| 27 |
+
2. **Install FFmpeg and PortAudio:**
|
| 28 |
+
|
| 29 |
+
```bash
|
| 30 |
+
brew install ffmpeg portaudio
|
| 31 |
+
```
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
### Linux
|
| 35 |
+
For Debian-based distributions (e.g., Ubuntu):
|
| 36 |
+
|
| 37 |
+
1. **Update the package list**
|
| 38 |
+
|
| 39 |
+
```
|
| 40 |
+
sudo apt update
|
| 41 |
+
```
|
| 42 |
+
|
| 43 |
+
2. **Install FFmpeg and PortAudio:**
|
| 44 |
+
```
|
| 45 |
+
sudo apt install ffmpeg portaudio19-dev
|
| 46 |
+
```
|
| 47 |
+
|
| 48 |
+
### Windows
|
| 49 |
+
|
| 50 |
+
#### Download FFmpeg:
|
| 51 |
+
1. Visit the official FFmpeg download page: [FFmpeg Downloads](https://ffmpeg.org/download.html)
|
| 52 |
+
2. Navigate to the Windows builds section and download the latest static build.
|
| 53 |
+
|
| 54 |
+
#### Extract and Set Up FFmpeg:
|
| 55 |
+
1. Extract the downloaded ZIP file to a folder (e.g., `C:\ffmpeg`).
|
| 56 |
+
2. Add the `bin` directory to your system's PATH:
|
| 57 |
+
- Search for "Environment Variables" in the Start menu.
|
| 58 |
+
- Click on "Edit the system environment variables."
|
| 59 |
+
- In the System Properties window, click on "Environment Variables."
|
| 60 |
+
- Under "System variables," select the "Path" variable and click "Edit."
|
| 61 |
+
- Click "New" and add the path to the `bin` directory (e.g., `C:\ffmpeg\bin`).
|
| 62 |
+
- Click "OK" to apply the changes.
|
| 63 |
+
|
| 64 |
+
#### Install PortAudio:
|
| 65 |
+
1. Download the PortAudio binaries from the official website: [PortAudio Downloads](http://www.portaudio.com/download.html)
|
| 66 |
+
2. Follow the installation instructions provided on the website.
|
| 67 |
+
|
| 68 |
---
|
| 69 |
+
|
| 70 |
+
## Setting Up a Python Virtual Environment
|
| 71 |
+
|
| 72 |
+
### Using Pipenv
|
| 73 |
+
1. **Install Pipenv (if not already installed):**
|
| 74 |
+
```
|
| 75 |
+
pip install pipenv
|
| 76 |
+
```
|
| 77 |
+
|
| 78 |
+
2. **Install Dependencies with Pipenv:**
|
| 79 |
+
|
| 80 |
+
```
|
| 81 |
+
pipenv install
|
| 82 |
+
```
|
| 83 |
+
|
| 84 |
+
3. **Activate the Virtual Environment:**
|
| 85 |
+
|
| 86 |
+
```
|
| 87 |
+
pipenv shell
|
| 88 |
+
```
|
| 89 |
+
|
| 90 |
+
---
|
| 91 |
+
|
| 92 |
+
### Using `pip` and `venv`
|
| 93 |
+
#### Create a Virtual Environment:
|
| 94 |
+
```
|
| 95 |
+
python -m venv venv
|
| 96 |
+
```
|
| 97 |
+
|
| 98 |
+
#### Activate the Virtual Environment:
|
| 99 |
+
**macOS/Linux:**
|
| 100 |
+
```
|
| 101 |
+
source venv/bin/activate
|
| 102 |
+
```
|
| 103 |
+
|
| 104 |
+
**Windows:**
|
| 105 |
+
```
|
| 106 |
+
venv\Scripts\activate
|
| 107 |
+
```
|
| 108 |
+
|
| 109 |
+
#### Install Dependencies:
|
| 110 |
+
```
|
| 111 |
+
pip install -r requirements.txt
|
| 112 |
+
```
|
| 113 |
+
|
| 114 |
---
|
| 115 |
|
| 116 |
+
### Using Conda
|
| 117 |
+
#### Create a Conda Environment:
|
| 118 |
+
```
|
| 119 |
+
conda create --name myenv python=3.11
|
| 120 |
+
```
|
| 121 |
+
|
| 122 |
+
#### Activate the Conda Environment:
|
| 123 |
+
```
|
| 124 |
+
conda activate myenv
|
| 125 |
+
```
|
| 126 |
+
|
| 127 |
+
#### Install Dependencies:
|
| 128 |
+
```
|
| 129 |
+
pip install -r requirements.txt
|
| 130 |
+
```
|
| 131 |
+
|
| 132 |
+
|
| 133 |
+
# Project Phases and Python Commands
|
| 134 |
+
|
| 135 |
+
## Phase 1: Brain of the doctor
|
| 136 |
+
```
|
| 137 |
+
python brain_of_the_doctor.py
|
| 138 |
+
```
|
| 139 |
+
|
| 140 |
+
## Phase 2: Voice of the patient
|
| 141 |
+
```
|
| 142 |
+
python voice_of_the_patient.py
|
| 143 |
+
```
|
| 144 |
+
|
| 145 |
+
## Phase 3: Voice of the doctor
|
| 146 |
+
```
|
| 147 |
+
python voice_of_the_doctor.py
|
| 148 |
+
```
|
| 149 |
+
|
| 150 |
+
## Phase 4: Setup Gradio UI
|
| 151 |
+
```
|
| 152 |
+
python gradio_app.py
|
| 153 |
+
```
|
| 154 |
+
|
Temp.mp3
ADDED
|
File without changes
|
acne.jpg
ADDED
|
Git LFS Details
|
ai-doctor-voicebit-ppt.pdf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:455416172a4edb33075de35f4c2d3064659f36f6d55c6de0badc5e26e1777c1a
|
| 3 |
+
size 284702
|
brain_of_the_doctor.py
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from dotenv import load_dotenv
|
| 2 |
+
load_dotenv()
|
| 3 |
+
|
| 4 |
+
#Step1: Setup GROQ API key
|
| 5 |
+
import os
|
| 6 |
+
GROQ_API_KEY = os.getenv("GROQ_API_KEY")
|
| 7 |
+
|
| 8 |
+
#Step2: Convert image to required format
|
| 9 |
+
import base64
|
| 10 |
+
|
| 11 |
+
def encode_image(image_path):
|
| 12 |
+
with open(image_path, "rb") as image_file:
|
| 13 |
+
return base64.b64encode(image_file.read()).decode('utf-8')
|
| 14 |
+
|
| 15 |
+
#Step3: Setup Multimodal LLM
|
| 16 |
+
from groq import Groq
|
| 17 |
+
|
| 18 |
+
query="Is there something wrong with my face?"
|
| 19 |
+
model="meta-llama/llama-4-scout-17b-16e-instruct"
|
| 20 |
+
|
| 21 |
+
def analyze_image_with_query(query, model, encoded_image):
|
| 22 |
+
client = Groq(api_key=GROQ_API_KEY) # FIXED HERE
|
| 23 |
+
messages = [
|
| 24 |
+
{
|
| 25 |
+
"role": "user",
|
| 26 |
+
"content": [
|
| 27 |
+
{"type": "text", "text": query},
|
| 28 |
+
{"type": "image_url",
|
| 29 |
+
"image_url": {
|
| 30 |
+
"url": f"data:image/jpeg;base64,{encoded_image}",
|
| 31 |
+
},
|
| 32 |
+
},
|
| 33 |
+
],
|
| 34 |
+
}
|
| 35 |
+
]
|
| 36 |
+
|
| 37 |
+
chat_completion = client.chat.completions.create(
|
| 38 |
+
messages=messages,
|
| 39 |
+
model=model
|
| 40 |
+
)
|
| 41 |
+
|
| 42 |
+
return chat_completion.choices[0].message.content
|
| 43 |
+
|
| 44 |
+
# MAIN EXECUTION
|
| 45 |
+
if __name__ == "__main__":
|
| 46 |
+
encoded_img = encode_image("acne.jpg") # make sure acne.jpg exists same folder
|
| 47 |
+
result = analyze_image_with_query(query, model, encoded_img)
|
| 48 |
+
print(result)
|
dandruff-optimized.webp
ADDED
|
Git LFS Details
|
final.mp3
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a090ae133f54c943220f5f3cda2d5a10a10587d89524e2e470d9025cd9de4e9f
|
| 3 |
+
size 327552
|
gradio_app.py
ADDED
|
@@ -0,0 +1,185 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# gradio_app.py
|
| 2 |
+
# if you dont use pipenv uncomment the following:
|
| 3 |
+
# from dotenv import load_dotenv
|
| 4 |
+
# load_dotenv()
|
| 5 |
+
|
| 6 |
+
import os
|
| 7 |
+
import json
|
| 8 |
+
import gradio as gr
|
| 9 |
+
from pathlib import Path
|
| 10 |
+
from brain_of_the_doctor import encode_image, analyze_image_with_query
|
| 11 |
+
from voice_of_the_patient import transcribe_with_groq
|
| 12 |
+
from voice_of_the_doctor import text_to_speech_with_gtts
|
| 13 |
+
|
| 14 |
+
# --- Configuration ---
|
| 15 |
+
MODEL_NAME = "meta-llama/llama-4-scout-17b-16e-instruct" # your choice A
|
| 16 |
+
GROQ_KEY = os.environ.get("GROQ_API_KEY")
|
| 17 |
+
|
| 18 |
+
# System prompt tuned for Format 2 + JSON output (analysis short, treatment longer)
|
| 19 |
+
SYSTEM_PROMPT_TEMPLATE = """
|
| 20 |
+
You are a professional medical doctor speaking directly to a patient.
|
| 21 |
+
You will be given an image to analyze and an optional transcription of the patient's spoken context.
|
| 22 |
+
Produce a JSON object (and nothing else) with exactly two keys: "analysis" and "treatment".
|
| 23 |
+
|
| 24 |
+
Rules:
|
| 25 |
+
- "analysis": one or two concise sentences describing what appears medically wrong in the image. Use a natural doctor voice, start with "With what I see, ..." and keep it short.
|
| 26 |
+
- "treatment": 3 to 4 sentences giving practical remedies, next steps, and when to seek professional care. Use a natural doctor voice, clear steps, no bullet points or numbered lists.
|
| 27 |
+
- Do not include any extra keys, commentary, or markdown. Respond ONLY with valid JSON.
|
| 28 |
+
|
| 29 |
+
If the image is missing or unclear, set "analysis" to "Image not provided or unclear" and give a general short treatment in "treatment".
|
| 30 |
+
"""
|
| 31 |
+
|
| 32 |
+
# --- Helpers ---
|
| 33 |
+
def safe_parse_json(model_text: str):
|
| 34 |
+
"""
|
| 35 |
+
Try to parse model_text as JSON. If it fails, do a best-effort extraction:
|
| 36 |
+
look for the first {...} block and parse that. If still fails, return
|
| 37 |
+
fallback values.
|
| 38 |
+
"""
|
| 39 |
+
# direct parse
|
| 40 |
+
try:
|
| 41 |
+
return json.loads(model_text)
|
| 42 |
+
except Exception:
|
| 43 |
+
pass
|
| 44 |
+
|
| 45 |
+
# try to find first JSON object in text
|
| 46 |
+
start = model_text.find("{")
|
| 47 |
+
end = model_text.rfind("}")
|
| 48 |
+
if start != -1 and end != -1 and end > start:
|
| 49 |
+
try:
|
| 50 |
+
candidate = model_text[start:end+1]
|
| 51 |
+
return json.loads(candidate)
|
| 52 |
+
except Exception:
|
| 53 |
+
pass
|
| 54 |
+
|
| 55 |
+
# fallback: return the whole text in treatment and a generic analysis
|
| 56 |
+
return {
|
| 57 |
+
"analysis": "Could not parse structured analysis from the model output.",
|
| 58 |
+
"treatment": model_text.strip()[:2000] # keep the raw text as treatment fallback
|
| 59 |
+
}
|
| 60 |
+
|
| 61 |
+
# --- Core processing function ---
|
| 62 |
+
def process_inputs(audio_filepath, image_filepath):
|
| 63 |
+
# 1) STT (optional)
|
| 64 |
+
stt_text = ""
|
| 65 |
+
try:
|
| 66 |
+
if audio_filepath:
|
| 67 |
+
stt_text = transcribe_with_groq(GROQ_API_KEY=GROQ_KEY, audio_filepath=audio_filepath, stt_model="whisper-large-v3") or ""
|
| 68 |
+
else:
|
| 69 |
+
stt_text = ""
|
| 70 |
+
except Exception as e:
|
| 71 |
+
stt_text = f"[STT error: {str(e)}]"
|
| 72 |
+
|
| 73 |
+
# 2) Build prompt for LLM
|
| 74 |
+
assembled_prompt = SYSTEM_PROMPT_TEMPLATE + "\n\n"
|
| 75 |
+
if stt_text:
|
| 76 |
+
assembled_prompt += "Patient speech (transcription): " + stt_text + "\n\n"
|
| 77 |
+
|
| 78 |
+
if image_filepath:
|
| 79 |
+
# encode image and pass it to your analyze function which should send image + prompt to the model
|
| 80 |
+
try:
|
| 81 |
+
encoded = encode_image(image_filepath)
|
| 82 |
+
model_raw_output = analyze_image_with_query(query=assembled_prompt, encoded_image=encoded, model=MODEL_NAME)
|
| 83 |
+
except Exception as e:
|
| 84 |
+
model_raw_output = json.dumps({
|
| 85 |
+
"analysis": "Image processing error",
|
| 86 |
+
"treatment": f"Failed to analyze image due to error: {str(e)}"
|
| 87 |
+
})
|
| 88 |
+
else:
|
| 89 |
+
# If no image, instruct the model accordingly
|
| 90 |
+
assembled_prompt += "No image provided."
|
| 91 |
+
try:
|
| 92 |
+
model_raw_output = analyze_image_with_query(query=assembled_prompt, encoded_image=None, model=MODEL_NAME)
|
| 93 |
+
except Exception as e:
|
| 94 |
+
model_raw_output = json.dumps({
|
| 95 |
+
"analysis": "Image not provided or unclear",
|
| 96 |
+
"treatment": f"No image was provided. If you can, please upload a clear photo. Error detail: {str(e)}"
|
| 97 |
+
})
|
| 98 |
+
|
| 99 |
+
# 3) Parse model output (expect JSON)
|
| 100 |
+
parsed = safe_parse_json(model_raw_output)
|
| 101 |
+
|
| 102 |
+
# ensure keys exist
|
| 103 |
+
analysis = parsed.get("analysis", "Analysis not available.")
|
| 104 |
+
treatment = parsed.get("treatment", "Treatment not available.")
|
| 105 |
+
|
| 106 |
+
# 4) Generate TTS audio for the doctor's combined response (you can choose what text to read out)
|
| 107 |
+
# we'll speak a short combined voice output: analysis + treatment summary
|
| 108 |
+
tts_text = f"{analysis} {treatment}"
|
| 109 |
+
tts_path = "final.mp3"
|
| 110 |
+
try:
|
| 111 |
+
# ensure previous file removed to avoid conflicts
|
| 112 |
+
if Path(tts_path).exists():
|
| 113 |
+
Path(tts_path).unlink()
|
| 114 |
+
text_to_speech_with_gtts(input_text=tts_text, output_filepath=tts_path)
|
| 115 |
+
except Exception as e:
|
| 116 |
+
# if TTS fails, keep audio empty and append error to treatment
|
| 117 |
+
tts_path = None
|
| 118 |
+
treatment = f"{treatment}\n\n[TTS generation failed: {str(e)}]"
|
| 119 |
+
|
| 120 |
+
# 5) Return values in the order: Speech-to-text, analysis, treatment, audio filepath (or None)
|
| 121 |
+
return stt_text, analysis, treatment, tts_path
|
| 122 |
+
|
| 123 |
+
# --- Build Enhanced UI with gradio Blocks ---
|
| 124 |
+
css = """
|
| 125 |
+
/* small medical-style theme */
|
| 126 |
+
body { font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue'; }
|
| 127 |
+
.gradio-container { --primary-hue: 207; } /* blue tone */
|
| 128 |
+
.header { text-align:center; margin-bottom: 12px; }
|
| 129 |
+
.app-card { background: #ffffff; border-radius: 12px; padding: 18px; box-shadow: 0 6px 18px rgba(15,23,42,0.06); }
|
| 130 |
+
.label-quiet { color: #6b7280; font-size: 13px; }
|
| 131 |
+
.big-title { font-size: 26px; font-weight:700; color:#0b3b66; }
|
| 132 |
+
.small-note { color:#475569; font-size:13px; }
|
| 133 |
+
"""
|
| 134 |
+
|
| 135 |
+
with gr.Blocks(css=css, title="AI response with Vision and Voice (Medical)") as demo:
|
| 136 |
+
with gr.Column(elem_id="top", scale=1):
|
| 137 |
+
gr.Markdown("<div class='header'><div class='big-title'>AI response with Vision and Voice</div>"
|
| 138 |
+
"<div class='small-note'>Record or upload voice, upload a medical image, then press Submit</div></div>")
|
| 139 |
+
|
| 140 |
+
with gr.Row():
|
| 141 |
+
# Left column: inputs
|
| 142 |
+
with gr.Column(scale=6):
|
| 143 |
+
with gr.Group(elem_id="left_group", visible=True):
|
| 144 |
+
gr.Markdown("#### Patient Input", elem_classes="label-quiet")
|
| 145 |
+
audio_in = gr.Audio(sources=["microphone"], type="filepath", label="Record Voice (click to start/stop)")
|
| 146 |
+
image_in = gr.Image(type="filepath", label="Upload Medical Image (optional)")
|
| 147 |
+
with gr.Row():
|
| 148 |
+
submit_btn = gr.Button("Submit", variant="primary")
|
| 149 |
+
clear_btn = gr.Button("Clear", variant="secondary")
|
| 150 |
+
|
| 151 |
+
# Right column: outputs
|
| 152 |
+
with gr.Column(scale=6):
|
| 153 |
+
with gr.Group(elem_id="right_card", visible=True):
|
| 154 |
+
gr.Markdown("#### Results", elem_classes="label-quiet")
|
| 155 |
+
stt_out = gr.Textbox(label="Speech to Text", interactive=False)
|
| 156 |
+
analysis_out = gr.Textbox(label="Medical Analysis (1-2 sentences)", interactive=False)
|
| 157 |
+
treatment_out = gr.Textbox(label="Treatment / Next Steps (3-4 sentences)", interactive=False)
|
| 158 |
+
audio_out = gr.Audio(label="response output(playable)", interactive=False)
|
| 159 |
+
|
| 160 |
+
# small note and flag
|
| 161 |
+
flag_btn = gr.Button("Flag", visible=True)
|
| 162 |
+
status = gr.Label(value="", visible=False)
|
| 163 |
+
|
| 164 |
+
# Action wiring
|
| 165 |
+
def on_submit(audio, image):
|
| 166 |
+
# UI feedback while processing
|
| 167 |
+
status_msg = "Processing... this may take a few seconds"
|
| 168 |
+
return gr.update(value=status_msg), *process_inputs(audio, image)
|
| 169 |
+
|
| 170 |
+
# When user clicks Submit -> call process_inputs and update outputs
|
| 171 |
+
submit_btn.click(fn=process_inputs, inputs=[audio_in, image_in], outputs=[stt_out, analysis_out, treatment_out, audio_out])
|
| 172 |
+
|
| 173 |
+
# Clear button resets inputs & outputs
|
| 174 |
+
def clear_all():
|
| 175 |
+
return None, None, None, None, None
|
| 176 |
+
clear_btn.click(lambda: (None, None, "", "", "", None), inputs=None, outputs=[audio_in, image_in, stt_out, analysis_out, treatment_out, audio_out])
|
| 177 |
+
|
| 178 |
+
# Optional: flag button to capture attention (no-op here, replace with logging)
|
| 179 |
+
def flag_action(analysis_text, treatment_text):
|
| 180 |
+
# you could log flagged cases to a database here
|
| 181 |
+
return gr.update(value="Flagged — thanks. We'll review this case."),
|
| 182 |
+
flag_btn.click(flag_action, inputs=[analysis_out, treatment_out], outputs=[status])
|
| 183 |
+
|
| 184 |
+
# Launch
|
| 185 |
+
demo.launch(debug=True, share=False)
|
gtts_testing.mp3
ADDED
|
Binary file (37.6 kB). View file
|
|
|
gtts_testing_autoplay.mp3
ADDED
|
Binary file (36.3 kB). View file
|
|
|
patient_voice_test_for_patient.mp3
ADDED
|
Binary file (42.7 kB). View file
|
|
|
presentation.pdf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f654a8e0d60799bc74e702264c3ea436e43f801124db0ab61d31926e2175bb12
|
| 3 |
+
size 284702
|
requirements.txt
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
-i https://pypi.org/simple
|
| 2 |
+
aiofiles==23.2.1; python_version >= '3.7'
|
| 3 |
+
annotated-types==0.7.0; python_version >= '3.8'
|
| 4 |
+
anyio==4.8.0; python_version >= '3.9'
|
| 5 |
+
certifi==2024.12.14; python_version >= '3.6'
|
| 6 |
+
charset-normalizer==3.4.1; python_version >= '3.7'
|
| 7 |
+
click==8.1.8; python_version >= '3.7'
|
| 8 |
+
distro==1.9.0; python_version >= '3.6'
|
| 9 |
+
elevenlabs==1.50.3; python_version >= '3.8' and python_version < '4.0'
|
| 10 |
+
fastapi==0.115.6; python_version >= '3.8'
|
| 11 |
+
ffmpy==0.5.0; python_version >= '3.8' and python_version < '4.0'
|
| 12 |
+
filelock==3.16.1; python_version >= '3.8'
|
| 13 |
+
fsspec==2024.12.0; python_version >= '3.8'
|
| 14 |
+
gradio==5.12.0; python_version >= '3.10'
|
| 15 |
+
gradio-client==1.5.4; python_version >= '3.10'
|
| 16 |
+
groq==0.15.0; python_version >= '3.8'
|
| 17 |
+
gtts==2.5.4; python_version >= '3.7'
|
| 18 |
+
h11==0.14.0; python_version >= '3.7'
|
| 19 |
+
httpcore==1.0.7; python_version >= '3.8'
|
| 20 |
+
httpx==0.28.1; python_version >= '3.8'
|
| 21 |
+
huggingface-hub==0.27.1; python_full_version >= '3.8.0'
|
| 22 |
+
idna==3.10; python_version >= '3.6'
|
| 23 |
+
jinja2==3.1.5; python_version >= '3.7'
|
| 24 |
+
markdown-it-py==3.0.0; python_version >= '3.8'
|
| 25 |
+
markupsafe==2.1.5; python_version >= '3.7'
|
| 26 |
+
mdurl==0.1.2; python_version >= '3.7'
|
| 27 |
+
numpy==2.2.1; python_version >= '3.10'
|
| 28 |
+
orjson==3.10.14; python_version >= '3.8'
|
| 29 |
+
packaging==24.2; python_version >= '3.8'
|
| 30 |
+
pandas==2.2.3; python_version >= '3.9'
|
| 31 |
+
pillow==11.1.0; python_version >= '3.9'
|
| 32 |
+
pyaudio==0.2.14
|
| 33 |
+
pydantic==2.10.5; python_version >= '3.8'
|
| 34 |
+
pydantic-core==2.27.2; python_version >= '3.8'
|
| 35 |
+
pydub==0.25.1
|
| 36 |
+
pygments==2.19.1; python_version >= '3.8'
|
| 37 |
+
python-dateutil==2.9.0.post0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
|
| 38 |
+
python-multipart==0.0.20; python_version >= '3.8'
|
| 39 |
+
pytz==2024.2
|
| 40 |
+
pyyaml==6.0.2; python_version >= '3.8'
|
| 41 |
+
requests==2.32.3; python_version >= '3.8'
|
| 42 |
+
rich==13.9.4; python_full_version >= '3.8.0'
|
| 43 |
+
ruff==0.9.1; sys_platform != 'emscripten'
|
| 44 |
+
safehttpx==0.1.6; python_version >= '3.10'
|
| 45 |
+
semantic-version==2.10.0; python_version >= '2.7'
|
| 46 |
+
shellingham==1.5.4; python_version >= '3.7'
|
| 47 |
+
six==1.17.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'
|
| 48 |
+
sniffio==1.3.1; python_version >= '3.7'
|
| 49 |
+
speechrecognition==3.13.0; python_version >= '3.9'
|
| 50 |
+
starlette==0.41.3; sys_platform != 'emscripten'
|
| 51 |
+
tomlkit==0.13.2; python_version >= '3.8'
|
| 52 |
+
tqdm==4.67.1; python_version >= '3.7'
|
| 53 |
+
typer==0.15.1; sys_platform != 'emscripten'
|
| 54 |
+
typing-extensions==4.12.2; python_version >= '3.8'
|
| 55 |
+
tzdata==2024.2; python_version >= '2'
|
| 56 |
+
urllib3==2.3.0; python_version >= '3.9'
|
| 57 |
+
uvicorn==0.34.0; sys_platform != 'emscripten'
|
| 58 |
+
websockets==14.1; python_version >= '3.9'
|
| 59 |
+
python-dotenv
|
tempCodeRunnerFile.py
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# if you dont use pipenv uncomment the following:
|
| 2 |
+
# from dotenv import load_dotenv
|
| 3 |
+
# load_dotenv()
|
| 4 |
+
|
| 5 |
+
#VoiceBot UI with Gradio
|
| 6 |
+
import os
|
| 7 |
+
import gradio as gr
|
| 8 |
+
|
| 9 |
+
from brain_of_the_doctor import encode_image, analyze_image_with_query
|
| 10 |
+
from voice_of_the_patient import record_audio, transcribe_with_groq
|
| 11 |
+
from voice_of_the_doctor import text_to_speech_with_gtts, text_to_speech_with_elevenlabs
|
| 12 |
+
|
| 13 |
+
#load_dotenv()
|
| 14 |
+
|
| 15 |
+
system_prompt="""You have to act as a professional doctor, i know you are not but this is for learning purpose.
|
| 16 |
+
What's in this image?. Do you find anything wrong with it medically?
|
| 17 |
+
If you make a differential, suggest some remedies for them. Donot add any numbers or special characters in
|
| 18 |
+
your response. Your response should be in one long paragraph. Also always answer as if you are answering to a real person.
|
| 19 |
+
Donot say 'In the image I see' but say 'With what I see, I think you have ....'
|
| 20 |
+
Dont respond as an AI model in markdown, your answer should mimic that of an actual doctor not an AI bot,
|
| 21 |
+
Keep your answer concise (max 2 sentences). No preamble, start your answer right away please"""
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
def process_inputs(audio_filepath, image_filepath):
|
| 25 |
+
speech_to_text_output = transcribe_with_groq(GROQ_API_KEY=os.environ.get("GROQ_API_KEY"),
|
| 26 |
+
audio_filepath=audio_filepath,
|
| 27 |
+
stt_model="whisper-large-v3")
|
| 28 |
+
|
| 29 |
+
# Handle the image input
|
| 30 |
+
if image_filepath:
|
| 31 |
+
doctor_response = analyze_image_with_query(query=system_prompt+speech_to_text_output, encoded_image=encode_image(image_filepath), model="meta-llama/llama-4-scout-17b-16e-instruct") #model="meta-llama/llama-4-maverick-17b-128e-instruct")
|
| 32 |
+
else:
|
| 33 |
+
doctor_response = "No image provided for me to analyze"
|
| 34 |
+
|
| 35 |
+
voice_of_doctor = text_to_speech_with_gtts(input_text=doctor_response, output_filepath="final.mp3")
|
| 36 |
+
|
| 37 |
+
return speech_to_text_output, doctor_response, voice_of_doctor
|
| 38 |
+
|
| 39 |
+
|
| 40 |
+
# Create the interface
|
| 41 |
+
iface = gr.Interface(
|
| 42 |
+
fn=process_inputs,
|
| 43 |
+
inputs=[
|
| 44 |
+
gr.Audio(sources=["microphone"], type="filepath"),
|
| 45 |
+
gr.Image(type="filepath")
|
| 46 |
+
],
|
| 47 |
+
outputs=[
|
| 48 |
+
gr.Textbox(label="Speech to Text"),
|
| 49 |
+
gr.Textbox(label="Doctor's Response"),
|
| 50 |
+
gr.Audio("Temp.mp3")
|
| 51 |
+
],
|
| 52 |
+
title="AI Doctor with Vision and Voice"
|
| 53 |
+
)
|
| 54 |
+
|
| 55 |
+
iface.launch(debug=True)
|
| 56 |
+
|
| 57 |
+
#http://127.0.0.1:7860
|
voice_of_the_doctor.py
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# if you dont use pipenv uncomment the following:
|
| 2 |
+
# from dotenv import load_dotenv
|
| 3 |
+
# load_dotenv()
|
| 4 |
+
|
| 5 |
+
#Step1a: Setup Text to Speech–TTS–model with gTTS
|
| 6 |
+
import os
|
| 7 |
+
from gtts import gTTS
|
| 8 |
+
|
| 9 |
+
def text_to_speech_with_gtts_old(input_text, output_filepath):
|
| 10 |
+
language="en"
|
| 11 |
+
|
| 12 |
+
audioobj= gTTS(
|
| 13 |
+
text=input_text,
|
| 14 |
+
lang=language,
|
| 15 |
+
slow=False
|
| 16 |
+
)
|
| 17 |
+
audioobj.save(output_filepath)
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
input_text="Hi this is Ai with nayan, im little bit worried!"
|
| 21 |
+
text_to_speech_with_gtts_old(input_text=input_text, output_filepath="gtts_testing.mp3")
|
| 22 |
+
|
| 23 |
+
#Step1b: Setup Text to Speech–TTS–model with ElevenLabs
|
| 24 |
+
import elevenlabs
|
| 25 |
+
from elevenlabs.client import ElevenLabs
|
| 26 |
+
|
| 27 |
+
ELEVENLABS_API_KEY=os.environ.get("ELEVEN_API_KEY")
|
| 28 |
+
|
| 29 |
+
def text_to_speech_with_elevenlabs_old(input_text, output_filepath):
|
| 30 |
+
client=ElevenLabs(api_key=ELEVENLABS_API_KEY)
|
| 31 |
+
audio=client.generate(
|
| 32 |
+
text= input_text,
|
| 33 |
+
voice= "Aria",
|
| 34 |
+
output_format= "mp3_22050_32",
|
| 35 |
+
model= "eleven_turbo_v2"
|
| 36 |
+
)
|
| 37 |
+
elevenlabs.save(audio, output_filepath)
|
| 38 |
+
|
| 39 |
+
#text_to_speech_with_elevenlabs_old(input_text, output_filepath="elevenlabs_testing.mp3")
|
| 40 |
+
|
| 41 |
+
#Step2: Use Model for Text output to Voice
|
| 42 |
+
|
| 43 |
+
import subprocess
|
| 44 |
+
import platform
|
| 45 |
+
|
| 46 |
+
def text_to_speech_with_gtts(input_text, output_filepath):
|
| 47 |
+
language="en"
|
| 48 |
+
|
| 49 |
+
audioobj= gTTS(
|
| 50 |
+
text=input_text,
|
| 51 |
+
lang=language,
|
| 52 |
+
slow=False
|
| 53 |
+
)
|
| 54 |
+
audioobj.save(output_filepath)
|
| 55 |
+
os_name = platform.system()
|
| 56 |
+
try:
|
| 57 |
+
if os_name == "Darwin": # macOS
|
| 58 |
+
subprocess.run(['afplay', output_filepath])
|
| 59 |
+
elif os_name == "Windows": # Windows
|
| 60 |
+
subprocess.run(['powershell', '-c', f'(New-Object Media.SoundPlayer "{output_filepath}").PlaySync();'])
|
| 61 |
+
elif os_name == "Linux": # Linux
|
| 62 |
+
subprocess.run(['aplay', output_filepath]) # Alternative: use 'mpg123' or 'ffplay'
|
| 63 |
+
else:
|
| 64 |
+
raise OSError("Unsupported operating system")
|
| 65 |
+
except Exception as e:
|
| 66 |
+
print(f"An error occurred while trying to play the audio: {e}")
|
| 67 |
+
|
| 68 |
+
|
| 69 |
+
input_text="Hi this is Ai with nayan ,im little bit worried"
|
| 70 |
+
text_to_speech_with_gtts(input_text=input_text, output_filepath="gtts_testing_autoplay.mp3")
|
| 71 |
+
|
| 72 |
+
|
| 73 |
+
def text_to_speech_with_elevenlabs(input_text, output_filepath):
|
| 74 |
+
client=ElevenLabs(api_key=ELEVENLABS_API_KEY)
|
| 75 |
+
audio=client.generate(
|
| 76 |
+
text= input_text,
|
| 77 |
+
voice= "Aria",
|
| 78 |
+
output_format= "mp3_22050_32",
|
| 79 |
+
model= "eleven_turbo_v2"
|
| 80 |
+
)
|
| 81 |
+
elevenlabs.save(audio, output_filepath)
|
| 82 |
+
os_name = platform.system()
|
| 83 |
+
try:
|
| 84 |
+
if os_name == "Darwin": # macOS
|
| 85 |
+
subprocess.run(['afplay', output_filepath])
|
| 86 |
+
elif os_name == "Windows": # Windows
|
| 87 |
+
subprocess.run(['powershell', '-c', f'(New-Object Media.SoundPlayer "{output_filepath}").PlaySync();'])
|
| 88 |
+
elif os_name == "Linux": # Linux
|
| 89 |
+
subprocess.run(['aplay', output_filepath]) # Alternative: use 'mpg123' or 'ffplay'
|
| 90 |
+
else:
|
| 91 |
+
raise OSError("Unsupported operating system")
|
| 92 |
+
except Exception as e:
|
| 93 |
+
print(f"An error occurred while trying to play the audio: {e}")
|
| 94 |
+
|
| 95 |
+
#text_to_speech_with_elevenlabs(input_text, output_filepath="elevenlabs_testing_autoplay.mp3")
|
voice_of_the_patient.py
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# if you dont use pipenv uncomment the following:
|
| 2 |
+
# from dotenv import load_dotenv
|
| 3 |
+
# load_dotenv()
|
| 4 |
+
|
| 5 |
+
#Step1: Setup Audio recorder (ffmpeg & portaudio)
|
| 6 |
+
# ffmpeg, portaudio, pyaudio
|
| 7 |
+
import logging
|
| 8 |
+
import speech_recognition as sr
|
| 9 |
+
from pydub import AudioSegment
|
| 10 |
+
from io import BytesIO
|
| 11 |
+
|
| 12 |
+
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
|
| 13 |
+
|
| 14 |
+
def record_audio(file_path, timeout=20, phrase_time_limit=None):
|
| 15 |
+
"""
|
| 16 |
+
Simplified function to record audio from the microphone and save it as an MP3 file.
|
| 17 |
+
|
| 18 |
+
Args:
|
| 19 |
+
file_path (str): Path to save the recorded audio file.
|
| 20 |
+
timeout (int): Maximum time to wait for a phrase to start (in seconds).
|
| 21 |
+
phrase_time_limit (int): Maximum time for the phrase to be recorded (in seconds).
|
| 22 |
+
"""
|
| 23 |
+
recognizer = sr.Recognizer()
|
| 24 |
+
|
| 25 |
+
try:
|
| 26 |
+
with sr.Microphone() as source:
|
| 27 |
+
logging.info("Adjusting for ambient noise...")
|
| 28 |
+
recognizer.adjust_for_ambient_noise(source, duration=1)
|
| 29 |
+
logging.info("Start speaking now...")
|
| 30 |
+
|
| 31 |
+
# Record the audio
|
| 32 |
+
audio_data = recognizer.listen(source, timeout=timeout, phrase_time_limit=phrase_time_limit)
|
| 33 |
+
logging.info("Recording complete.")
|
| 34 |
+
|
| 35 |
+
# Convert the recorded audio to an MP3 file
|
| 36 |
+
wav_data = audio_data.get_wav_data()
|
| 37 |
+
audio_segment = AudioSegment.from_wav(BytesIO(wav_data))
|
| 38 |
+
audio_segment.export(file_path, format="mp3", bitrate="128k")
|
| 39 |
+
|
| 40 |
+
logging.info(f"Audio saved to {file_path}")
|
| 41 |
+
|
| 42 |
+
except Exception as e:
|
| 43 |
+
logging.error(f"An error occurred: {e}")
|
| 44 |
+
|
| 45 |
+
audio_filepath = "patient_voice_test_for_patient.mp3"
|
| 46 |
+
record_audio(file_path=audio_filepath) # NOW ENABLED ✅
|
| 47 |
+
|
| 48 |
+
#Step2: Setup Speech to text – STT – model for transcription
|
| 49 |
+
import os
|
| 50 |
+
from groq import Groq
|
| 51 |
+
|
| 52 |
+
GROQ_API_KEY = os.environ.get("GROQ_API_KEY")
|
| 53 |
+
stt_model = "whisper-large-v3"
|
| 54 |
+
|
| 55 |
+
def transcribe_with_groq(stt_model, audio_filepath, GROQ_API_KEY):
|
| 56 |
+
client = Groq(api_key=GROQ_API_KEY)
|
| 57 |
+
|
| 58 |
+
audio_file = open(audio_filepath, "rb")
|
| 59 |
+
transcription = client.audio.transcriptions.create(
|
| 60 |
+
model=stt_model,
|
| 61 |
+
file=audio_file,
|
| 62 |
+
language="en"
|
| 63 |
+
)
|
| 64 |
+
return transcription.text
|
| 65 |
+
|
| 66 |
+
# Transcribe the recorded audio and print the text
|
| 67 |
+
transcribed_text = transcribe_with_groq(stt_model, audio_filepath, GROQ_API_KEY)
|
| 68 |
+
print("\n=== PATIENT SPEECH TO TEXT ===")
|
| 69 |
+
print(transcribed_text)
|