()
| 7 | |
| 8 | @staticmethod |
| 9 | def get_agent() -> LLMAgent: |
| 10 | system_prompt = files("open_codex.resources").joinpath("prompt.txt").read_text(encoding="utf-8") |
| 11 | return AgentPhi4Mini(system_prompt=system_prompt) |
| 12 | |
| 13 | @staticmethod |
| 14 | def read_file(file_path: str) -> str: |
no test coverage detected