Open
Conversation
added 2 commits
January 19, 2026 18:11
Contributor
|
@Shreyas-Microsoft, don't open port 8080 externally. the processor pod shouldn't be access from outside of container app. use API lay to invoke it. |
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
This pull request introduces process cancellation support to the backend and frontend, enabling users to cancel running processes via the UI. It also updates infrastructure and configuration to support the processor control API, and makes several related improvements to model/version settings and environment variables.
Process cancellation and control API integration:
/process/cancel/{process_id}and/process/cancel/{process_id}/status) to allow users to request cancellation of running processes and check their cancellation status. These endpoints forward requests to the processor's control API, handle authentication, and return appropriate status and error messages. (src/backend-api/src/app/routers/router_process.py[1] [2]src/frontend/src/pages/processPage.tsx[1]src/frontend/src/services/ApiService.tsx[2]src/backend-api/src/app/libs/application/application_configuration.pysrc/backend-api/src/app/libs/application/application_configuration.pyR72-R79)Infrastructure and deployment updates:
CONTROL_API_ENABLED,CONTROL_API_PORT). (infra/main.bicep[1] [2]infra/main_custom.bicep[3] [4]infra/main.bicep[1]infra/main_custom.bicep[2]processorContainerAppNamefor consistency. (infra/main.bicep[1] [2]infra/main_custom.bicep[3] [4]Model and version configuration updates:
gpt-5.1and2025-11-13for improved compatibility and up-to-date deployments. (infra/main.bicepinfra/main.bicepL72-R76)2025-03-01-preview. (infra/main.bicepinfra/main.bicepL902-R902)infra/main.bicepinfra/main.bicepL35-R35)Other minor improvements:
src/backend-api/src/app/routers/router_process.py[1]src/processor/src/libs/agent_framework/agent_framework_helper.py[2] [3] [4] [5] [6]src/processor/src/libs/base/orchestrator_base.pysrc/processor/src/libs/base/orchestrator_base.pyL97)Does this introduce a breaking change?
Golden Path Validation
Deployment Validation
What to Check
Verify that the following are valid
Other Information