Skip to content

Commit 65910ec

Browse files
committed
Merge branch 'macae-rfp-agent-framework' into macae-rfp-af-101725
2 parents 4b7f680 + 2c06e48 commit 65910ec

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

infra/main.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1231,7 +1231,7 @@ module containerApp 'br/public:avm/res/app/container-app:0.18.1' = {
12311231
}
12321232
{
12331233
name: 'AZURE_OPENAI_DEPLOYMENT_NAME'
1234-
value: aiFoundryAiServicesModelDeployment.name
1234+
value: aiFoundryAiServices4_1ModelDeployment.name
12351235
}
12361236
{
12371237
name: 'AZURE_OPENAI_API_VERSION'

src/frontend/src/components/common/TeamSelector.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ const TeamSelector: React.FC<TeamSelectorProps> = ({
7070
const [uploadSuccessMessage, setUploadSuccessMessage] = useState<string | null>(null);
7171
// Helper function to check if a team is a default team
7272
const isDefaultTeam = (team: TeamConfig): boolean => {
73-
const defaultTeamIds = ['team-1', 'team-2', 'team-3'];
74-
const defaultTeamNames = ['Human Resources Team', 'Product Marketing Team', 'Retail Customer Success Team'];
73+
const defaultTeamIds = ['team-1', 'team-2', 'team-3','team-clm-1'];
74+
const defaultTeamNames = ['Human Resources Team', 'Product Marketing Team', 'Retail Customer Success Team','RFP Team'];
7575

7676
return defaultTeamIds.includes(team.team_id) ||
7777
defaultTeamNames.includes(team.name);

0 commit comments

Comments
 (0)