Update dify_pipeline.py

Uncomment to disable SSL verification warnings if needed.
This commit is contained in:
Artur Zdolinski 2024-10-22 23:48:19 +02:00 committed by GitHub
parent 0b8469bcd1
commit a82c47c6d4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,7 +2,7 @@ from typing import List, Union, Generator, Iterator, Optional
from pprint import pprint
import requests, json, warnings
# Unhash to disable SSL verification warnings if needed
# Uncomment to disable SSL verification warnings if needed.
# warnings.filterwarnings('ignore', message='Unverified HTTPS request')
class Pipeline: