You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
False# used by anthropic, to disable adding prefix to prompt
487
481
)
488
-
disable_copilot_system_to_assistant: bool= (
489
-
False# If false (default), converts all 'system' role messages to 'assistant' for GitHub Copilot compatibility. Set to true to disable this behavior.
490
-
)
482
+
disable_copilot_system_to_assistant: bool=False# If false (default), converts all 'system' role messages to 'assistant' for GitHub Copilot compatibility. Set to true to disable this behavior.
False# this is set to True when all elements in the list have a cache hit in the embedding cache, if true return the final_embedding_cached_response no need to make an API call
84
-
)
82
+
embedding_all_elements_cache_hit: bool=False# this is set to True when all elements in the list have a cache hit in the embedding cache, if true return the final_embedding_cached_response no need to make an API call
85
83
86
84
87
85
in_memory_cache_obj=InMemoryCache()
@@ -165,10 +163,11 @@ async def _async_get_cache(
165
163
"""
166
164
# Check if caching should be performed BEFORE doing expensive operations
0 commit comments