Skip to content

Commit 089949a

Browse files
authored
Merge pull request #209 from rootcodelabs/470/single_test_llm_UI
et update from 470/single test llm UI
2 parents 17c0269 + 4aac29f commit 089949a

7 files changed

Lines changed: 80 additions & 456 deletions

File tree

DSL/Resql/rag-search/POST/get-llm-connections-paginated.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ SELECT
2424
END AS budget_status
2525
FROM rag_search.llm_connections
2626
WHERE connection_status <> 'deleted'
27-
AND environment = 'testing'
27+
-- AND environment = 'testing'
2828
AND (:llm_platform IS NULL OR :llm_platform = '' OR llm_platform = :llm_platform)
2929
AND (:llm_model IS NULL OR :llm_model = '' OR llm_model = :llm_model)
3030
AND (:environment IS NULL OR :environment = '' OR environment = :environment)

GUI/src/App.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,7 @@ const App: FC = () => {
6464
<Route path="/create-llm-connection" element={<CreateLLMConnection />} />
6565
<Route path="/view-llm-connection" element={<ViewLLMConnection />} />
6666
<Route path="/prompt-configurations" element={<PromptConfigurations />} />
67-
<Route path="/test-llm" element={<TestLLM />} />
68-
<Route path="/test-production-llm" element={<TestProductionLLM />} />
67+
<Route path="/test-llm" element={<TestProductionLLM />} />
6968

7069

7170
</Route>

GUI/src/components/MainNavigation/index.tsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,6 @@ const MainNavigation: FC = () => {
4444
label: t('menu.testLLM'),
4545
path: '/test-llm',
4646
icon: <MdSearch />
47-
},
48-
{
49-
id: 'testProductionLLM',
50-
label: t('menu.testProductionLLM'),
51-
path: '/test-production-llm',
52-
icon: <MdSearch />
5347
}
5448
];
5549

GUI/src/pages/TestModel/TestLLM.scss

Lines changed: 0 additions & 217 deletions
This file was deleted.

0 commit comments

Comments
 (0)