This function standardise inconsistent address formats to a standard format.
Usage
emend_clean_address(address_vector, chat = get_default_chat())
Examples
# \donttest{
# Convert a vector of inconsistent formatted address to a standard format
options(ellmer_timeout_s = 3600)
x <- c("154 university avenue, acton act 2601",
"76/2 Cape Street, Dickson ACT 2602",
"Shop 4/96 Bunda St, Canberra ACT 2601",
"11 E Row, Canberra ACT 2601",
"173/46 Macquarie St, Barton ACT 2600",
"Unit 189/260 City walk, Canberra ACT 2601",
"the kebab place",
"i don't know the address")
chat <- ellmer::chat_ollama(model = "llama3.1:8b", seed = 0, echo = "none")
emend_clean_address(x, chat = chat)
#> [1] "154 University Ave, Acton ACT 2601"
#> [2] "76/2 Cape St, Dickson ACT 2602"
#> [3] "Shop 4/96 Bunda St, Canberra ACT 2601"
#> [4] "11 E Row, Canberra ACT 2601"
#> [5] "173/46 Macquarie St, Barton ACT 2600"
#> [6] "189/260 City Walk, Canberra ACT 2601"
#> [7] "INVALID ADDRESS"
#> [8] "INVALID ADDRESS"
# }