Skip to content

Commit 083b338

Browse files
authored
Update PhDLLM
1 parent 242f678 commit 083b338

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

PhDLLM

+15
Original file line numberDiff line numberDiff line change
@@ -182,4 +182,19 @@ def update_display(node_data, selected_domain, current_domain):
182182

183183
if __name__ == '__main__':
184184
app.run_server(debug=True, port=8051)
185+
dcc.Checklist(
186+
id='ethics-checklist',
187+
options=[
188+
{'label': 'Bias Audit Completed', 'value': 'bias'},
189+
{'label': 'Data Anonymized', 'value': 'anon'}
190+
],
191+
value=[]
192+
)
193+
# Add Gantt chart component
194+
dcc.Graph(figure=px.timeline(
195+
df, x_start="Start", x_end="End", y="Task",
196+
title="LLM-Accelerated Publication Timeline"
197+
))
198+
199+
185200

0 commit comments

Comments
 (0)