Add vertex AI configuration fields to sensitiveFields in openai.js - Included 'vertexai_project_id', 'vertexai_region', and 'vertexai_service_account_json' to the sensitiveFields array for enhanced configuration management.

df36b60e9b03cca8dd36714683eb8ed62d754ff2

InterestingDarkness <computeridiot999@gmail.com>

1 files changed, +3 -0Ignore whitespace
public/scripts/openai.js+3 -0
@@ -235,6 +235,9 @@ const sensitiveFields = [
235 'custom_include_body',235 'custom_include_body',
236 'custom_exclude_body',236 'custom_exclude_body',
237 'custom_include_headers',237 'custom_include_headers',
238 'vertexai_project_id',
239 'vertexai_region',
240 'vertexai_service_account_json',
238];241];
239242
240/**243/**