Release v3 is currently in beta. This documentation reflects the features and
functionality in progress and may change before the final release.
pai.config.set()
.
Then, every time you use the .chat()
method, it will use the configured LLM.
LiteLLM
LiteLLM provides a unified interface to multiple LLM providers including OpenAI, Anthropic, Google, and others. Install the pandasai-litellm extension:OpenAI models
Install the pandasai-openai extension:Azure OpenAI models
Install the pandasai-openai extension:How to set up any LLM?
LiteLLM provides a unified interface to interact with 100+ LLM models from various providers including OpenAI, Azure, Anthropic, Google, AWS, Hugging Face, and many more. This makes it easy to switch between different LLM providers without changing your code. Install the pandasai-litellm extension:- OpenAI (gpt-4.1-mini, gpt-4, etc.)
- Anthropic (claude-2, claude-instant-1, etc.)
- Google (gemini-pro, palm2, etc.)
- Azure OpenAI
- AWS (Bedrock, SageMaker)
- Mistral AI
- Cohere
- Hugging Face
Determinism
Determinism in language models refers to the ability to produce the same output consistently given the same input under identical conditions. This characteristic is vital for:- Reproducibility: Ensuring the same results can be obtained across different runs, which is crucial for debugging and iterative development.
- Consistency: Maintaining uniformity in responses, particularly important in scenarios like automated customer support, where varied responses to the same query might be undesirable.
- Testing: Facilitating the evaluation and comparison of models or algorithms by providing a stable ground for testing.
The Role of temperature=0
The temperature parameter in language models controls the randomness of the output. A higher temperature increases diversity and creativity in responses, while a lower temperature makes the model more predictable and conservative. Settingtemperature=0
essentially turns off randomness, leading the model to choose the most likely next word at each step. This is critical for achieving determinism as it minimizes variance in the model’s output.
Implications of temperature=0
- Predictable Responses: The model will consistently choose the most probable path, leading to high predictability in outputs.
- Creativity: The trade-off for predictability is reduced creativity and variation in responses, as the model won’t explore less likely options.
Utilizing seed for Enhanced Control
The seed parameter is another tool to enhance determinism. It sets the initial state for the random number generator used in the model, ensuring that the same sequence of “random” numbers is used for each run. This parameter, when combined withtemperature=0
, offers an even higher degree of predictability.
Example:
Current Limitation:
AzureOpenAI Instance
While the seed parameter is effective with the OpenAI instance in our library, it’s important to note that this functionality is not yet available for AzureOpenAI. Users working with AzureOpenAI can still usetemperature=0
to reduce randomness but without the added predictability that seed offers.
System fingerprint
As mentioned in the documentation (OpenAI Seed) :Sometimes, determinism may be impacted due to necessary changes OpenAI makes to model configurations on our end. To help you keep track of these changes, we expose the system_fingerprint field. If this value is different, you may see different outputs due to changes we’ve made on our systems.
Workarounds and Future Updates
For AzureOpenAI Users: Rely ontemperature=0
for reducing randomness. Stay tuned for future updates as we work towards integrating seed functionality with AzureOpenAI.
For OpenAI Users: Utilize both temperature=0
and seed for maximum determinism.