Pesquisar

Anúncio
· Out. 8

[Video] Before the Lightbulb: Understanding the First Phase of the AI Revolution in Medicine

Hey Community!

We're happy to share the next video in the "Code to Care" series on our InterSystems Developers YouTube:

⏯  Before the Lightbulb: Understanding the First Phase of the AI Revolution in Medicine

This episode features Dr. Peter Lee, President of Microsoft Research and co-author of The AI Revolution in Medicine, in a discussion on the early stages of generative AI development. Dr. Lee draws parallels between today’s AI advancements and historical technological milestones such as electricity and the transistor, describing the current moment as a “pre-lightbulb” era - filled with potential yet far from realizing its full impact. The conversation explores both the opportunities and challenges of AI, with a focus on healthcare applications, such as ambient clinical intelligence, which demonstrates early yet meaningful progress in transforming clinical practice.

Presenters: 
🗣 @Don Woodlock, Head of Global Healthcare Solutions, InterSystems
🗣 Dr. Peter Lee, President, Microsoft Research

Enjoy watching, and subscribe for more videos! 👍

Discussão (0)1
Entre ou crie uma conta para continuar
Resumo
· Out. 8

InterSystems Community Q&A Monthly Newsletter #53

Top new questions
Can you answer these questions?
#InterSystems IRIS
#HealthShare
#InterSystems IRIS for Health
#Caché
#Ensemble
#53Monthly Q&A fromInterSystems Developers
Pergunta
· Out. 8

How are you passing Intersystems credentials to your REST API apps, i.e. axios

Hi:

I see a lot of cool REST apps and i'm trying to host something in the TIE using REST/Axios with VITE. 

At the moment i will probably host the application in web applications in Intersytems. 

For authorisation and getting the logged in user and password to any app, is there a standard people are doing? 

I.e. for axios you might have this from the app

auth: {
        username: apiUser,
        password: apiPass
      }

But surely you want to pass through credentials from the IRIS logged in user, or alternatively pass the credential request to IRIS API to first receive the data. How is this done in any of the projects you have done? I for note don't remember it covered in the coffeemaker app i did a long time ago

8 Comments
Discussão (8)3
Entre ou crie uma conta para continuar
Anúncio
· Out. 8

Nouvelle interface du DC AI Chat !

Bonjour à tous,

Nous sommes ravis d'annoncer une mise à jour importante du Chat IA de la Communauté des développeurs : il est désormais doté d'une toute nouvelle interface !

Grâce à cette mise à jour, votre expérience devient plus fluide et plus intuitive :

  • Navigation simplifiée dans vos chats
  • Historique et réponses plus clairs en un coup d'œil
  • Mémorisation transparente du contexte pour des conversations naturelles

Comme auparavant, l'expérience est optimisée par InterSystems IRIS Vector Search, garantissant des interactions rapides, contextuelles et hautement pertinentes.

Des fonctionnalités anciennes et nouvelles sont disponibles :

  1. Masquer le panneau latéral
  2. Démarrer une nouvelle discussion
  3. Consulter l'historique des discussions
  4. Partager la discussion (à deux endroits)
  5. Copier le texte généré
  6. Demander à la communauté : cliquez pour créer une nouvelle publication sur la communauté des développeurs
  7. Choisir les sources

Nous aimerions connaître votre avis sur l'exactitude des réponses ; n'hésitez donc pas à nous laisser un pouce vers le haut ou vers le bas.

Essayez la nouvelle interface dès aujourd'hui et découvrez comment elle améliore votre expérience ! N'hésitez pas à partager vos commentaires sur l'interface utilisateur et l'expérience utilisateur ci-dessous !

Discussão (0)1
Entre ou crie uma conta para continuar
Artigo
· Out. 8 3min de leitura

IRIS API Nativa para ObjectScript

Parece-me que, por alguma razão, isto não chegou à documentação oficial e aparenta ser pouco conhecido, embora já tenha sido implementado no IRIS 2020.1.

Graças a @Dan Pasco, obtive uma pista sobre as classes envolvidas. Usei a sequência recomendada de como utilizá-lo. Tudo foi retirado diretamente da Referência de Classe e eu apenas compilei para criar uma primeira visão geral.

A API Nativa para ObjectScript segue a API utilizada em outras plataformas de linguagem. Começa com uma API estática que permite ao usuário conectar-se a um Namespace do IRIS, seja local ou remoto, usando uma Conexão Iris (Iris Connection). A interface de conexão permite então que o usuário instancie a classe da API Nativa do IRIS  (%Net.DB.Iris). Essa instância pode ser usada para acessar Arrays Globais do IRIS, gerenciar transações, invocar funções e métodos implementados em rotinas ou classes, e instanciar iteradores remotos. 

%Net.DB.DataSource

Esta classe implementa a interface DataSource da API Nativa do IRIS para Object Script. No momento, essa interface consiste unicamente no método CreateConnection. 

CreateConnection aceita os parâmetros url, port, namespace, user e pwd. Consulte %Net.DB.Connection para mais informações sobre esses parâmetros.. CreateConnection() retorna uma instância de %Net.DB.Connection.

host input O nome ou endereço do host, padrão é127.0.0.1
port input A porta na qual se conectar.
namespace input O namespace para se conectar.

user

input O nome do usuário.
pwd input Senha do usuário.
timeout input O número de segundos para aguardar que a conexão seja estabelecida. Opcional. 
logfile input O nome do arquivo a ser usado para logging. Se especificado, a atividade de conexão será registrada nesse arquivo. Opcional.
  return Uma oref referenciando uma instância de %Net.DB.Connection

 

 %Net.DB.Connection

Esta classe implementa a interface Connection da API Nativa do IRIS para Object Script. Esta classe nunca deve ser instanciada diretamente, apenas através de %Net.DB.DataSource usando a função CreateMethod().

A interface pública para esta classe inclui apenas os itens especificados aqui. Todos os outros membros são internos.

Host property O host especificado ao estabelecer a conexão.
Port property A porta à qual esta conexão está conectada. 
Namespace property O namespace ao qual esta conexão está conectada. 
Timeout property O valor de timeout especificado ao estabelecer a conexão.
IsClosed method Retorna true se esta instância de conexão não estiver mais conectada.
Close method Fecha esta conexão. 
CreateIris method Retorna uma instância de %Net.DB.Iris.

 

%Net.DB.Iris

Esta classe implementa o conjunto primário  de funções da API Nativa do IRIS para Object Script.

  Os únicos outros membros da API Nativa do IRIS que não são implementados por esta classe são implementados por % Net.DB.DataSource and %Net.DB.Connection.
Esta classe nunca deve ser instanciada diretamente.
A maneira correta de instanciar esta classe é invocar o método CreateIris() usando uma instância de %Net.DB.Connection.

Resumo dos métodos:

 

GitHub

1 Comment
Discussão (1)2
Entre ou crie uma conta para continuar