Spaces:
Sleeping
Sleeping
fix: remove base_url from service_status response for cleaner output
Browse files
app/services/external_clients.py
CHANGED
|
@@ -103,11 +103,9 @@ def service_status() -> dict:
|
|
| 103 |
return {
|
| 104 |
"music_ai": {
|
| 105 |
"configured": bool(os.getenv("MUSIC_AI_API_URL")),
|
| 106 |
-
"base_url": os.getenv("MUSIC_AI_API_URL"),
|
| 107 |
},
|
| 108 |
"ses_analizi": {
|
| 109 |
"configured": bool(os.getenv("SES_ANALIZI_API_URL")),
|
| 110 |
-
"base_url": os.getenv("SES_ANALIZI_API_URL"),
|
| 111 |
},
|
| 112 |
}
|
| 113 |
|
|
|
|
| 103 |
return {
|
| 104 |
"music_ai": {
|
| 105 |
"configured": bool(os.getenv("MUSIC_AI_API_URL")),
|
|
|
|
| 106 |
},
|
| 107 |
"ses_analizi": {
|
| 108 |
"configured": bool(os.getenv("SES_ANALIZI_API_URL")),
|
|
|
|
| 109 |
},
|
| 110 |
}
|
| 111 |
|