I need to include my own certificates while watson assistant creates a session. Currently I have added the certificates in certifi and it works, but when deploying my app, I dont think I can go to the deployment server and add certificate. Where can I reference verify = ?
While using requests library, I provide certificates in verify = 'path to certs'
from ibm_watson import AssistantV2
conversation = AssistantV2(
iam_apikey = config.get('bot_configuration').get('bot_api_key'),
url= config.get('bot_configuration').get('bot_url'),
version=config.get('bot_configuration').get('version'))
session = conversation.create_session(config.get('bot_configuration').get('assistant_id')).get_result()