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 includes several updates to the
agixt/providers
module, primarily focusing on renaming classes and parameters to improve clarity and consistency across different providers. Additionally, a newRotationProvider
class has been introduced.The most important changes include:
Provider Class Renaming and Parameter Updates:
agixt/providers/anthropic.py
: Renamed class fromClaudeProvider
toAnthropicProvider
and updated parameter names to includeANTHROPIC_
prefix.agixt/providers/azure.py
: Updated parameter names to includeAZURE_
prefix.agixt/providers/default.py
: Updated parameter names to includeDEFAULT_
prefix.agixt/providers/ezlocalai.py
: Updated parameter names to includeEZLOCALAI_
prefix.agixt/providers/google.py
: Updated parameter names to includeGOOGLE_
prefix.agixt/providers/gpt4free.py
: AddedGPT4FREE_MAX_TOKENS
parameter.agixt/providers/huggingface.py
: Updated parameter names to includeHUGGINGFACE_
prefix.agixt/providers/openai.py
: Updated parameter names to includeOPENAI_
prefix and removedSYSTEM_MESSAGE
parameter. [1] [2]New Class Introduction:
agixt/providers/rotation.py
: Introduced a newRotationProvider
class to manage inference using multiple providers with token limits.