Skip to content

Commit

Permalink
Revert __str__ implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
kaancayli committed Feb 21, 2024
1 parent 588a44b commit 578f9d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/pipeline/shared/summary_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def __repr__(self):
return f"{self.__class__.__name__}(llm={self.llm})"

def __str__(self):
return f"(ref at {id(self)}) {self.__class__.__name__}(implementation_id={self.implementation_id}, llm={self.llm})"
return f"{self.__class__.__name__}(llm={self.llm})"

def __call__(self, query: str, **kwargs) -> str:
"""
Expand Down

0 comments on commit 578f9d8

Please sign in to comment.