jonathanjordan21 commited on
Commit
d2422de
·
1 Parent(s): 1d776d0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -12,8 +12,8 @@ df = pd.read_csv('intent.csv', delimiter=';')
12
 
13
  data = [
14
  [
15
- f'Represent the document for retrieval of {x[desc]} information : ',
16
- x[message]
17
  ] for _,x in df.iterrows()
18
  ]
19
 
 
12
 
13
  data = [
14
  [
15
+ f'Represent the document for retrieval of {x["description"]} information : ',
16
+ x["message"]
17
  ] for _,x in df.iterrows()
18
  ]
19