(self)
| 94 | self.content = config["content"] |
| 95 | |
| 96 | def get_input_path(self): |
| 97 | if self.loading_method == SkillInputLoadingMethod.LOAD_FROM_STRING: |
| 98 | return self.param_path |
| 99 | elif self.loading_method == SkillInputLoadingMethod.LOAD_FROM_OUTPUT_ID: |
| 100 | return self.skill_output.param_path |
| 101 | return "" |
| 102 | |
| 103 | class SkillInputConfig: |
| 104 | def __init__(self, param_path: str, loading_method: SkillInputLoadingMethod, load_from_output_id: int, content: str = None): |
no outgoing calls
no test coverage detected