GLLM Pipeline v0.4 to v0.5
Step Functions
Deprecated Parameters Removed
Removed Parameter
Replacement
Before (v0.4):
from gllm_pipeline import step, conditional, toggle, subgraph
# Using legacy parameters
my_step = step(
MyComponent(),
input_state_map={"query": "user_input"},
runtime_config_map={"model": "model_config"},
fixed_args={"temperature": 0.7},
output_state="result",
)
toggle_step = toggle(
condition,
feature_step,
input_state_map={"value": "input"},
runtime_config_map={"threshold": "threshold_config"},
fixed_args={"strict_mode": True},
output_state="feature_status",
)After (v0.5):
Caching Configuration
cache_store and cache_config Replaced with cache
cache_store and cache_config Replaced with cacheBefore (v0.4):
After (v0.5):
Pipeline Invocation
context Parameter Added
context Parameter AddedBefore (v0.4):
After (v0.5):
Router
Optional Dependencies
Extra Package Name
Required by
Module Location
Backend Adapter Pattern
Semantic Router: Aurelio Backend
Semantic Router: Native Backend
LM Based Router: Native Backend
Type Hints
Last updated
Was this helpful?