Update main.py
Browse files
main.py
CHANGED
@@ -404,12 +404,12 @@ async def construction_NCS(competenceList):
|
|
404 |
listEmplois = finals_df.values.tolist()
|
405 |
stringEmplois = ''
|
406 |
for i in range(0,len(listEmplois)):
|
407 |
-
stringEmplois += "\n✔️ Emploi : " + str(listEmplois[i][0]) + ";\nContrat : " + str(listEmplois[i][1]) + ";\nCompétences professionnelles : " +
|
408 |
await cl.sleep(1)
|
409 |
listEmplois_name = f"Liste des emplois"
|
410 |
text_elements = []
|
411 |
text_elements.append(
|
412 |
-
cl.Text(content="Question : " + competenceList + "\n\nRéponse :\n" + stringEmplois, name=listEmplois_name)
|
413 |
)
|
414 |
await cl.Message(author="Datapcc : 🌐🌐🌐",content="👨💼 Source France Travail : " + listEmplois_name, elements=text_elements).send()
|
415 |
await cl.sleep(1)
|
|
|
404 |
listEmplois = finals_df.values.tolist()
|
405 |
stringEmplois = ''
|
406 |
for i in range(0,len(listEmplois)):
|
407 |
+
stringEmplois += "\n✔️ Emploi : " + str(listEmplois[i][0]) + ";\nContrat : " + str(listEmplois[i][1]) + ";\nCompétences professionnelles : " + str(listEmplois[i][3]) + ";\n" + "Salaire : " + str(listEmplois[i][6]) + ";\nQualification : " + str(listEmplois[i][5]) + ";\nLocalisation : " + str(listEmplois[i][7]) + ";\nExpérience : " + str(listEmplois[i][2]) + ";\nNiveau de qualification : " + str(listEmplois[i][8]) + ";\nDescription de l'emploi : " + str(listEmplois[i][4]) + "\n"
|
408 |
await cl.sleep(1)
|
409 |
listEmplois_name = f"Liste des emplois"
|
410 |
text_elements = []
|
411 |
text_elements.append(
|
412 |
+
cl.Text(content="Question : " + competenceList + "\n\nRéponse :\n" + stringEmplois.replace('{','').replace('}',''), name=listEmplois_name)
|
413 |
)
|
414 |
await cl.Message(author="Datapcc : 🌐🌐🌐",content="👨💼 Source France Travail : " + listEmplois_name, elements=text_elements).send()
|
415 |
await cl.sleep(1)
|