Update main.py
Browse files
main.py
CHANGED
@@ -364,7 +364,7 @@ def rename(orig_author: str):
|
|
364 |
|
365 |
@cl.action_callback("listOfEntreprise")
|
366 |
async def on_action(action):
|
367 |
-
romeListArray = action.value
|
368 |
stringLsitOfEntreprise = await creation_liste_entreprises(arrayOfSecteur(romeListArray))
|
369 |
await cl.Message(
|
370 |
author="Datapcc : ๐๐๐", content=stringLsitOfEntreprise
|
@@ -509,7 +509,7 @@ async def construction_NCS(competenceList, chatProfile):
|
|
509 |
await cl.Message(author="Datapcc : ๐๐๐",content="๐ Source France Travail : " + listClesMetier_name, elements=text_ClesMetier).send()
|
510 |
await cl.sleep(1)
|
511 |
listOfEntreprises = [
|
512 |
-
cl.Action(name="listOfEntreprises", value=romeListArray, description="Afficher la liste des entreprises par code secteur d'actvitรฉs")
|
513 |
]
|
514 |
await cl.Message(author="Datapcc : ๐๐๐",content="๐ญ Afficher la liste des entreprises par code secteur d'actvitรฉs", actions=listOfEntreprises).send()
|
515 |
await cl.sleep(1)
|
|
|
364 |
|
365 |
@cl.action_callback("listOfEntreprise")
|
366 |
async def on_action(action):
|
367 |
+
romeListArray = ast.literal_eval(action.value)
|
368 |
stringLsitOfEntreprise = await creation_liste_entreprises(arrayOfSecteur(romeListArray))
|
369 |
await cl.Message(
|
370 |
author="Datapcc : ๐๐๐", content=stringLsitOfEntreprise
|
|
|
509 |
await cl.Message(author="Datapcc : ๐๐๐",content="๐ Source France Travail : " + listClesMetier_name, elements=text_ClesMetier).send()
|
510 |
await cl.sleep(1)
|
511 |
listOfEntreprises = [
|
512 |
+
cl.Action(name="listOfEntreprises", value=str(romeListArray), description="Afficher la liste des entreprises par code secteur d'actvitรฉs")
|
513 |
]
|
514 |
await cl.Message(author="Datapcc : ๐๐๐",content="๐ญ Afficher la liste des entreprises par code secteur d'actvitรฉs", actions=listOfEntreprises).send()
|
515 |
await cl.sleep(1)
|