Refactor Benchmarking Workflow and Introduce New Data Models (#5264)

* New benchmark data models

* Update _benchmarkBaseUrl

* Remove ReportRequestBody

* Update benchmark service methods for proxy approach

* Add eval id to SkillNodeData

* Refactor runBenchmark Method for proxy approach
This commit is contained in:
hunteraraujo
2023-09-19 17:01:15 -07:00
committed by GitHub
parent 2098e192da
commit 5afab461ee
8 changed files with 113 additions and 70 deletions

View File

@@ -5,7 +5,7 @@ import 'package:http/http.dart' as http;
class RestApiUtility {
String _agentBaseUrl;
final String _benchmarkBaseUrl = "http://127.0.0.1:8080";
final String _benchmarkBaseUrl = "http://127.0.0.1:8080/ap/v1";
RestApiUtility(this._agentBaseUrl);