Skip to content

Commit 1d8c0e0

Browse files
committed
added comments
Added comments per slack discussion: https://elastic.slack.com/archives/C059SNT4X0R/p1729261191648229
1 parent 94be190 commit 1d8c0e0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

supporting-blog-content/alternative-approach-for-parsing-pdfs-in-rag/alternative-approach-for-parsing-pdfs-in-rag.ipynb

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,17 @@
5656
"import io # To create an in-memory file-like object\n",
5757
"import os\n",
5858
"\n",
59-
"\n",
59+
"# Endpoint example\n",
60+
"# https://my-deploymet.openai.azure.com/openai/deployments/gpt-4o-global/chat/completions?api-version=2024-08-01-preview\n",
6061
"ENDPOINT = getpass(\"Azure OpenAI Completions Endpoint: \")\n",
6162
"\n",
6263
"API_KEY = getpass(\"Azure OpenAI API Key: \")\n",
6364
"\n",
65+
"\n",
66+
"##Directory where parsed output file will be written to\n",
6467
"PARSED_PDF_DIRECTORY = getpass(\"Output directory for parsed PDF: \")\n",
6568
"\n",
69+
"##Name of output parsed file\n",
6670
"PARSED_PDF_FILE_NAME = getpass(\"PARSED PDF File Name: \")\n",
6771
"\n",
6872
"\n",

0 commit comments

Comments
 (0)