Márcio Mocellin

Results 2 comments of Márcio Mocellin

Pylance language server 2025.6.2 (pyright version 1.1.402, commit 9496ae00) starting [pylance_2025.6.2_id_0.txt](https://github.com/user-attachments/files/21301341/pylance_2025.6.2_id_0.txt) [pylance_2025.6.2_id_1.txt](https://github.com/user-attachments/files/21301340/pylance_2025.6.2_id_1.txt)

@rchiodo `httpx == 0.28.1` ```Python from langchain_openai import AzureChatOpenAI, AzureOpenAIEmbeddings from httpx import Client llm = AzureChatOpenAI( model=DEPLOYMENT_NAME, openai_api_version=OPENAI_API_VERSION, openai_api_key=config['OPENAI']['OPENAI_API_KEY'], base_url=f'{OPENAI_BASE_URL}/{DEPLOYMENT_NAME}', verbose=True, http_client=Client(verify=CERTIFICATE_PATH) ) print(llm.invoke('Hello world.').content) EMBEDDINGS_DEPLOYMENT_NAME='text-embedding-petrobras' embeddings = AzureOpenAIEmbeddings(...