Skip to content

Commit b9468db

Browse files
committed
Update config.yaml
1 parent 2c8e989 commit b9468db

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

examples/llm_prompt_optimization/config.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@ language: "text" # Explicitly set language to text for prompt evolution
1313
llm:
1414
api_base: "https://generativelanguage.googleapis.com/v1beta/openai/"
1515
models:
16-
- name: "gemini-2.5-flash" # Using Gemini 2.5 Flash Lite
17-
weight: 1.0
16+
- name: "gemini-2.5-flash-lite" # Using Gemini 2.5 Flash Lite
17+
weight: 0.9
18+
- name: "gemini-2.5-flash" # Using Gemini 2.5 Flash
19+
weight: 0.1
1820

1921
temperature: 0.4 # Optimal from experiments
2022
max_tokens: 16000 # Optimal context
@@ -67,8 +69,8 @@ database:
6769

6870
# Evaluator Configuration
6971
evaluator:
70-
timeout: 1000
72+
timeout: 1800
7173
max_retries: 3
7274
parallel_evaluations: 4
7375
cascade_evaluation: true # Two-stage cascading evaluation
74-
cascade_thresholds: [0.8] # Stage 1 must achieve 90% accuracy to proceed to stage 2
76+
cascade_thresholds: [0.9] # Stage 1 must achieve 90% accuracy to proceed to stage 2

0 commit comments

Comments
 (0)