Two Dev.to posts describe separate free, no-login AI web tools for procurement teams. One tool (RFP compliance checker) lets users paste an RFP specification and a draft response, then analyzes the text to produce a compliance matrix identifying requirements that are fully covered, partially covered, or missing, organized by requirement type with suggestions for each gap. The author says it focuses on structured outputs by using the Groq API’s JSON response format, a prompt that defines an explicit JSON schema, and low temperature to keep results consistent.

The second tool (PQQ response planner) takes a PQQ document pasted as-is and extracts every question, tagging each by procurement category (such as technical, financial, health and safety), assigning a difficulty level, and pulling word limits directly from the document. It also suggests evidence to prepare for each question. Both tools are built as single-page web apps using vanilla HTML/JavaScript and run backend logic on a Cloudflare Worker that calls Groq’s Llama model (the posts reference llama-3.3-70b variants). The author indicates free-tier usage, with an option to supply a personal Groq API key if the free tier runs out, and provides self-hosting guidance via Docker/GitHub.