Jonathan Hecl

Results 9 comments of Jonathan Hecl

ACTUALIZO: Lo pude instalar ;) no se si es la forma mas eficiente, pero funciona ahora. ``` ARG php_version FROM php:${php_version} RUN apt-get update --fix-missing RUN apt-get install -y build-essential...

Idem, I can't login (manual) with Gui, and the Auto login don't works. I have Windows 11, Chrome, Opera and Edge logged on Udemy. ![image](https://user-images.githubusercontent.com/1691623/153069697-61304b88-60ac-4331-94ac-59ca8732ca13.png) ![image](https://user-images.githubusercontent.com/1691623/153069735-22ff5589-649f-48a2-ac60-4388fbae65e9.png)

I repeat, the auto login don't work. ![image](https://user-images.githubusercontent.com/1691623/153213056-ec45a095-000d-4a9c-a26a-434bd4725502.png)

I believe the autologin plugin don't support Windows 11.

I use Windows 11, OperaGX, Edge & Chrome, I logged in everything browsers, and it didn't works.

This isn't working :( I'm testing with... ``` r, err := llms.GenerateFromSinglePrompt(ctx, model, prompt, llms.WithTools([]llms.Tool{tool_weather})) var tool_weather = llms.Tool{ Type: "function", Function: &llms.FunctionDefinition{ Name: "get_current_weather", Description: "Get the current weather...

I'm using Ollama (0.3.0)! but the tools are not working ``` model, err := ollama.New([]ollama.Option{ollama.WithModel("llama3.1")}) if err != nil { log.Fatal(err) } prompt:= "what is the weather in london?" var...

I'm traying too, using GenerateContent, like this: ``` model, err := ollama.New([]ollama.Option{ollama.WithModel("llama3.1")}) if err != nil { log.Fatal(err) } prompt:= "what is the weather in london?" var tool_weather = llms.Tool{...