You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: trusted-ai/runtime-evaluations/real-time-guardrails/README.md
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -123,13 +123,17 @@ real-time-guardrails/
123
123
├── app.py # Main Dash application
124
124
├── app-config.properties # UI configuration
125
125
├── requirements.txt # Python dependencies
126
-
├── .env # Environment variables (credentials)
126
+
├── .env # Environment variables (NOT committed to GitHub)
127
+
├── .gitignore # Git ignore rules
127
128
├── README.md # This file
128
-
└── assets/
129
-
├── customStyles.css # Custom styling
130
-
└── logo.png # Logo image
129
+
├── assets/
130
+
│ └── customStyles.css # Custom CSS styling
131
+
└── images/
132
+
└── Guardrails vs monitoring.png # Documentation image
131
133
```
132
134
135
+
**Note**: The `.env` file contains sensitive credentials and is excluded from version control via `.gitignore`. You must create your own `.env` file locally following the setup instructions.
0 commit comments