Hello, I am using this code
import pandas as pd
import os
from openai import OpenAI
from dotenv import load_dotenv
import plotly.express as px
import seaborn as sns
import matplotlib.pyplot as plt
import numpy as np
Loading API key and organization ID from a dotenv file
load_dotenv(dotenv_path=‘apikey.env.txt’)
Retrieving API key and organization ID from environment variables
APIKEY = os.getenv(“APIKEY”)
Creating an instance of the OpenAI client with the provided API key and organization ID
client = OpenAI(
api_key=APIKEY
)
client
But when I execute, this message appear: TypeError: Client.init() got an unexpected keyword argument ‘proxies’