From aee1eff4ec29018b70af2ad4c172f8c5889d6eb0 Mon Sep 17 00:00:00 2001 From: evelynmitchell Date: Wed, 27 Nov 2024 19:56:23 -0700 Subject: [PATCH] whitespace --- new_features_examples/persistent_legal_agent.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/new_features_examples/persistent_legal_agent.py b/new_features_examples/persistent_legal_agent.py index 65e8d61a..309f5708 100644 --- a/new_features_examples/persistent_legal_agent.py +++ b/new_features_examples/persistent_legal_agent.py @@ -14,7 +14,7 @@ Your role is to help draft preliminary versions of common VC legal documents whi 5. Maintain consistency across related documents 6. Output only when document is complete and verified -Remember: All output should be marked as 'DRAFT' and require professional legal review.""" +Remember: All output should be marked as 'DRAFT' and require professional legal review.""" # noqa: W291, W293 def create_vc_legal_agent(): @@ -67,7 +67,7 @@ def generate_legal_document(agent, document_type, parameters): Returns: str: The generated document content - """ + """ # noqa: W291, W293 prompt = f""" Generate a {document_type} with the following parameters: {parameters} @@ -80,7 +80,7 @@ def generate_legal_document(agent, document_type, parameters): 5. Output when complete Include [REQUIRES LEGAL REVIEW] tags for sections needing attorney attention. - """ + """ # noqa: W291, W293 return agent.run(prompt)