Sanitize agent roles to ensure valid directory names (#1037)

This commit is contained in:
Joshua Harper
2024-08-10 08:50:38 -04:00
committed by GitHub
parent c0005e112e
commit 817a838015

View File

@@ -47,7 +47,7 @@ class RAGStorage(Storage):
os.environ["OPENAI_API_KEY"] = "fake"
agents = crew.agents if crew else []
agents = [agent.role for agent in agents]
agents = [self._sanitize_role(agent.role) for agent in agents]
agents = "_".join(agents)
config = {
@@ -77,6 +77,12 @@ class RAGStorage(Storage):
self.app.llm = FakeLLM()
if allow_reset:
self.app.reset()
def _sanitize_role(self, role: str) -> str:
"""
Sanitizes agent roles to ensure valid directory names.
"""
return role.replace('\n', '').replace(' ', '_').replace('/', '_')
def save(self, value: Any, metadata: Dict[str, Any]) -> None:
self._generate_embedding(value, metadata)