fix: switch to OpenAI client for llm-proxy compatibility

- Replace Anthropic SDK with OpenAI SDK (proxy uses OpenAI-compatible API)
- Add combined post fetching to include hidden/moderated posts
- Update system prompt to be more thorough at catching violations
- Add --debug flag to CLI for troubleshooting
This commit is contained in:
Ben
2026-01-06 03:58:08 +00:00
parent e9479e442a
commit e09f74578d
5 changed files with 215 additions and 59 deletions

View File

@@ -8,7 +8,7 @@ dependencies = [
"httpx>=0.27",
"click>=8.1",
"rich>=13.0",
"anthropic>=0.30",
"openai>=1.0",
"python-dateutil>=2.9",
"python-dotenv>=1.0",
]