Skip to content
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
f53aa35
Consolidate Test LLM screens into a single screen with LLM connection…
ruwinirathnamalala Jun 15, 2026
9d954c4
fixed vault configuration issue
nuwangeek Jun 16, 2026
9d45282
address Vault via unique rag-vault alias to avoid cross -stack DNS co…
nuwangeek Jun 17, 2026
73ba247
Merge branch 'wip' of https://github.com/rootcodelabs/LLM-Module into…
ruwinirathnamalala Jun 17, 2026
e78f632
Removed testmodel index and css
ruwinirathnamalala Jun 17, 2026
4aac29f
Merge pull request #206 from rootcodelabs/wip
nuwangeek Jun 17, 2026
f5205f1
Merge pull request #207 from rootcodelabs/wip
nuwangeek Jun 17, 2026
17c0269
Merge pull request #208 from rootcodelabs/llm-469
nuwangeek Jun 17, 2026
089949a
Merge pull request #209 from rootcodelabs/470/single_test_llm_UI
nuwangeek Jun 17, 2026
cebcabe
fixed vector indexer statistics analysis issue
nuwangeek Jun 17, 2026
6ec4f20
Merge branch 'llm-469' of https://github.com/rootcodelabs/RAG-Module …
nuwangeek Jun 17, 2026
2109193
Merge pull request #210 from rootcodelabs/llm-469
nuwangeek Jun 17, 2026
8b3d232
fixed vault packages issue
nuwangeek Jun 18, 2026
5cc9c82
Issue fix for test llm connections displaying production llm
ruwinirathnamalala Jun 18, 2026
5a87f39
Merge branch 'deployment/6-17-2026' into fix/llm-connections-page-issue
nuwangeek Jun 18, 2026
6b628f0
Merge pull request #215 from rootcodelabs/wip
nuwangeek Jun 18, 2026
a269685
Merge branch 'wip' of https://github.com/rootcodelabs/LLM-Module into…
ruwinirathnamalala Jun 18, 2026
2ab4c51
Issue fix for test llm connections displaying production llm
ruwinirathnamalala Jun 18, 2026
5cd4a5f
Merge pull request #476 from rootcodelabs/fix/llm-connections-page-issue
nuwangeek Jun 18, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ SELECT
END AS budget_status
FROM rag_search.llm_connections
WHERE connection_status <> 'deleted'
-- AND environment = 'testing'
AND environment = 'testing'
AND (:llm_platform IS NULL OR :llm_platform = '' OR llm_platform = :llm_platform)
AND (:llm_model IS NULL OR :llm_model = '' OR llm_model = :llm_model)
AND (:environment IS NULL OR :environment = '' OR environment = :environment)
Expand Down
Loading