diff --git a/api/src/Controllers/LlmController.cs b/api/src/Controllers/LlmController.cs index 566e023..36e15ca 100644 --- a/api/src/Controllers/LlmController.cs +++ b/api/src/Controllers/LlmController.cs @@ -17,7 +17,7 @@ public class LlmController : ControllerBase { // might create src/Services/Llm/... to better organize // private readonly LlmService llmService_; private readonly IHttpClientFactory httpClientFactory_; - private readonly string LLAMA_URL = "http://localhost:8010/completion"; // TODO: can just put this in appsettings + private readonly string LLAMA_URL = "http://host.docker.internal:8010/completion"; // TODO: can just put this in appsettings public LlmController(/* LlmService llmService, */ IHttpClientFactory httpClientFactory) { // llmService_ = llmService;