diff options
| author | YJG <[email protected]> | 2025-04-28 10:42:57 -0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-04-28 15:42:57 +0200 |
| commit | 805aeff83cad4c17e25acdd671d2731be104b3e0 (patch) | |
| tree | e2bdcbda42858a9b159301d3253929b37ed39f84 /go.mod | |
| parent | bce2ec5c10c1895a80fae48d315b132341b7dc96 (diff) | |
| download | opencode-805aeff83cad4c17e25acdd671d2731be104b3e0.tar.gz opencode-805aeff83cad4c17e25acdd671d2731be104b3e0.zip | |
feat: add azure openai models (#74)
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -5,6 +5,7 @@ go 1.24.0 toolchain go1.24.2 require ( + github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.7.0 github.com/JohannesKaufmann/html-to-markdown v1.6.0 github.com/PuerkitoBio/goquery v1.9.2 github.com/alecthomas/chroma/v2 v2.15.0 @@ -44,6 +45,9 @@ require ( cloud.google.com/go/auth/oauth2adapt v0.2.6 // indirect cloud.google.com/go/compute/metadata v0.6.0 // indirect cloud.google.com/go/longrunning v0.5.7 // indirect + github.com/Azure/azure-sdk-for-go/sdk/azcore v1.17.0 // indirect + github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0 // indirect + github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect github.com/andybalholm/cascadia v1.3.2 // indirect github.com/atotto/clipboard v0.1.4 // indirect github.com/aws/aws-sdk-go-v2 v1.30.3 // indirect @@ -74,11 +78,13 @@ require ( github.com/go-logr/logr v1.4.2 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/go-viper/mapstructure/v2 v2.2.1 // indirect + github.com/golang-jwt/jwt/v5 v5.2.2 // indirect github.com/google/s2a-go v0.1.8 // indirect github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect github.com/googleapis/gax-go/v2 v2.14.1 // indirect github.com/gorilla/css v1.0.1 // indirect github.com/inconshreveable/mousetrap v1.1.0 // indirect + github.com/kylelemons/godebug v1.1.0 // indirect github.com/lucasb-eyer/go-colorful v1.2.0 // indirect github.com/mattn/go-isatty v0.0.20 // indirect github.com/mattn/go-localereader v0.0.1 // indirect @@ -89,6 +95,7 @@ require ( github.com/muesli/cancelreader v0.2.2 // indirect github.com/ncruces/julianday v1.0.0 // indirect github.com/pelletier/go-toml/v2 v2.2.3 // indirect + github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/rivo/uniseg v0.4.7 // indirect github.com/rogpeppe/go-internal v1.14.1 // indirect |
