fix: OpenAI decorators: Optional aiConnectionName param added #283
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces support for specifying an
ai_connection_name
parameter across multiple methods and classes in theazure/functions/decorators
module. This parameter allows users to configure AI service connectivity settings, providing flexibility for both Azure OpenAI and non-Azure OpenAI services. The changes also include updates to the corresponding test cases to validate the new functionality.Enhancements to AI Service Configuration:
ai_connection_name
Parameter:ai_connection_name
parameter in several methods (text_completion_input
,assistant_post_input
,embeddings_input
,semantic_search_input
, andembeddings_store_output
) withinazure/functions/decorators/function_app.py
. This parameter enables users to specify configuration settings for AI service connectivity, with fallback options to environment variables for both Azure OpenAI and non-Azure OpenAI services. [1] [2] [3] [4] [5]__init__
methods inazure/functions/decorators/openai.py
to include theai_connection_name
parameter, ensuring it is properly stored and utilized in various AI-related operations. [1] [2] [3] [4] [5]Test Coverage Updates:
tests/decorators/test_openai.py
to include scenarios validating theai_connection_name
parameter for various input types, ensuring the parameter is correctly passed and serialized. [1] [2] [3]These changes improve the flexibility and configurability of AI service integrations in the Azure Functions decorators, while maintaining robust test coverage for the new functionality.