generated from coulomb/repo-seed
Pass instruction depth config to llm-connect
This commit is contained in:
@@ -109,6 +109,10 @@ class InstructionDef(BaseModel):
|
||||
description="Allowlist of event/context fields that may appear in the prompt template.",
|
||||
)
|
||||
model: str = Field(description="LLM model identifier, e.g. 'claude-sonnet-4-6'.")
|
||||
temperature: float | None = Field(default=None)
|
||||
max_tokens: int | None = Field(default=None)
|
||||
max_depth: int | None = Field(default=None)
|
||||
model_params: dict[str, Any] = Field(default_factory=dict)
|
||||
prompt: str = Field(description="Prompt template with {field.path} placeholders.")
|
||||
output_schema: str = Field(description="Path to JSON Schema file for output validation.")
|
||||
review_required: bool = Field(default=False)
|
||||
|
||||
Reference in New Issue
Block a user