feat: add examples for async API parameter optimization and ML hyperparameter tuning

This commit is contained in:
Manuel Raimann
2026-01-31 11:56:50 +01:00
parent b9a90ebec3
commit af8a9f7638
4 changed files with 612 additions and 1 deletions
+10 -1
View File
@@ -23,4 +23,13 @@ default = []
async = ["dep:tokio"]
[dev-dependencies]
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time"] }
[[example]]
name = "async_api_optimization"
path = "examples/async_api_optimization.rs"
required-features = ["async"]
[[example]]
name = "ml_hyperparameter_tuning"
path = "examples/ml_hyperparameter_tuning.rs"