@@ -10,11 +10,24 @@ New files should be added to the `data` folder, and then either run scripts/prep
10
10
* app/backend/approaches/approach.py: Base class for all approaches
11
11
* app/backend/approaches/retrievethenread.py: Ask approach, just searches and answers
12
12
* app/backend/approaches/chatreadretrieveread.py: Chat approach, includes query rewriting step first
13
+ * app/backend/approaches/prompts/ask_answer_question.prompty: Prompt used by the Ask approach to answer the question based off sources
14
+ * app/backend/approaches/prompts/chat_query_rewrite.prompty: Prompt used to rewrite the query based off search history into a better search query
15
+ * app/backend/approaches/prompts/chat_query_rewrite_tools.json: Tools used by the query rewriting prompt
16
+ * app/backend/approaches/prompts/chat_answer_question.prompty: Prompt used by the Chat approach to actually answer the question based off sources
13
17
* app/backend/app.py: The main entry point for the backend application.
14
18
* app/frontend: Contains the React frontend code, built with TypeScript, built with vite.
15
19
* app/frontend/src/api: Contains the API client code for communicating with the backend.
16
20
* app/frontend/src/components: Contains the React components for the frontend.
17
21
* app/frontend/src/locales: Contains the translation files for internationalization.
22
+ * app/frontend/src/locales/da/translation.json: Danish translations
23
+ * app/frontend/src/locales/en/translation.json: English translations
24
+ * app/frontend/src/locales/es/translation.json: Spanish translations
25
+ * app/frontend/src/locales/fr/translation.json: French translations
26
+ * app/frontend/src/locales/it/translation.json: Italian translations
27
+ * app/frontend/src/locales/ja/translation.json: Japanese translations
28
+ * app/frontend/src/locales/nl/translation.json: Dutch translations
29
+ * app/frontend/src/locales/ptBR/translation.json: Portuguese translations
30
+ * app/frontend/src/locales/tr/translation.json: Turkish translations
18
31
* app/frontend/src/pages: Contains the main pages of the application
19
32
* infra: Contains the Bicep templates for provisioning Azure resources.
20
33
* tests: Contains the test code, including e2e tests, app integration tests, and unit tests.
0 commit comments