Skip to content

Commit 4a18a65

Browse files
author
erangi-ar
committed
Merge branch 'wip' of https://github.com/rootcodelabs/RAG-Module into kubernetes
2 parents 3becd2a + f6ea894 commit 4a18a65

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

DSL/Liquibase/changelog/rag-search-script-v1-llm-connections.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ INSERT INTO llm_models (platform_id, model_key, model_name) VALUES
102102
-- Azure models
103103
((SELECT id FROM llm_platforms WHERE platform_key = 'azure'), 'gpt-4o-mini', 'GPT-4o-mini'),
104104
((SELECT id FROM llm_platforms WHERE platform_key = 'azure'), 'gpt-4o', 'GPT-4o'),
105+
((SELECT id FROM llm_platforms WHERE platform_key = 'azure'), 'gpt-4.1', 'GPT-4.1'),
105106
-- AWS models
106107
((SELECT id FROM llm_platforms WHERE platform_key = 'aws'), 'anthropic-claude-3.5-sonnet', 'Anthropic Claude 3.5 Sonnet'),
107108
((SELECT id FROM llm_platforms WHERE platform_key = 'aws'), 'anthropic-claude-3.7-sonnet', 'Anthropic Claude 3.7 Sonnet');

src/llm_orchestrator_config/config/llm_config.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,13 @@ llm:
3232
temperature: 0.5
3333
deployment_name: "gpt-4o-deployment"
3434

35+
gpt-4.1:
36+
model_type: "chat"
37+
max_tokens: 13107
38+
temperature: 0.6
39+
deployment_name: "gpt-4.1"
40+
41+
3542
# AWS Bedrock Configuration
3643
aws_bedrock:
3744
cache: true # Keep caching enabled (DSPY default)

0 commit comments

Comments
 (0)