Skip to content

Commit c7f695f

Browse files
Prompt Improvement (#270)
Prompt Improvement
1 parent 0c6effd commit c7f695f

5 files changed

Lines changed: 273 additions & 87 deletions

File tree

.env.template

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,8 @@ VLLM_TOOL_SUPPORT=false
122122
JAN_PROVIDER_CONFIGS=true
123123
JAN_PROVIDER_CONFIGS_FILE=config/providers.yml
124124
JAN_PROVIDER_CONFIG_SET=default
125+
PROMPT_ORCHESTRATION_ENABLED=true
126+
PROMPT_ORCHESTRATION_TEMPLATES=true
125127
# Legacy fallback (single provider) - leave disabled unless needed
126128
# JAN_DEFAULT_NODE_SETUP=true
127129
# JAN_DEFAULT_NODE_URL=http://vllm-jan-gpu:8001/v1

services/llm-api/internal/config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ type Config struct {
9292
PromptOrchestrationEnableMemory bool `env:"PROMPT_ORCHESTRATION_MEMORY" envDefault:"false"`
9393
PromptOrchestrationEnableTemplates bool `env:"PROMPT_ORCHESTRATION_TEMPLATES" envDefault:"false"`
9494
PromptOrchestrationEnableTools bool `env:"PROMPT_ORCHESTRATION_TOOLS" envDefault:"false"`
95-
PromptOrchestrationDefaultPersona string `env:"PROMPT_ORCHESTRATION_PERSONA" envDefault:"helpful assistant"`
95+
PromptOrchestrationDefaultPersona string `env:"PROMPT_ORCHESTRATION_PERSONA"`
9696

9797
// Memory integration
9898
MemoryEnabled bool `env:"MEMORY_ENABLED" envDefault:"false"`

0 commit comments

Comments
 (0)