- 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
25 lines
548 B
TOML
25 lines
548 B
TOML
[project]
|
|
name = "eve-forum-moderator"
|
|
version = "0.1.0"
|
|
description = "AI-assisted EVE Online forum moderation tool - analyzes user posting history for rule violations"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"httpx>=0.27",
|
|
"click>=8.1",
|
|
"rich>=13.0",
|
|
"openai>=1.0",
|
|
"python-dateutil>=2.9",
|
|
"python-dotenv>=1.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
eve-mod = "eve_mod.cli:cli"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/eve_mod"]
|