MCPcopy Create free account
hub / github.com/AI45Lab/Code / build_test_session

Function build_test_session

sdk/python/src/lib.rs:6961–6969  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

6959 }
6960
6961 fn build_test_session() -> PySession {
6962 let agent = get_runtime()
6963 .block_on(RustAgent::from_config(sdk_test_config()))
6964 .unwrap();
6965 let session = agent.session("/tmp/a3s-code-python-sdk-api", None).unwrap();
6966 PySession {
6967 inner: Arc::new(session),
6968 }
6969 }
6970
6971 fn verification_report_json() -> serde_json::Value {
6972 serde_json::json!({

Calls 4

block_onMethod · 0.80
get_runtimeFunction · 0.70
sdk_test_configFunction · 0.70
sessionMethod · 0.45