Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support modeling existing aiProject in composition #4876

Closed
Closed
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
0fd16a1
chkpoint01
vhvb1989 Feb 22, 2025
4ee863e
ckp02
vhvb1989 Feb 22, 2025
8c4a041
Merge branch 'main' of github.com:Azure/azure-dev into azd-add-ai-model
vhvb1989 Feb 22, 2025
16673a0
ready for review
vhvb1989 Feb 24, 2025
05db934
lint
vhvb1989 Feb 24, 2025
32f6711
renaming menu
vhvb1989 Feb 25, 2025
678c30f
use current bicep version to lint
vhvb1989 Feb 25, 2025
8ac7d96
fix prompt regression
vhvb1989 Feb 25, 2025
a12789e
fix init mistake
vhvb1989 Feb 25, 2025
3b261fa
Merge branch 'main' of github.com:Azure/azure-dev into azd-add-ai-model
vhvb1989 Feb 26, 2025
befe0bb
Merge branch 'main' of github.com:Azure/azure-dev into azd-add-ai-model
vhvb1989 Feb 27, 2025
cae47f1
Use SDK
vhvb1989 Feb 27, 2025
6ddd1dd
updating names to aiproject
vhvb1989 Mar 1, 2025
aea3a0e
move conn string inside module
vhvb1989 Mar 1, 2025
7a2a695
Merge branch 'main' of github.com:Azure/azure-dev into azd-add-ai-model
vhvb1989 Mar 1, 2025
bd35a41
fix output
vhvb1989 Mar 1, 2025
fe5929e
update gen
vhvb1989 Mar 1, 2025
11a0e87
Merge branch 'main' of github.com:Azure/azure-dev into azd-add-ai-model
vhvb1989 Mar 3, 2025
2d4eec2
support modeling an existing ai project in composition
vhvb1989 Mar 4, 2025
423b45a
Merge branch 'main' of github.com:Azure/azure-dev into ai-model-exist…
vhvb1989 Mar 4, 2025
e4d4332
fix missing
vhvb1989 Mar 4, 2025
f7c8b12
Merge branch 'main' of github.com:Azure/azure-dev into ai-model-exist…
vhvb1989 Mar 4, 2025
dbf0ad9
handle names with dash
vhvb1989 Mar 4, 2025
382efbc
lint
vhvb1989 Mar 4, 2025
ee2d6e6
missing renames
vhvb1989 Mar 4, 2025
7a5f2b0
fix merge missmatches
vhvb1989 Mar 4, 2025
c178722
Merge branch 'main' of github.com:Azure/azure-dev into ai-model-exist…
vhvb1989 Mar 4, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix init mistake
vhvb1989 committed Feb 25, 2025
commit a12789e942dd389d2f1697cd9685e0469099d55d
2 changes: 1 addition & 1 deletion cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go
Original file line number Diff line number Diff line change
@@ -142,7 +142,7 @@ func (p *BicepProvider) EnsureEnv(ctx context.Context) error {
if locationParam.AllowedValues == nil {
return true
}
allowedLocations := make([]string, 0, len(*locationParam.AllowedValues))
allowedLocations := make([]string, len(*locationParam.AllowedValues))
for i, allowedLocation := range *locationParam.AllowedValues {
allowedLocations[i] = allowedLocation.(string)
}