Rthur2003 commited on
Commit
98d16d1
·
1 Parent(s): c3a06a0

fix: remove base_url from service_status response for cleaner output

Browse files
Files changed (1) hide show
  1. app/services/external_clients.py +0 -2
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