⚡️ Speed up method OpenAIGuardrailBase.get_user_prompt by 26%
          #155
        
          
      
      
        
          +57
        
        
          −61
        
        
          
        
      
    
  
  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.
  
    
  
    
📄 26% (0.26x) speedup for
OpenAIGuardrailBase.get_user_promptinlitellm/proxy/guardrails/guardrail_hooks/openai/base.py⏱️ Runtime :
459 microseconds→364 microseconds(best of92runs)📝 Explanation and details
The optimized code achieves a 26% speedup through two key optimizations:
1. Efficient String Concatenation in
convert_content_list_to_str:texts += text_content) which is O(n²) due to Python string immutability - each concatenation creates a new string objecttext_parts.append()) followed by"".join()which is O(n) - strings are joined in a single operation2. Improved Message Processing in
get_user_prompt:messages[start:end]) to extract the user message block in one operation, then processes with list comprehension and single joinPerformance Benefits by Test Case:
The optimizations are particularly effective for scenarios with multiple user messages or complex content structures, where string concatenation overhead was most significant in the original implementation.
✅ Correctness verification report:
🌀 Generated Regression Tests and Runtime
To edit these changes
git checkout codeflash/optimize-OpenAIGuardrailBase.get_user_prompt-mhdd7ac6and push.