We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 958914b commit 210021dCopy full SHA for 210021d
1 file changed
langfuse/model.py
@@ -402,18 +402,6 @@ def compile(self, **kwargs) -> List[ChatMessageDict]:
402
if "content" in chat_message and "role" in chat_message
403
]
404
405
- def set(self, placeholders: Dict[str, List[ChatMessageDict]]) -> "ChatPromptClient":
406
- """Sets the internal placeholders to the given dict
407
-
408
- Args:
409
- placeholders: Dictionary mapping placeholder names to lists of chat messages
410
411
- Returns:
412
- ChatPromptClient: Self for method chaining
413
- """
414
- self.placeholder_fillins = placeholders.copy()
415
- return self
416
417
def update(
418
self, placeholders: Dict[str, List[ChatMessageDict]]
419
) -> "ChatPromptClient":
0 commit comments