Find

Announcement
· 7 hr ago

[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! 👍

Discussion (0)1
Log in or sign up to continue
Digest
· 10 hr ago

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
Question
· 10 hr ago

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

1 new Comment
Discussion (1)1
Log in or sign up to continue
Article
· 13 hr ago 3m read

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 new Comment
Discussion (1)2
Log in or sign up to continue
Announcement
· 15 hr ago

New interface of the DC AI Chat!

Hey Community,

We’re excited to announce a significant update to the Developer Community AI Chat — it now comes with a brand-new interface!

With this update, your experience becomes smoother and more intuitive:

  • Easier navigation through your chats
  • Clearer history and answers at a glance
  • Seamless context retention for natural conversations

Just like before, the experience is powered by InterSystems IRIS Vector Search, ensuring your interactions remain quick, context-aware, and highly relevant.

There are old and new features available:

  1. hide the side panel
  2. start a new chat
  3. see the chat history
  4. share chat (in two places)
  5. copy generated text
  6. ask community - click to create a new post on the Developer Community
  7. choose the sources

We would love to receive your feedback on the correctness of the answers, so please don't forget to give them a thumbs up or down.

Try out the new interface today and see how it enhances your experience! Don't forget to share your feedback regarding the UI/UX in the comments below!

Discussion (0)2
Log in or sign up to continue