Skip to content

Commit 0f02920

Browse files
authored
Merge pull request #1294 from topcoder-platform/feat/ai-workflows
Feat/ai workflows
2 parents 44f5417 + 50b3167 commit 0f02920

File tree

130 files changed

+3116
-465
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+3116
-465
lines changed

.circleci/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,7 @@ workflows:
232232
- feat/system-admin
233233
- feat/v6
234234
- pm-2074_1
235+
- feat/ai-workflows
235236

236237
- deployQa:
237238
context: org-global

public/llm-icons/chatgpt-icon.svg

Lines changed: 1 addition & 0 deletions
Loading

public/llm-icons/deepseek-icon.svg

Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 66 additions & 0 deletions
Loading

public/llm-icons/qwen-icon.svg

Lines changed: 15 additions & 0 deletions
Loading

src/apps/platform/src/PlatformApp.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { FC } from 'react'
22
import { toast, ToastContainer } from 'react-toastify'
33

4-
import { useViewportUnitsFix } from '~/libs/shared'
4+
import { NotificationsContainer, useViewportUnitsFix } from '~/libs/shared'
55

66
import { AppFooter } from './components/app-footer'
77
import { AppHeader } from './components/app-header'
@@ -14,6 +14,7 @@ const PlatformApp: FC<{}> = () => {
1414
return (
1515
<Providers>
1616
<AppHeader />
17+
<NotificationsContainer />
1718
<div className='root-container'>
1819
<PlatformRouter />
1920
</div>

src/apps/platform/src/providers/Providers.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { FC, ReactNode } from 'react'
22

33
import { authUrlLogout, ProfileProvider } from '~/libs/core'
4-
import { ConfigContextProvider } from '~/libs/shared'
4+
import { ConfigContextProvider, NotificationProvider } from '~/libs/shared'
55

66
import { PlatformRouterProvider } from './platform-router.provider'
77

@@ -13,7 +13,9 @@ const Providers: FC<ProvidersProps> = props => (
1313
<ConfigContextProvider logoutUrl={authUrlLogout}>
1414
<ProfileProvider>
1515
<PlatformRouterProvider>
16-
{props.children}
16+
<NotificationProvider>
17+
{props.children}
18+
</NotificationProvider>
1719
</PlatformRouterProvider>
1820
</ProfileProvider>
1921
</ConfigContextProvider>

src/apps/review/src/config/routes.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ export const activeReviewAssignmentsRouteId = 'active-challenges'
1212
export const openOpportunitiesRouteId = 'open-opportunities'
1313
export const pastReviewAssignmentsRouteId = 'past-challenges'
1414
export const challengeDetailRouteId = ':challengeId'
15-
export const pastChallengeDetailContainerRouteId = 'past-challenge-details'
1615
export const scorecardRouteId = 'scorecard'
16+
export const aiScorecardRouteId = 'ai-scorecard'
1717
export const viewScorecardRouteId = ':scorecardId'

0 commit comments

Comments
 (0)