@@ -125,6 +125,10 @@ The following list summarizes the tasks and features of the Docs Agent sample ap
125125 the responses. (See the
126126 [ Enabling users to submit a rewrite of a generated response] [ submit-a-rewrite ] and
127127 [ Enabling users to like generated responses] [ like-generate-responses ] sections.)
128+ - ** Convert Google Docs, PDF, and Gmail into Markdown files** : This feature uses
129+ Apps Script to convert Google Docs, PDF, and Gmail into Markdown files, which then
130+ can be used as input datasets for Docs Agent. For more information, see the
131+ [ ` README ` ] [ apps-script-readme ] file in the ` apps_script ` directory.
128132
129133## Flow of events
130134
@@ -205,10 +209,10 @@ by the PaLM model:
205209- Additional condition (for fact-checking):
206210
207211 ```
208- Can you compare the following text to the context provided in this prompt and write
209- a short message that warns the readers about which part of the text they should
210- consider fact-checking? (Please keep your response concise and focus on only
211- one important item.)
212+ Can you compare the text below to the context provided
213+ in this prompt above and write a short message that warns the readers about
214+ which part of the text they should consider fact-checking? (Please keep your
215+ response concise and focus on only one important item.)"
212216 ```
213217
214218- Previously generated response
@@ -597,20 +601,18 @@ To launch the Docs Agent chat app, do the following:
597601
598602 ```
599603 $ poetry run ./chatbot/launch.sh
600- This script starts your flask app in a virtual environment
601- Installing all dependencies through pip...
602- Using the local vector database created at /home/alice/generative-ai-docs/demos/palm/python/docs-agent/vector_database
603- Using embedded DuckDB with persistence: data will be stored in: /home/alice/generative-ai-docs/demos/palm/python/docs-agent/vector_database
604+ Reading the config file: /home/alice/docs-agent/config.yaml
605+ Reading the config file: /home/alice/docs-agent/config.yaml
604606 * Serving Flask app 'chatbot'
605607 * Debug mode: on
606- WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.
608+ INFO:werkzeug: WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.
607609 * Running on http://example.com:5000
608- Press CTRL+C to quit
609- * Restarting with stat
610- Using the local vector database created at /home/alice/generative-ai- docs/demos/palm/python/docs -agent/vector_database
611- Using embedded DuckDB with persistence: data will be stored in: /home/alice/generative-ai- docs/demos/palm/python/docs -agent/vector_database
612- * Debugger is active!
613- * Debugger PIN: 129-640-957
610+ INFO:werkzeug: Press CTRL+C to quit
611+ INFO:werkzeug: * Restarting with stat
612+ Reading the config file: /home/alice/docs-agent/config.yaml
613+ Reading the config file: /home/alice/docs-agent/config.yaml
614+ WARNING:werkzeug: * Debugger is active!
615+ INFO:werkzeug: * Debugger PIN: 825-594-989
614616 ```
615617
616618 Notice the line that shows the URL of this server (` http://example.com:5000 ` in
0 commit comments