MCPcopy Create free account
hub / github.com/Louisym/MiniCC / RuntimeFeatureConfig

Class RuntimeFeatureConfig

mini_claude_code/config.py:97–104  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

95# ============================================================
96
97class RuntimeFeatureConfig(BaseModel):
98 hooks_pre_tool_use: list[str] = Field(default_factory=list)
99 hooks_post_tool_use: list[str] = Field(default_factory=list)
100 model: Optional[str] = None
101 permission_mode: Optional[str] = None
102 timeout: int = 30
103 max_iterations: int = 10
104 token_budget: int = 200_000
105
106
107def parse_feature_config(merged: dict) -> RuntimeFeatureConfig:

Callers 1

parse_feature_configFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected