MCPcopy Create free account
hub / github.com/KCORES/vector-db-bench / tempdir

Function tempdir

agent/src/bench_tools.rs:1552–1559  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1550 // ─── helper ──────────────────────────────────────────────────────────────
1551
1552 fn tempdir() -> std::path::PathBuf {
1553 let dir = std::env::temp_dir().join(format!(
1554 "bench_tools_test_{}",
1555 uuid::Uuid::new_v4()
1556 ));
1557 std::fs::create_dir_all(&dir).unwrap();
1558 dir
1559 }
1560}

Calls 1

temp_dirFunction · 0.85