Yuri Marx · May 29, 2025 go to post

Mr Cemper, your articles, app reviews, apps and contributions to the community are the fuel for our work. Your app reviews are like the New York Times' bestselling books list to us. I am very happy with your words, which encourage me to continue contributing.

Yuri Marx · May 29, 2025 go to post

if you open the collection, the adresses point to remote address. I did this to allows users test using postman, but I will change to swagger ui address. 

The idea is stop with status clarification, but I did the clarification and anyone reviewed yet

Yuri Marx · May 28, 2025 go to post

You right, many records about EnsLib.SQL.Snapshot, do you have some tip about it?

Yuri Marx · Apr 21, 2025 go to post

I changed the github source code for docker-compose.yml file to not use GPU, try to clone the project again

Yuri Marx · Apr 19, 2025 go to post

Hi, you dont have GPU enabled to use, so into your docker-compose.yml file replace ollama service with this:


  ollama:
    image: ollama/ollama:latest
    ports:
      - 11434:11434
    volumes:
      - ./model_files:/model_files
      - .:/code
      - ./ollama:/root/.ollama
    container_name: ollama
    pull_policy: always
    tty: true
    restart: always
    entrypoint: ["/usr/bin/bash", "/model_files/run_ollama.sh"]
    networks:
      - iris-llm2-network

Yuri Marx · Apr 7, 2025 go to post

Thanks experts and community. I learned a lot about Intersystems AI stack.

Yuri Marx · Mar 16, 2025 go to post

If this functionality allows partitioning by business criteria, such as date of sale, or store that sold it, it is possible to obtain greater performance in queries that use the same criteria.

Yuri Marx · Jan 28, 2025 go to post

Thanks community, I hope deliver many new apps to you this year

Yuri Marx · Jan 26, 2025 go to post

Try it:

IRISConnection IRISConnect = new IRISConnection();
 IRISConnect.ConnectionString = "Server = " + host 
                + "; Port = " + port + "; Namespace = " + Namespace 
                + "; Password = " + password + "; User ID = " + username;
 IRISConnect.Open();