Set the IP Address required to connect to an API server.
set_ip_addr.Rd
set_ip_addr
sets the IP Address related to the API server.
Examples
wflow <- ai_workflow() |> set_connector("ollama") |>
set_ip_addr(ip_addr="127.0.0.1")
#> → Default IP address has been set to 127.0.0.1.
#> → Default port has been set to 11434.
#> → IP address has been changed to 127.0.0.1.
wflow <- ai_workflow() |> set_connector("ollama") |>
set_ip_addr(ip_addr="192.168.1.56")
#> → Default IP address has been set to 127.0.0.1.
#> → Default port has been set to 11434.
#> → IP address has been changed to 192.168.1.56.