Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Init attribute is mutable and shared (not intended?) #926

Open
JunhaoWang opened this issue Apr 30, 2024 · 0 comments
Open

Init attribute is mutable and shared (not intended?) #926

JunhaoWang opened this issue Apr 30, 2024 · 0 comments
Labels
bug Something isn't working

Comments

@JunhaoWang
Copy link

from ragas.testset.filters import EvolutionFilter
a = EvolutionFilter(None)
b = EvolutionFilter(None)
a.evolution_elimination_prompt.name = "a"
print(a.evolution_elimination_prompt.name)
print(b.evolution_elimination_prompt.name)

this prints

a
a

not intended?

@JunhaoWang JunhaoWang added the bug Something isn't working label Apr 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant