"""Creates the eval jobs table against dynamodb-local. Dev-only — run by the `jobs-table-init` service in docker-compose-dev.yml, ahead of ai-eval-runner-dev starting. No-op unless DYNAMODB_ENDPOINT_URL is set, so it never touches real AWS. """ from ai_eval_runner.clients.jobs import ensure_table_exists if __name__ == "__main__": ensure_table_exists()