Initial commit: PROMETHEUS v0.1.0 - Prompt optimizer
- Clean architecture (domain/application/infrastructure) - DSPy-based evolution engine with scoring - CLI via pyproject.toml entry point - Unit + integration tests (~300 tests) - Configs for glm-5.1 and glm-4.5-air models - Z.AI endpoint integration
This commit is contained in:
26
examples/test_run_config.yaml
Normal file
26
examples/test_run_config.yaml
Normal file
@@ -0,0 +1,26 @@
|
||||
# PROMETHEUS Test Config — Real run with Z.AI
|
||||
# =============================================
|
||||
|
||||
seed_prompt: |
|
||||
You are a helpful coding assistant. Help the user write clean, bug-free code.
|
||||
When reviewing code, identify bugs and suggest improvements.
|
||||
|
||||
task_description: |
|
||||
Code review and bug detection assistant. Reviews code snippets and
|
||||
identifies bugs, security issues, and style problems. The assistant
|
||||
receives a code snippet and must produce a structured review.
|
||||
|
||||
task_model: "openai/glm-4.5-air"
|
||||
judge_model: "openai/glm-4.5-air"
|
||||
proposer_model: "openai/glm-4.5-air"
|
||||
synth_model: "openai/glm-4.5-air"
|
||||
|
||||
# API configuration for z.ai
|
||||
api_base: "https://api.z.ai/api/paas/v4"
|
||||
api_key_env: "GLM_API_KEY"
|
||||
|
||||
# Evolution parameters (reduced for quick test)
|
||||
max_iterations: 3
|
||||
n_synthetic_inputs: 3
|
||||
minibatch_size: 2
|
||||
seed: 42
|
||||
Reference in New Issue
Block a user