Remove Dutch spell-check: not consistent or accurate

This commit is contained in:
Gabriel Tofvesson 2023-03-18 00:44:06 +01:00
parent d5a3bc2520
commit 5393ecbff5
No known key found for this signature in database
GPG Key ID: 6F1345DF28EDA13E

View File

@ -80,23 +80,6 @@ mod tests {
assert!(edit.is_ok(), "Could not get edit: {}", edit.unwrap_err());
assert!(edit.as_ref().unwrap().choices.len() == 1, "No edit found");
assert!(edit.unwrap().choices[0].text.replace("\n", "").eq("What a wonderful day!"));
// Autocorrect Dutch spelling errors using an English instructino prompt?
let edit = ctx.create_edit(
crate::edits::EditRequestBuilder::default()
.model("text-davinci-edit-001")
.instruction("Correct all spelling mistakes")
.input("Ik hou van jouw moederr")
.build()
.unwrap()
).await;
assert!(edit.is_ok(), "Could not get edit: {}", edit.unwrap_err());
assert!(edit.as_ref().unwrap().choices.len() == 1, "No edit found");
// This one might be pushing my luck a bit, but it seems to work
//assert!(edit.unwrap().choices[0].text.replace("\n", "").eq("Ik hou van jouw moeder"));
}
#[tokio::test]