Encontrar

Artículo
· 16 sep, 2025 Lectura de 4 min

Run Your AI Agent with InterSystems IRIS and Local Models using Ollama

In the previous article, we saw how to build a customer service AI agent with smolagents and InterSystems IRIS, combining SQL, RAG with vector search, and interoperability.

In that case, we used cloud models (OpenAI) for the LLM and embeddings.

This time, we’ll take it one step further: running the same agent, but with local models thanks to Ollama.

Comentarios (0)1
Inicie sesión o regístrese para continuar
Artículo
· 16 sep, 2025 Lectura de 18 min
Comentarios (0)0
Inicie sesión o regístrese para continuar
Anuncio
· 16 sep, 2025

Ganadores de los Demo Games 2025

Hola Comunidad,

Estamos súper ilusionados y agradecidos a nuestros 52 compañeros de InterSystems que participaron en los 📺 Demo Games para Sales Engineers de InterSystems 📺 y crearon 19 vídeos increíbles.

Nuestros colegas de todo el mundo pusieron a prueba su creatividad, conocimientos técnicos y magia en las demos. Lo que comenzó como un concurso interno para mostrar habilidad técnica y excelencia en las demostraciones se convirtió en un auténtico escenario para la imaginación, con algunas propuestas que parecían menos demos y más cortometrajes, completos con actuación, storytelling e incluso un toque cinematográfico.

También queremos dar las gracias a todos los miembros de la Comunidad que se tomaron el tiempo de verlos y votar por vuestros favoritos. 

¡Llega la hora de anunciar a los ganadores!

🥇 1er puesto: Health Evolve: Transformando los Datos No Estructurados
por @Vishal Pallerla, @Erica Song, @Louis Kabelka, @Zelong Wang, @John Murtha

🥈 2º puesto: Eliminando el Desperdicio en las Cadenas de Suministro de la Sanidad
por @Georgia Gans, @Annie Tong, @Boris Mamkin

🥉 3er puesto: Plataforma de Agentes de IA para la Sanidad
por @Daniel Cole, @Jeff Morgan, @Raef Youssef, @Jose Ruperez, @Harry Tong, @Nicholai Mitchko

También queremos destacar a varios finalistas que recibieron la mayor cantidad de votos:

🏅 MyVitals: Conectando los Datos de Salud de Dispositivos Wearables con las Historias Clínicas (EHRs) usando InterSystems
por @Alberto Fuentes, @Pierre-Yves Duquesnoy, @Luis Angel Pérez Ramos

🏅 Aventuras en la Transformación de Datos con InterSystems IRIS
por @Kate Lau, @Merlin Wijaya, @Martyn Lee, @Bryan Hoon

🏅Empleado Autónomo Inteligente de Negocio (ABiC) – Combinando InterSystems BI e IA Generativa
por @Tomo Okuyama, @Nobuyuki Hata, @Tomoko Furuzono, @Mihoko Iijima 

¡Felicitemos a todos nuestros héroes que participaron en los Demo Games 2025!

 

Este ha sido realmente un concurso extraordinario, con demos increíbles, ideas valientes y una energía impresionante. ¡Gracias a todos por hacer de los Demo Games 2025 un evento tan inspirador e inolvidable! 👏

Comentarios (0)1
Inicie sesión o regístrese para continuar
Artículo
· 15 sep, 2025 Lectura de 3 min

IRISで Amazon s3(クラウドストレージAPI)を使用する方法

これは InterSystems FAQ サイトの記事です。

ビジネスサービスやビジネスオペレーションで EnsLib.CloudStorage.InboundAdapter アダプタを使用したり、%Net.Cloud.Storage.Client を使用することで、Amazon s3(クラウドストレージAPI)のファイルにアクセスすることが可能です。

いずれの場合も、事前に Javaランタイムをシステムにインストールし、インストールしたJavaランタイムの JAVA_HOME 情報を、管理ポータルにて設定する必要があります(手順は後述します)。


今回は、%Net.Cloud.Storage.Client クラスを使用したサンプルをご紹介します。
手順は以下のようになります。


【手順】

以下のS3パケットにアクセスする手順になります。

   

(1)  事前に、コマンドプロンプトにて aws コマンドを使用して動作確認をしておきます(S3に存在しているファイル一覧がプロンプトに返ればOKです)。

> aws s3 ls s3://kake-s3
2025-04-30 16:20:52         32 abc.txt
2025-04-30 16:14:00      21529 messages.log

もしくは

>aws s3 --endpoint-url https://s3.ap-northeast-1.amazonaws.com ls s3://kake-s3
2025-04-30 16:20:52         32 abc.txt
2025-04-30 16:14:00      21529 messages.log


(2) Javaをインストールします
Java Runtime Environment (JRE)s 1.8


(3) 管理ポータルで %Java_Gateway の設定を行います

管理ポータル:
システム管理 > 構成 > 接続性 > 外部言語サーバ > %Java_Server 編集
  クラスパス .;C:\InterSystems\iris\dev\java\lib\1.8\intersystems-cloudclient-1.x.x.jar;       バージョンにより異なります。
  Javaホーム C:\Program Files\Java\jre1.8.0_451\        Javaインストールフォルダ

       

保存後、%Java_Server を Start ※以下のようなログで起動します

 
(4) 以下のコマンドをターミナルで実行します。

set region="ap-northeast-1"
set credentialsFile=""
set endPoint=""
set client = ##class(%Net.Cloud.Storage.Client).CreateClient(,0,credentialsFile,region,.tSC,endPoint)

読む

set bucketName = "isj-s3"

/// String
set data = client.DownloadBlobToString(bucketName,"abc.txt")
zwrite data
// data="InterSystems Japan"_$c(13,10)_"インターシステムズジャパン"_$c(13,10)
// ファイルはBOMなし&UTF-8で保存しています

/// Stream
set stream = client.DownloadBlobToStream(bucketName, "messages.log")
set i=stream.Read(200)   ;; 先頭200バイト
zwrite i
//i="07/08/23-08:48:50:868 (14307) 0 [Generic.Event] Allocated 496MB shared memory"_$c(10)_"07/08/23-08:48:50:869 (14307) 0 [Generic.Event] 32MB global buffers, 80MB routine buffers, 64MB journal buffers, 6MB buffe"


書く

set x="あいうえお"_$C(13,10)_"かきくけこ"
do client.UploadBlobFromString(bucketName, "abc.txt", x)


閉じる

do client.Close()
Comentarios (0)0
Inicie sesión o regístrese para continuar
Pregunta
· 15 sep, 2025

Nursing Assignment Help

Nursing Assignment Help, is essential for students navigating the rigorous demands of nursing programs, especially in self-paced formats like Capella University's Flex Path. At NursFPXWriters.com, we provide professional support tailored to nursing students at the BSN, MSN, and DNP levels. Whether you're working on care plans, evidence-based practice papers, reflective journals, or complex leadership assessments like those in NURS FPX 4010, our expert writers deliver high-quality, plagiarism-free content aligned with academic standards. Our goal is to help you save time, improve your grades, and confidently meet your course objectives.

Comentarios (0)1
Inicie sesión o regístrese para continuar