A deep-tech founder with a patented polymer process applied for three Innovate UK Smart Grants between 2023 and 2025. He wrote every section himself: market sizing, impact statement, technical approach, team, commercialisation plan. Average time per application: 43 hours. He won two of three. When we built the evidence library and automated the draft layer, his fourth application took 9 hours of his time and won. The 34 hours reclaimed went back into product development, not a grant portal.
That result doesn't come from running a press release through a chat interface. It comes from treating grant applications as a retrieval and formatting problem rather than a creative writing exercise. The Innovate UK Smart Grant asks the same eight questions in the same format against a published scoring rubric. If you have the right evidence ready before the portal opens, an LLM can produce a compliant first draft in under an hour. Getting the evidence ready is the actual work — and most founders skip it because they treat every bid as a one-off.
Innovate UK application anatomy: the eight sections every Smart Grant bid must include and where the hours go
Every Smart Grant application has the same skeleton. The hours pile up where founders reconstruct evidence from scratch rather than retrieve it from a structured store.
| Section | Word limit (typical) | Founder time (unautomated) |
|---|---|---|
| Business opportunity | 400 | 5–6 hrs |
| Market and customer | 400 | 3–4 hrs |
| Innovation and technology | 600 | 7–9 hrs |
| Technical approach | 600 | 7–8 hrs |
| Team and project management | 400 | 3–4 hrs |
| Financial case | 400 | 4–6 hrs |
| Commercialisation plan | 400 | 4–5 hrs |
| Economic and societal impact | 400 | 4–5 hrs |
| Total | 3,600 | 37–47 hrs |
That's 3,600 words scored against a published rubric. UKRI's assessment criteria guidance makes explicit what an "excellent" response looks like in each section. Most founders write to length without writing to the rubric. The automation layer flips this: once the evidence library is built, the LLM drafts to the rubric first and trims to the word limit second.
Building a company evidence library: the structured knowledge base that turns past applications into reusable components
The evidence library is a structured document — JSON works well, plain markdown works too — that captures every piece of reusable company evidence before a bid cycle starts. Build it once, update it after every submission.
{
"company": {
"description": {
"50_words": "Acme Polymers Ltd develops biodegradable packaging membranes for the UK food industry. 8 staff, £1.2M ARR. One granted patent (GB2601234), two pending.",
"200_words": "...",
"500_words": "..."
},
"founding_date": "2019-03",
"ip": ["GB2601234 (granted 2022-11)", "GB2611567 (pending, filed 2024-03)"]
},
"team": [
{
"name": "Dr A. Youssef",
"role": "MD and Lead Scientist",
"grant_relevant_experience": "12 years polymer chemistry; 3 Innovate UK projects (2 awarded, £1.1M total)"
}
],
"past_projects": [
{
"funder": "Innovate UK",
"award_gbp": 280000,
"outcome": "Reduced membrane cost 34% vs benchmark; filed one new patent",
"year": 2022
}
],
"market": {
"tam_gbp": "1.4B",
"tam_source": "Smithers Pira 2024 Flexible Packaging report",
"addressable_segment": "UK food-grade flexible packaging, estimated £340M",
"addressable_segment_source": "WRAP UK 2023 packaging sector analysis"
}
}
The quality of the library determines the quality of the draft. A library with real figures, sourced market data, and specific project outcomes produces a fundable first draft. Generic statements produce generic copy that fails. The sourcing discipline — every market figure must have a named origin — is what separates an evidence library from a marketing one-pager.
LLM-assisted section drafting: which grant sections automate well and which ones hallucinate without a human check
Not all eight sections behave the same when you pass them to an LLM with library context. Four sections draft reliably. Four need a founder in the loop before anything goes near the portal.
| Section | Automation reliability | Primary failure mode |
|---|---|---|
| Business opportunity | High | Over-inflated TAM when market source is thin |
| Market and customer | High | Generic UK data used when sub-sector data is absent |
| Innovation and technology | Low | Hallucinated technical specifications |
| Technical approach | Low | Plausible-sounding but incorrect methodology gaps |
| Team and project management | Medium | Generic filler when bios are incomplete |
| Financial case | Low | LLM numbers are wrong; build this by hand |
| Commercialisation plan | High | Credible structure from market and product evidence |
| Economic and societal impact | High | Formats well against UKRI impact criteria when evidence is present |
For high-reliability sections, the workflow is: structured prompt with evidence block → LLM draft → word-count compliance check → light founder review. Total time per section: 20–40 minutes. For low-reliability sections, the LLM builds a skeleton and flags which specific data points are missing; the founder fills those gaps directly. We use retrieval-augmented verification against the evidence library for every technical claim — the same pattern described in our document RAG pipeline case study.
Word count and scoring rubric compliance: automating the output format before a human reviewer sees it
Innovate UK applications have hard per-section word limits enforced at the portal level since the 2025 migration. The automation layer handles compliance before a human reviewer sees the draft.
def check_section_compliance(
section_text: str,
word_limit: int,
rubric_keywords: list[str]
) -> dict:
word_count = len(section_text.split())
kw_hits = [kw for kw in rubric_keywords if kw.lower() in section_text.lower()]
return {
"word_count": word_count,
"within_limit": word_count <= word_limit,
"utilisation": round(word_count / word_limit, 2),
"rubric_coverage": round(len(kw_hits) / len(rubric_keywords), 2),
"missing_rubric_terms": [kw for kw in rubric_keywords if kw not in kw_hits],
}
The rubric_keywords list is extracted from the published UKRI assessment criteria. Phrases like "credible route to market" and "justification for public funding" each become a check. Sections scoring below 0.6 rubric coverage get flagged for a second draft pass. Target utilisation is 0.88–0.95: short submissions leave scoring points on the table; over-limit text is now rejected at portal entry.
Impact statement generation: the specific commercial impact framing UKRI assessors score highest
The impact section is the one most founders write last and write poorest. UKRI assessors score it against three specific tests: net additional UK economic benefit (UK revenue, UK jobs — not global projections); additionality (what would not happen without the grant, specifically); and counterfactual competition (which foreign companies or technologies fill the gap if you do not win).
A well-structured impact prompt addresses all three:
Given the following company evidence: [EVIDENCE_BLOCK]
Write a 400-word economic and societal impact section for an Innovate UK Smart Grant.
Structure:
1. UK market opportunity: specific sector, £ figure with named source
2. Net additional benefit: UK jobs (3-year post-project), export revenue if applicable
3. Additionality: what you will NOT do without this grant, specifically
4. Counterfactual: which overseas competitor or technology fills this gap if you do not
Do not invent figures. Flag any absent data as [MISSING: <data point>].
The [MISSING:] instruction is the most important line. Without it, the LLM papers over evidence gaps with industry generalisations. With it, you get a precise list of what the library needs before this section is fundable.
Horizon Europe and Innovate UK differences: what changes in the automation layer for EU funding bids
The evidence library carries over to Horizon Europe bids. The section templates do not.
| Dimension | Innovate UK Smart Grant | Horizon Europe |
|---|---|---|
| Document length | ~3,600 words (15 pp) | ~30,000 words (45 pp) |
| Structure | 8 named sections | 3 parts: Excellence / Impact / Implementation |
| Consortium | Single entity or small UK consortium | Often multi-partner across EU + UK |
| Scoring rubric | Published on gov.uk | Published per Work Programme call |
| UK eligibility | Full | Managed via UKRI Horizon guarantee fund |
| Impact framing | UK commercial benefit | European and global societal benefit weighted higher |
Horizon Europe Work Programme calls use a more formal assessment register. The evidence library feeds both, but the LLM prompt templates must reframe UK commercial outcomes into European policy objectives. Build a per-call eligibility check into the Horizon automation layer — UK entity eligibility under the association agreement varies by programme and is not a one-time configuration.
Human review checkpoints: the four sections where a founder must stay in the loop before submission
Technical approach. Every methodology, material, and process claim must be verified by the technical lead. UKRI includes domain specialists in its assessor pool who recognise when detail is generic rather than proprietary. An LLM filling gaps with plausible language fails that scrutiny precisely because it reads well.
Financial case. The budget narrative, subcontractor justification, and milestone schedule must reflect actual project costs. UKRI conducts financial due diligence on awards. No automated layer should generate these numbers.
Intellectual property. IP sections involve legal claims about what is granted, pending, and in the public domain. The LLM can format and structure the section, but every claim must come from your actual IP register. The same source-of-truth verification logic we use in our document data extraction pipeline applies here — claim against document, not against model inference.
Team CVs and role justification. Assessors check credentials against public records. Fabricated or inflated team qualifications are a ground for award termination. This section is where grant fraud risk concentrates, and it cannot be delegated to a drafting layer.
What changed in 2025–2026: Innovate UK portal updates and AI-tool disclosure requirements in grant applications
Two changes in 2025 directly affect how you build the automation layer.
UKRI Funding Service portal. The UKRI Funding Service replaced the legacy Je-S system for most Innovate UK calls in early 2025. The new portal enforces per-section word limits at input level — text over the limit is rejected at entry, not flagged with a warning. Any pipeline built on the assumption that overlong drafts could be trimmed manually at submission now fails silently until a section cannot be saved.
AI tool disclosure. From January 2025, Innovate UK requires a declaration of AI tool usage within the form itself, naming specific tools and sections. Undisclosed use is misrepresentation. As a counterpoint, NIHR guidance on AI in grant applications takes a more restrictive position worth reading if you bid across both health research and innovation funding streams. Build an audit log — tool name, section, prompt version, date — from the first run. Retrofitting it after submission is not possible.
Good / Bad / Ugly: three grant application automation approaches and their scoring and win rate outcomes
Good: evidence library + LLM section drafting + mandatory human review gates
Win rate across our client cohort: 3 from 5 applications, against a sector average of roughly 1 in 3 for Smart Grants. Average founder time: 9–11 hours. Assessor feedback consistently cited evidence quality and commercial clarity. The library compounds across bid cycles — each submission adds sharper outcomes data that the next application benefits from. The same compounding logic applies in our proposal automation work for professional services firms, and in bid and tender automation for commercial contracts.
Bad: template-filling without a knowledge layer
The most common approach we encounter: a founder or consultant fills a generic template with website copy. No structured evidence store, no rubric alignment, no compliance checks. The applications are structurally correct and evidentially thin. Win rate across clients who came to us after this approach: roughly 1 in 5. The applications pass basic quality screening and fail to differentiate. Assessors reviewing hundreds of submissions per round recognise the difference between evidence built for the bid and evidence assembled in an afternoon.
Ugly: direct LLM submission without any company knowledge layer
Founders are doing this. They paste the portal question, add two sentences about their company, and submit what comes back. The output looks plausible — formatted, appropriate length, coherent — and fails completely. UKRI assessors in the 2025 cycle flagged "claims not supported by evidence" as a recurring rejection reason. One client came to us after receiving that feedback across three sections of two separate applications. The LLM had filled every evidence gap with industry averages that bore no relation to the company's actual processes, costs, or IP.