├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .vscode └── extensions.json ├── README.md ├── src ├── copilot_flow │ ├── Dockerfile │ ├── chat.prompty │ ├── copilot.py │ ├── flow.flex.yaml │ ├── input_with_chat_history.json │ ├── queryIntent.prompty │ └── requirements.txt ├── custom_evaluators │ ├── __init__.py │ ├── completeness.prompty │ ├── completeness.py │ ├── friendliness.prompty │ └── friendliness.py ├── deployment │ ├── deploy.py │ └── invoke.py ├── evaluation │ ├── ContosoTestBuild.jsonl │ ├── ContosoTestData.jsonl │ ├── ContosoTestDataSmall.jsonl │ ├── adv_qa_jailbreak_pairs.jsonl │ ├── adv_qa_pairs.jsonl │ ├── eval_results │ │ ├── eval_results.jsonl │ │ └── eval_results_jailbreak.jsonl │ ├── evaluate.py │ ├── evaluate_completeness.py │ ├── evaluatesafetyrisks.py │ ├── evaluation_dataset.jsonl │ ├── evaluation_dataset_small.jsonl │ └── simulate_and_evaluate_online_endpoint.ipynb ├── helper_functions.py ├── indexing │ ├── build_index.py │ └── data │ │ └── product-info │ │ ├── customer_1.md │ │ ├── customer_10.md │ │ ├── customer_11.md │ │ ├── customer_12.md │ │ ├── customer_13.md │ │ ├── customer_2.md │ │ ├── customer_3.md │ │ ├── customer_4.md │ │ ├── customer_5.md │ │ ├── customer_6.md │ │ ├── customer_7.md │ │ ├── customer_8.md │ │ ├── customer_9.md │ │ ├── general-info.md │ │ ├── product_info_1.md │ │ ├── product_info_10.md │ │ ├── product_info_11.md │ │ ├── product_info_12.md │ │ ├── product_info_13.md │ │ ├── product_info_14.md │ │ ├── product_info_15.md │ │ ├── product_info_16.md │ │ ├── product_info_17.md │ │ ├── product_info_18.md │ │ ├── product_info_19.md │ │ ├── product_info_2.md │ │ ├── product_info_20.md │ │ ├── product_info_3.md │ │ ├── product_info_4.md │ │ ├── product_info_5.md │ │ ├── product_info_6.md │ │ ├── product_info_7.md │ │ ├── product_info_8.md │ │ └── product_info_9.md ├── provisioning │ ├── check_quota.py │ ├── provision.py │ └── provision.yaml ├── requirements.freeze.txt ├── requirements.txt ├── sample.env └── sample_flow │ ├── flow.flex.yaml │ ├── requirements.txt │ ├── sample.prompty │ └── sample.py └── tutorial ├── build_index.py ├── copilot_flow ├── Dockerfile ├── chat.prompty ├── copilot.py ├── flow.flex.yaml ├── input_with_chat_history.json ├── queryIntent.prompty └── requirements.txt ├── data ├── customer-info.zip ├── customer-info │ ├── customer_1.md │ ├── customer_10.md │ ├── customer_11.md │ ├── customer_12.md │ ├── customer_13.md │ ├── customer_2.md │ ├── customer_3.md │ ├── customer_4.md │ ├── customer_5.md │ ├── customer_6.md │ ├── customer_7.md │ ├── customer_8.md │ ├── customer_9.md │ └── general-info.md ├── product-info.zip └── product-info │ ├── product_info_1.md │ ├── product_info_10.md │ ├── product_info_11.md │ ├── product_info_12.md │ ├── product_info_13.md │ ├── product_info_14.md │ ├── product_info_15.md │ ├── product_info_16.md │ ├── product_info_17.md │ ├── product_info_18.md │ ├── product_info_19.md │ ├── product_info_2.md │ ├── product_info_20.md │ ├── product_info_3.md │ ├── product_info_4.md │ ├── product_info_5.md │ ├── product_info_6.md │ ├── product_info_7.md │ ├── product_info_8.md │ └── product_info_9.md ├── deploy.py ├── eval_dataset.jsonl ├── eval_results.jsonl ├── evaluate.py ├── invoke-local.py └── sample.env /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/README.md -------------------------------------------------------------------------------- /src/copilot_flow/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/copilot_flow/Dockerfile -------------------------------------------------------------------------------- /src/copilot_flow/chat.prompty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/copilot_flow/chat.prompty -------------------------------------------------------------------------------- /src/copilot_flow/copilot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/copilot_flow/copilot.py -------------------------------------------------------------------------------- /src/copilot_flow/flow.flex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/copilot_flow/flow.flex.yaml -------------------------------------------------------------------------------- /src/copilot_flow/input_with_chat_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/copilot_flow/input_with_chat_history.json -------------------------------------------------------------------------------- /src/copilot_flow/queryIntent.prompty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/copilot_flow/queryIntent.prompty -------------------------------------------------------------------------------- /src/copilot_flow/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/copilot_flow/requirements.txt -------------------------------------------------------------------------------- /src/custom_evaluators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/custom_evaluators/__init__.py -------------------------------------------------------------------------------- /src/custom_evaluators/completeness.prompty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/custom_evaluators/completeness.prompty -------------------------------------------------------------------------------- /src/custom_evaluators/completeness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/custom_evaluators/completeness.py -------------------------------------------------------------------------------- /src/custom_evaluators/friendliness.prompty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/custom_evaluators/friendliness.prompty -------------------------------------------------------------------------------- /src/custom_evaluators/friendliness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/custom_evaluators/friendliness.py -------------------------------------------------------------------------------- /src/deployment/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/deployment/deploy.py -------------------------------------------------------------------------------- /src/deployment/invoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/deployment/invoke.py -------------------------------------------------------------------------------- /src/evaluation/ContosoTestBuild.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/evaluation/ContosoTestBuild.jsonl -------------------------------------------------------------------------------- /src/evaluation/ContosoTestData.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/evaluation/ContosoTestData.jsonl -------------------------------------------------------------------------------- /src/evaluation/ContosoTestDataSmall.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/evaluation/ContosoTestDataSmall.jsonl -------------------------------------------------------------------------------- /src/evaluation/adv_qa_jailbreak_pairs.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/evaluation/adv_qa_jailbreak_pairs.jsonl -------------------------------------------------------------------------------- /src/evaluation/adv_qa_pairs.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/evaluation/adv_qa_pairs.jsonl -------------------------------------------------------------------------------- /src/evaluation/eval_results/eval_results.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/evaluation/eval_results/eval_results.jsonl -------------------------------------------------------------------------------- /src/evaluation/eval_results/eval_results_jailbreak.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/evaluation/eval_results/eval_results_jailbreak.jsonl -------------------------------------------------------------------------------- /src/evaluation/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/evaluation/evaluate.py -------------------------------------------------------------------------------- /src/evaluation/evaluate_completeness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/evaluation/evaluate_completeness.py -------------------------------------------------------------------------------- /src/evaluation/evaluatesafetyrisks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/evaluation/evaluatesafetyrisks.py -------------------------------------------------------------------------------- /src/evaluation/evaluation_dataset.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/evaluation/evaluation_dataset.jsonl -------------------------------------------------------------------------------- /src/evaluation/evaluation_dataset_small.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/evaluation/evaluation_dataset_small.jsonl -------------------------------------------------------------------------------- /src/evaluation/simulate_and_evaluate_online_endpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/evaluation/simulate_and_evaluate_online_endpoint.ipynb -------------------------------------------------------------------------------- /src/helper_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/helper_functions.py -------------------------------------------------------------------------------- /src/indexing/build_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/build_index.py -------------------------------------------------------------------------------- /src/indexing/data/product-info/customer_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/customer_1.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/customer_10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/customer_10.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/customer_11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/customer_11.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/customer_12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/customer_12.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/customer_13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/customer_13.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/customer_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/customer_2.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/customer_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/customer_3.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/customer_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/customer_4.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/customer_5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/customer_5.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/customer_6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/customer_6.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/customer_7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/customer_7.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/customer_8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/customer_8.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/customer_9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/customer_9.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/general-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/general-info.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/product_info_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/product_info_1.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/product_info_10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/product_info_10.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/product_info_11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/product_info_11.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/product_info_12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/product_info_12.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/product_info_13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/product_info_13.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/product_info_14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/product_info_14.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/product_info_15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/product_info_15.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/product_info_16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/product_info_16.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/product_info_17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/product_info_17.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/product_info_18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/product_info_18.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/product_info_19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/product_info_19.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/product_info_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/product_info_2.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/product_info_20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/product_info_20.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/product_info_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/product_info_3.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/product_info_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/product_info_4.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/product_info_5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/product_info_5.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/product_info_6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/product_info_6.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/product_info_7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/product_info_7.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/product_info_8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/product_info_8.md -------------------------------------------------------------------------------- /src/indexing/data/product-info/product_info_9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/indexing/data/product-info/product_info_9.md -------------------------------------------------------------------------------- /src/provisioning/check_quota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/provisioning/check_quota.py -------------------------------------------------------------------------------- /src/provisioning/provision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/provisioning/provision.py -------------------------------------------------------------------------------- /src/provisioning/provision.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/provisioning/provision.yaml -------------------------------------------------------------------------------- /src/requirements.freeze.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/requirements.freeze.txt -------------------------------------------------------------------------------- /src/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/requirements.txt -------------------------------------------------------------------------------- /src/sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/sample.env -------------------------------------------------------------------------------- /src/sample_flow/flow.flex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/sample_flow/flow.flex.yaml -------------------------------------------------------------------------------- /src/sample_flow/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/sample_flow/requirements.txt -------------------------------------------------------------------------------- /src/sample_flow/sample.prompty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/sample_flow/sample.prompty -------------------------------------------------------------------------------- /src/sample_flow/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/src/sample_flow/sample.py -------------------------------------------------------------------------------- /tutorial/build_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/build_index.py -------------------------------------------------------------------------------- /tutorial/copilot_flow/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/copilot_flow/Dockerfile -------------------------------------------------------------------------------- /tutorial/copilot_flow/chat.prompty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/copilot_flow/chat.prompty -------------------------------------------------------------------------------- /tutorial/copilot_flow/copilot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/copilot_flow/copilot.py -------------------------------------------------------------------------------- /tutorial/copilot_flow/flow.flex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/copilot_flow/flow.flex.yaml -------------------------------------------------------------------------------- /tutorial/copilot_flow/input_with_chat_history.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/copilot_flow/input_with_chat_history.json -------------------------------------------------------------------------------- /tutorial/copilot_flow/queryIntent.prompty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/copilot_flow/queryIntent.prompty -------------------------------------------------------------------------------- /tutorial/copilot_flow/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/copilot_flow/requirements.txt -------------------------------------------------------------------------------- /tutorial/data/customer-info.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/customer-info.zip -------------------------------------------------------------------------------- /tutorial/data/customer-info/customer_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/customer-info/customer_1.md -------------------------------------------------------------------------------- /tutorial/data/customer-info/customer_10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/customer-info/customer_10.md -------------------------------------------------------------------------------- /tutorial/data/customer-info/customer_11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/customer-info/customer_11.md -------------------------------------------------------------------------------- /tutorial/data/customer-info/customer_12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/customer-info/customer_12.md -------------------------------------------------------------------------------- /tutorial/data/customer-info/customer_13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/customer-info/customer_13.md -------------------------------------------------------------------------------- /tutorial/data/customer-info/customer_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/customer-info/customer_2.md -------------------------------------------------------------------------------- /tutorial/data/customer-info/customer_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/customer-info/customer_3.md -------------------------------------------------------------------------------- /tutorial/data/customer-info/customer_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/customer-info/customer_4.md -------------------------------------------------------------------------------- /tutorial/data/customer-info/customer_5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/customer-info/customer_5.md -------------------------------------------------------------------------------- /tutorial/data/customer-info/customer_6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/customer-info/customer_6.md -------------------------------------------------------------------------------- /tutorial/data/customer-info/customer_7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/customer-info/customer_7.md -------------------------------------------------------------------------------- /tutorial/data/customer-info/customer_8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/customer-info/customer_8.md -------------------------------------------------------------------------------- /tutorial/data/customer-info/customer_9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/customer-info/customer_9.md -------------------------------------------------------------------------------- /tutorial/data/customer-info/general-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/customer-info/general-info.md -------------------------------------------------------------------------------- /tutorial/data/product-info.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/product-info.zip -------------------------------------------------------------------------------- /tutorial/data/product-info/product_info_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/product-info/product_info_1.md -------------------------------------------------------------------------------- /tutorial/data/product-info/product_info_10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/product-info/product_info_10.md -------------------------------------------------------------------------------- /tutorial/data/product-info/product_info_11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/product-info/product_info_11.md -------------------------------------------------------------------------------- /tutorial/data/product-info/product_info_12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/product-info/product_info_12.md -------------------------------------------------------------------------------- /tutorial/data/product-info/product_info_13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/product-info/product_info_13.md -------------------------------------------------------------------------------- /tutorial/data/product-info/product_info_14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/product-info/product_info_14.md -------------------------------------------------------------------------------- /tutorial/data/product-info/product_info_15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/product-info/product_info_15.md -------------------------------------------------------------------------------- /tutorial/data/product-info/product_info_16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/product-info/product_info_16.md -------------------------------------------------------------------------------- /tutorial/data/product-info/product_info_17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/product-info/product_info_17.md -------------------------------------------------------------------------------- /tutorial/data/product-info/product_info_18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/product-info/product_info_18.md -------------------------------------------------------------------------------- /tutorial/data/product-info/product_info_19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/product-info/product_info_19.md -------------------------------------------------------------------------------- /tutorial/data/product-info/product_info_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/product-info/product_info_2.md -------------------------------------------------------------------------------- /tutorial/data/product-info/product_info_20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/product-info/product_info_20.md -------------------------------------------------------------------------------- /tutorial/data/product-info/product_info_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/product-info/product_info_3.md -------------------------------------------------------------------------------- /tutorial/data/product-info/product_info_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/product-info/product_info_4.md -------------------------------------------------------------------------------- /tutorial/data/product-info/product_info_5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/product-info/product_info_5.md -------------------------------------------------------------------------------- /tutorial/data/product-info/product_info_6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/product-info/product_info_6.md -------------------------------------------------------------------------------- /tutorial/data/product-info/product_info_7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/product-info/product_info_7.md -------------------------------------------------------------------------------- /tutorial/data/product-info/product_info_8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/product-info/product_info_8.md -------------------------------------------------------------------------------- /tutorial/data/product-info/product_info_9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/data/product-info/product_info_9.md -------------------------------------------------------------------------------- /tutorial/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/deploy.py -------------------------------------------------------------------------------- /tutorial/eval_dataset.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/eval_dataset.jsonl -------------------------------------------------------------------------------- /tutorial/eval_results.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/eval_results.jsonl -------------------------------------------------------------------------------- /tutorial/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/evaluate.py -------------------------------------------------------------------------------- /tutorial/invoke-local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/invoke-local.py -------------------------------------------------------------------------------- /tutorial/sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/rag-data-openai-python-promptflow/HEAD/tutorial/sample.env --------------------------------------------------------------------------------