Closed kmishmael closed 2 months ago
There are a couple of issues in the Azure OpenAI Pipe code:
r
NameError
allowed_params
functions
funcions
dataSources
data_sources
None
I've filed a PR for #245
There are a couple of issues in the Azure OpenAI Pipe code:
r
is not initialized and could cause aNameError
if an exception occurs beforer
is defined.allowed_params
set, wherefunctions
is misspelled asfuncions
. documentationdataSources
should be updated todata_sources
as referenced in the documentation.Proposed Solution
r
toNone
before the try block.funcions
tofunctions
in theallowed_params
set.dataSources
todata_sources
in theallowed_params
set.I've filed a PR for #245