refactor: remove custom llm provider layer

This commit is contained in:
0xallam
2026-04-26 14:04:32 -07:00
parent 383c7e02dd
commit b963e269ca
17 changed files with 185 additions and 351 deletions
-6
View File
@@ -1320,12 +1320,6 @@ def process_pull_line(
return last_update
# LLM utilities
def validate_llm_response(response: Any) -> None:
if not response or not response.choices or not response.choices[0].message.content:
raise RuntimeError("Invalid response from LLM")
def validate_config_file(config_path: str) -> Path:
console = Console()
path = Path(config_path)