Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
1b4943d
Initial changes for a dev command
trangevi Mar 5, 2026
81c7154
Remove src flag
trangevi Mar 5, 2026
a962da1
Some fixes
trangevi Mar 6, 2026
d829abe
Add invoke command
trangevi Mar 6, 2026
661ad27
Rename dev to run
trangevi Mar 6, 2026
7a9e241
Add timeout to invoke. Add back the ability to provide a single posit…
trangevi Mar 6, 2026
cf04eb0
Tests
trangevi Mar 6, 2026
7eb32ec
Apply suggestions from code review
trangevi Mar 6, 2026
304b4f3
Update how we get the invoke config
trangevi Mar 6, 2026
ed8a069
Remove unused code
trangevi Mar 6, 2026
39f8617
Make context parameters more consistent. Handle errors from saving se…
trangevi Mar 6, 2026
eec31eb
Handle noprompt for startup command in init
trangevi Mar 6, 2026
7584cd8
Update log output
trangevi Mar 6, 2026
6686695
Merge branch 'trangevi/dev-command' of https://github.com/Azure/azure…
trangevi Mar 6, 2026
135e336
refactor resolveStartupCommandForInit into helpers to address redundancy
trangevi Mar 6, 2026
dd88681
Propperly pass context
trangevi Mar 6, 2026
bf40f5c
Refactor to only create a single azd client
trangevi Mar 6, 2026
db15076
lint formatting
trangevi Mar 6, 2026
1e1d3c8
CI fixes
trangevi Mar 7, 2026
e1bf3f2
More CI fixes
trangevi Mar 7, 2026
bb5da8b
Signal handling resource leak fix
trangevi Mar 9, 2026
06f2742
add positional name argument
trangevi Mar 9, 2026
a43cf67
update positional args for invoke
trangevi Mar 9, 2026
2f68ac5
Prompt when multiple agents and none provided
trangevi Mar 9, 2026
f92eda7
Make remote the default
trangevi Mar 9, 2026
5941c2c
Move where startupCommand is stored. Move where we store the conversa…
trangevi Mar 9, 2026
a4b2635
remove duplicate token handling
trangevi Mar 9, 2026
a22b99a
Apply suggestion from @wbreza
trangevi Mar 9, 2026
ba3a9ca
Fix formatting from autosuggestion
trangevi Mar 9, 2026
100f92b
add parameters for conversation
trangevi Mar 10, 2026
92aee3c
Print session and conversation ids. Update session id to be a guid. U…
trangevi Mar 10, 2026
1742db7
Linter
trangevi Mar 10, 2026
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
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func buildAgentEndpoint(accountName, projectName string) string {
// resolveAgentEndpoint resolves the agent API endpoint from explicit flags or the azd environment.
// If accountName and projectName are provided, those are used to construct the endpoint.
// Otherwise, it falls back to the AZURE_AI_PROJECT_ENDPOINT environment variable from the current azd environment.
func resolveAgentEndpoint(ctx context.Context, accountName, projectName string) (string, error) {
func resolveAgentEndpoint(ctx context.Context, accountName string, projectName string) (string, error) {
if accountName != "" && projectName != "" {
return buildAgentEndpoint(accountName, projectName), nil
}
Expand Down
Loading
Loading