You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update documentation to reflect current features and file support
- README: add XLSX support, source traceability, contradiction detection, SME routing,
environment variables reference, supported file formats table, quick-start script
- README: fix broken local file paths to use relative links, update architecture table
to include PostgreSQL/Supabase and openpyxl, remove explicit AI provider branding
- CONTRIBUTING: add XLSX, contradiction detection, and SME routing to welcome list
- USE_CASES: add Excel-based questionnaire section, update shared ops with new features
- .env.example: add SME routing config variables
- frontend/README: fix broken relative link
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
-**Semantic Matching**: embedding-based question matching for paraphrased prompts
64
+
-**Source Traceability**: every answer links back to the KB entry it was matched from, with category, similarity score, and source Q&A visible in review
65
+
-**Contradiction Detection**: automatically flags KB entries with conflicting answers on the same topic
66
+
-**SME Routing**: route flagged questions to category-specific subject-matter experts via configurable email mappings
60
67
-**Confidence Score Visibility**: per-answer confidence badges (green/yellow/red) so reviewers focus on low-confidence answers
61
-
-**Answer Review Queue**: inline review table after processing — approve, edit, or override any answer before downloading
68
+
-**Answer Review Queue**: inline review table after processing -- approve, edit, or override any answer before downloading
62
69
-**Finalize & Download**: regenerate the output document with edited answers after review
63
-
-**AI Agent Mode**: default `agent` mode with contextual research/fill workflows
64
-
-**Provider Model Discovery**: Settings can pull model dropdown options directly from OpenAI and Claude APIs
65
-
-**Test Connection**: verify AI provider credentials from the Settings page
70
+
-**Excel Support**: full .xlsx round-trip -- parse questions from Excel workbooks and write answers back preserving dropdowns, merged cells, data validation, and cell styles
71
+
-**Agent Mode**: optional agent mode with contextual research/fill workflows
66
72
-**Agent Instruction Presets**: built-in and custom instruction presets for common answering styles
67
-
-**Parser Profiles**: multiple layout strategies for document and CSV questionnaire structures
68
-
-**Troubleshooting**: compare parser profiles plus optional AI diagnostics and trace output
73
+
-**Parser Profiles**: multiple layout strategies for document, Excel, and CSV questionnaire structures
74
+
-**Troubleshooting**: compare parser profiles plus optional advanced diagnostics and trace output
69
75
-**Human-in-the-loop Review**: grouped flagged questions, resolution flow, and KB sync
70
76
-**Batch Processing**: upload up to 50 files in one batch, track per-file results, and download ZIP outputs
|`QF_SUPABASE_JWT_SECRET`| JWT secret for auth (optional) | — |
225
+
|`QF_AGENT_ENABLED`| Enable agent mode |`false`|
226
+
|`QF_AGENT_PROVIDER`| Provider name |`openai`|
227
+
|`QF_AGENT_API_KEY`| Provider API key | — |
228
+
|`QF_AGENT_MODEL`| Model identifier |`gpt-4.1-nano`|
229
+
|`QF_SME_ROUTING_ENABLED`| Enable SME routing |`false`|
230
+
|`QF_CATEGORY_SME_MAP`| JSON map of category to SME email |`{}`|
193
231
194
232
## Open Source
195
233
196
234
TrustReply is released under the MIT License. That means other developers can use, modify, and distribute the software under the terms of that license.
197
235
198
-
Maintainers still control what gets merged into the official upstream project. If you want to contribute improvements back to the main repository, please follow [CONTRIBUTING.md](/Users/kutluhanbayram/Desktop/AI%20QUESTIONNAIRE%20FILLER%20-%20DOCS/CONTRIBUTING.md).
236
+
Maintainers still control what gets merged into the official upstream project. If you want to contribute improvements back to the main repository, please follow [CONTRIBUTING.md](CONTRIBUTING.md).
199
237
200
238
## Contributing
201
239
202
240
Issues, fixes, parser improvements, UX improvements, and new document-layout support are all welcome.
Copy file name to clipboardExpand all lines: docs/USE_CASES.md
+22-7Lines changed: 22 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,17 +11,18 @@ Security teams and revenue teams regularly receive questionnaires asking about:
11
11
- incident response
12
12
- secure SDLC
13
13
14
-
TrustReply helps answer these using an approved answer library so teams do not rewrite the same response for every prospect or partner.
14
+
TrustReply helps answer these using an approved answer library so teams do not rewrite the same response for every prospect or partner. Source traceability links each answer back to the KB entry it came from for audit purposes.
15
15
16
16
## Vendor Risk Assessments
17
17
18
18
Procurement and third-party risk teams often send very similar forms in different document formats. TrustReply can:
Copy file name to clipboardExpand all lines: frontend/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
This directory contains the Next.js frontend for TrustReply.
4
4
5
-
For full project setup, product overview, and use cases, start with the root [README.md](/Users/kutluhanbayram/Desktop/AI%20QUESTIONNAIRE%20FILLER%20-%20DOCS/README.md).
5
+
For full project setup, product overview, and use cases, start with the root [README.md](../README.md).
0 commit comments