- Added tracing, tracing-subscriber, reqwest, uuid to [dev-dependencies] (test files referenced these crates but they weren't available) - Fixed test assertion: WikiLinkFallbackExtractor extracts [[Concurrency]] not 'Go' from text 'Go [[Concurrency]] is powerful'
This commit is contained in:
Generated
+4
@@ -2599,11 +2599,15 @@ dependencies = [
|
|||||||
"mem-llm",
|
"mem-llm",
|
||||||
"mem-store",
|
"mem-store",
|
||||||
"regex",
|
"regex",
|
||||||
|
"reqwest",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"sqlx",
|
"sqlx",
|
||||||
"time",
|
"time",
|
||||||
"tokio",
|
"tokio",
|
||||||
"toml",
|
"toml",
|
||||||
|
"tracing",
|
||||||
|
"tracing-subscriber",
|
||||||
|
"uuid",
|
||||||
"wiremock",
|
"wiremock",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
@@ -66,6 +66,10 @@ chrono = { version = "0.4", features = ["serde"] }
|
|||||||
regex = { workspace = true }
|
regex = { workspace = true }
|
||||||
sqlx = { workspace = true }
|
sqlx = { workspace = true }
|
||||||
base64 = { workspace = true }
|
base64 = { workspace = true }
|
||||||
|
tracing = { workspace = true }
|
||||||
|
tracing-subscriber = { workspace = true }
|
||||||
|
reqwest = { workspace = true }
|
||||||
|
uuid = { workspace = true }
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
opt-level = 3
|
opt-level = 3
|
||||||
|
|||||||
@@ -274,8 +274,8 @@ mod tests {
|
|||||||
"Linux entity should be extracted from at least one record"
|
"Linux entity should be extracted from at least one record"
|
||||||
);
|
);
|
||||||
assert!(
|
assert!(
|
||||||
all_extracted_entities.iter().any(|name| name.contains("Go") || name.contains("go")),
|
all_extracted_entities.iter().any(|name| name.contains("Concurrency") || name.contains("concurrency")),
|
||||||
"Go entity should be extracted from at least one record"
|
"Concurrency entity should be extracted from at least one record (via [[Concurrency]] wiki link)"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user