feat: [ML-542]: Add stage type to genai step context (#3266)

* feat: [ML-542]: Fix linting
* feat: [ML-542]: Add stage type to genai step context
This commit is contained in:
David Kreiner 2025-01-15 03:28:22 +00:00 committed by Harness
parent 6be8fdf10a
commit eb12a70a84

View File

@ -55,7 +55,8 @@ func (PipelineContext) GetType() capabilities2.AIContextPayloadType {
const AIContextPayloadTypeStepContext capabilities2.AIContextPayloadType = "other"
type StepContext struct {
Yaml string `json:"step_yaml"`
Yaml string `json:"step_yaml"`
StageType string `json:"stage_type"`
}
func (StepContext) GetName() string {