Peter Olds
Peter Olds
I suppose using stringData would work but it would require some pre-deploy step to pull out the token from some place. It would also prevent the ability to use Kustomize...
Potentially a couple of things going on here. First `fmt.Println()` writes to Stdout which Apex can't do. You need to write to Stderr (`fmt.Fprintf(os.Stderr, "message")`). Second your first `err` isn't...
@xoraes The type is just a standard `json.RawMessage` for an API Gateway handler. Check out this functional example. It expects a json input of: `{"username": "me"}` ``` package main import...
For full swagger and SDK support API Gateway does require this. But more often than not you can get away with not defining templates. That said, there is a proposal...
Can you share the Dockerfile you used to build this? The backend dockerfile no longer builds for me.
I was hoping to avoid touching the passed in `Env` where sometimes we're passing around concrete types and not just a `map[string]any`, but that would work.
Any progress in this area? I've run into this now where golangci-lint running a compiled .so cannot apply a fix, but crafting a custom main.go using `singlechecker.Main()` can run with...
Fixing the formatting from @JOechoech 's comment, here's the correct spacing: `autogpt/commands/google_search.py`: ``` """Google search command for Autogpt.""" import json from typing import List, Union from duckduckgo_search import ddg from...
I've hit this on my ARM64 Mac. Both latest (0.2.513) and 0.2.501 are exhibiting this for me, but in my case I never get past the `Processing path:` step. ```...
I figured out how to do this, if anyone has any other ideas please let know: ```golang package main import ( "fmt" "os" "os/exec" "strings" "time" "github.com/charmbracelet/bubbles/viewport" tea "github.com/charmbracelet/bubbletea" )...