arvind6599 commited on
Commit
937c9f0
·
1 Parent(s): 12afc0e

Missing example input for llm2

Browse files
Files changed (2) hide show
  1. app.py +5 -0
  2. hg_secrets.py +33 -0
app.py CHANGED
@@ -446,6 +446,11 @@ The target company is Kirkland & Ellis LLP.
446
  ```
447
 
448
  **Step 2 (LLM2 for Paragraphs):**
 
 
 
 
 
449
  - Example Output:
450
  ```
451
  Buyer: Ecolab Inc.
 
446
  ```
447
 
448
  **Step 2 (LLM2 for Paragraphs):**
449
+ - Example Input:
450
+ ```
451
+ This Stock and Asset Purchase Agreement is entered into as of October 28, 2021, among Purolite Corporation, a Delaware corporation, along with Stefan E. Brodie and Don B. Brodie (collectively referred to as the Sellers), and Ecolab Inc., a Delaware corporation, as the Purchaser. Additionally, Gibson, Dunn & Crutcher LLP, as an independent third-party representative, is engaged for specific advisory roles outlined in this Agreement.
452
+ ```
453
+
454
  - Example Output:
455
  ```
456
  Buyer: Ecolab Inc.
hg_secrets.py ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ print(
2
+ """
3
+ This Stock and Asset Purchase Agreement is entered into as of October 28, 2021, among Purolite Corporation, a Delaware corporation, along with Stefan E. Brodie and Don B. Brodie (collectively referred to as the Sellers), and Ecolab Inc., a Delaware corporation, as the Purchaser. Additionally, Gibson, Dunn & Crutcher LLP, as an independent third-party representative, is engaged for specific advisory roles outlined in this Agreement.
4
+ ---
5
+ This Agreement shall be governed by and construed in accordance with the internal laws of the State of Delaware, without giving effect to any choice or conflict of law provision. Each clause within this Agreement shall be interpreted independently, and the invalidity of one clause shall not affect the enforceability of the remaining provisions. Headings are for convenience only and shall not affect the interpretation of this Agreement. Nothing herein shall be construed as limiting or waiving any rights or obligations under applicable law unless expressly stated.
6
+ ---
7
+ Such notices, demands, and other communications shall be directed to the Parties at their respective addresses. One Party may be contacted at:
8
+ 1 Ecolab Place
9
+ St. Paul, Minnesota 55102
10
+ Attention: General Counsel
11
+ with a copy (which shall not constitute notice) to:
12
+ Shearman & Sterling LLP
13
+ 599 Lexington Avenue
14
+ New York, New York 10022
15
+ Attention: Adam Miller
16
+ Another Party may be reached at:
17
+ Purolite Corporation
18
+ 2201 Renaissance Boulevard
19
+ King of Prussia, Pennsylvania 19406
20
+ Attention: Stefan E. Brodie; Howard Brodie
21
+ with a copy (which shall not constitute notice) to:
22
+ Cleary Gottlieb Steen & Hamilton LLP
23
+ One Liberty Plaza
24
+ New York, New York 10006
25
+ Attention: John Reynolds; Sarah Lee
26
+ Additional communications relating to the role of the third-party representative shall be directed to:
27
+ Gibson, Dunn & Crutcher LLP
28
+ 200 Park Avenue
29
+ New York, New York 10166
30
+ Attention: Jane Smith
31
+ ---
32
+ All references to the singular include the plural and vice versa, and all references to any gender include all genders. The Parties agree that any ambiguities in the language of this Agreement shall not be construed against either Party. Section headings used in this Agreement are for reference only and shall not affect the meaning or interpretation of any provision. "
33
+ """.split("---"))