| 149 | |
| 150 | |
| 151 | class ModuleType(Enum): |
| 152 | RESPONDER = "responder" |
| 153 | TOOL = "tool" |
| 154 | CRITIC = "critic" |
| 155 | USERINPUTGENERATOR = "user_input_generator" |
| 156 | SYSTEMPROMPTGENERATOR = "system_prompt_generator" |
| 157 | USERPROFILEGENERATOR = "user_profile_generator" |
| 158 | |
| 159 | |
| 160 | class LLMArgs(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected