fix: assign self.tracetools and add LiteLLM provider docs#56
Merged
wxai-space merged 2 commits intoJun 5, 2026
Merged
Conversation
The __init__ method accepted a tracetools parameter and passed it to _initialize_clients, but never stored it as self.tracetools. The later check 'hasattr(self, tracetools) and self.tracetools' was always False, making the Langfuse session_id assignment dead code. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
- Add LiteLLM section to docs/model_providers.md covering installation, usage, and model routing behavior - Update FAQ.md to mention the optional litellm provider Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Two changes:
Bugfix: Assign in so the Langfuse assignment at line 515 is no longer dead code. Previously, the accepted a parameter and passed it to , but never stored it as an instance attribute. The check was always , so the Langfuse session tracking was silently disabled.
Docs: Add LiteLLM provider documentation to covering installation (), usage (), and model routing behavior (model naming, api_key/base_url forwarding, drop_params). Also update to mention the optional provider in the supported providers section.
Test Plan
🤖 Generated with Claude Code