AliInamdar commited on
Commit
4b39287
·
verified ·
1 Parent(s): 5b29c1b

Update utils/helper.py

Browse files
Files changed (1) hide show
  1. utils/helper.py +2 -3
utils/helper.py CHANGED
@@ -3,13 +3,12 @@ import os
3
  import pandas as pd
4
 
5
  os.system("pip install together")
6
- os.system("python3 -m pip install --no-cache-dir together")
7
-
8
 
9
  from together import Together
10
 
 
11
 
12
- client = Together(api_key=os.environ["tgp_v1_QxHjcs582Y4kSGPd5a2VyrKDD6S81ctp-M-rT_ioDNE"])
13
 
14
 
15
 
 
3
  import pandas as pd
4
 
5
  os.system("pip install together")
 
 
6
 
7
  from together import Together
8
 
9
+ api = "tgp_v1_QxHjcs582Y4kSGPd5a2VyrKDD6S81ctp-M-rT_ioDNE"
10
 
11
+ client = Together(api_key=os.environ["api"])
12
 
13
 
14