| 162 | |
| 163 | |
| 164 | class LLMDB(BaseModel): |
| 165 | config_id: Optional[str] = "" |
| 166 | module_type: ModuleType |
| 167 | llm_type: str |
| 168 | llm_args: LLMArgs |
| 169 | input: LLMInput |
| 170 | output: Message |
| 171 | |
| 172 | |
| 173 | class MessageDB(BaseModel): |
nothing calls this directly
no outgoing calls
no test coverage detected