Skip to content

Commit 8c63255

Browse files
committed
update json property name from snake_case to camelCase
1 parent 1833518 commit 8c63255

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/guidellm/utils/generate_ui_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def generate_benchmarks_json(benchmarks: List[TextGenerationBenchmark]):
216216
raw_benchmark_json.append(benchmarks_report)
217217
interpolated_benchmark_json = generate_interpolated_benchmarks(benchmarks)
218218

219-
return { "raw": raw_benchmark_json, "interpolated_by_rps": interpolated_benchmark_json }
219+
return { "raw": raw_benchmark_json, "interpolatedByRps": interpolated_benchmark_json }
220220

221221
def generate_js_variable(variable_name: str, data: dict) -> str:
222222
json_data = json.dumps(data, indent=2)

0 commit comments

Comments
 (0)