()
| 493 | |
| 494 | #[test] |
| 495 | fn test_parse_vector_search() { |
| 496 | let json = r#"{ |
| 497 | "steps": [ |
| 498 | {"type": "vector_search", "query": "caching performance", "top_k": 3} |
| 499 | ] |
| 500 | }"#; |
| 501 | let plan = parse_plan(json).unwrap(); |
| 502 | assert_eq!(plan.steps.len(), 1); |
| 503 | } |
| 504 | |
| 505 | #[test] |
| 506 | fn test_parse_defaults() { |
nothing calls this directly
no test coverage detected