Solo dev widget - #302
Open
gpickett wants to merge 107 commits into
Open
Conversation
…access check in scripts
…olution-accelerator into byocc-infra-changes
…is taken bare inside infra folder
fix: updated to build and push image and use that instead of public image
fix: update gptRealtimeModelVersion and adjust network rules for waf deployment
…rs for new model versions and update local development document
fix: remove unused build scripts, src code and update development documentation
…nstructions and adjust section references
fix: Add Azure CLI login check and update guides and enhance Docker ignore rules
gpickett
requested review from
Avijit-Microsoft,
Prajwal-Microsoft,
Roopan-Microsoft,
Vinay-Microsoft,
malrose07 and
toherman-msft
as code owners
July 24, 2026 15:37
| return authBase ? `${authBase}/.auth/logout` : '/.auth/logout'; | ||
| } | ||
|
|
||
| function loginRedirectAlreadyAttempted(): boolean { |
| }; | ||
|
|
||
| async function fetchEasyAuthHeaders(): Promise<Record<string, string> | null> { | ||
| function loginRedirectAlreadyAttempted(): boolean { |
| if callable(close_fn): | ||
| close_result = close_fn() | ||
| if asyncio.iscoroutine(close_result): | ||
| await close_result |
| if callable(close_fn): | ||
| close_result = close_fn() | ||
| if asyncio.iscoroutine(close_result): | ||
| await close_result |
| if callable(close_fn): | ||
| close_result = close_fn() | ||
| if asyncio.iscoroutine(close_result): | ||
| await close_result |
| if callable(close_fn): | ||
| close_result = close_fn() | ||
| if asyncio.iscoroutine(close_result): | ||
| await close_result |
Comment on lines
+7
to
+14
| from azure.ai.projects.models import ( | ||
| AISearchIndexResource, | ||
| AzureAISearchTool, | ||
| AzureAISearchToolResource, | ||
| ConnectionType, | ||
| FunctionTool, | ||
| PromptAgentDefinition, | ||
| ) |
Comment on lines
+6
to
+17
| from .models import ( | ||
| Cart, | ||
| Customer, | ||
| CustomerCreate, | ||
| CustomerUpdate, | ||
| Order, | ||
| OrderCreate, | ||
| OrderStatus, | ||
| Product, | ||
| ProductCreate, | ||
| ProductUpdate, | ||
| ) |
|
|
||
| from ..auth import get_current_user | ||
| from ..cosmos_service import get_cosmos_service | ||
| from ..models import Product |
|
|
||
| # Handle both local debugging and Docker deployment | ||
| try: | ||
| from .auth import get_current_user |
| from .scenario_config import current_scenario | ||
| except ImportError: | ||
| sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) | ||
| from app.auth import get_current_user |
Comment on lines
+6
to
+21
| from .models import ( | ||
| Cart, | ||
| CartItem, | ||
| Customer, | ||
| CustomerCreate, | ||
| CustomerUpdate, | ||
| Order, | ||
| OrderItem, | ||
| OrderStatus, | ||
| PaymentMethod, | ||
| Product, | ||
| ProductCreate, | ||
| ProductUpdate, | ||
| ShippingAddress, | ||
| UserRole, | ||
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose
Does this introduce a breaking change?
How to Test
What to Check
Verify that the following are valid
Other Information