Retour d’expérience de l’Hôpital Américain de Paris et démonstration d'InterSystems IntelliCare, un DPI intégrant l’IA dans les workflows métiers : cas d’usage et méthode.
Intervenants : 🗣 Félix Mamoudy, Directeur du Parcours Patient et de la Transformation Digitale, Hôpital Américain de Paris 🗣 Nicolas Eiferman, Directeur Général InterSystems France & Benelux 🗣 Dr Hervé Rivière, Directeur Médical InterSystems France
Abonnez-vous à notre chaîne YouTube pour plus de vidéos !
As part of a recent documentation technical project to optimize the search, I needed to use Embedded Python in my ObjectScript code. The main blocker was passing a Python list from a Python class method to a ObjectScript method. Sending the list by reference to the python method, populating it with the Insert() method, and returning the reference to the ObjectScript method resulted in an list with type %SYS.Python, a process that was straightforward but not efficient.
I explored an alternative method: converting a Python list to an ObjectScript list using JSON as the intermediary format. This approach appears to require less code and offers improved runtime performance.