OCI GenAI Python Starters

OCI GenAI Python Starters: a few small demos to get started

Every time I want to try something new on OCI Generative AI, I end up needing the same thing: one tiny Python example that actually works. Not a full framework. Not a polished app. Just a small script with the right config, the right endpoint, and one clear path from “I have credentials” to “okay, it runs.” After rebuilding those snippets a few times, I put them in one repo: OCI GenAI Python Starters . ...

April 27, 2026 · 2 min · Enrico Pesce
Building a Modern Translation Service with Oracle Cloud Infrastructure's Generative AI

Building a Modern Translation Service with Oracle Cloud Infrastructure's Generative AI

The Challenge with Modern Translation Traditional translation services often struggle with context, idioms, and the subtle nuances that make language beautiful and meaningful. As businesses become increasingly global, there’s a growing need for translation services that can handle these complexities while maintaining security, scalability, and cost-effectiveness. Enter OCI Generative AI Oracle Cloud Infrastructure’s Generative AI service offers a compelling solution to these challenges. Unlike conventional translation APIs, OCI’s service leverages advanced language models that understand context and cultural nuances, making it an ideal choice for enterprise applications. ...

December 18, 2024 · 3 min · Enrico Pesce
OCI Functions a Python example

OCI Functions a Python example

The OCI Function service allows you to run code on an infrastructure that you don’t have to manage, in a scalable and automated way. This concept is called “serverless” because the end user will no longer have to worry about managing any infrastructure to run his own code. OCI implements what is the FN open source project, the project has been integrated with Oracle cloud services and is based on the execution of code inside a container, therefore it can potentially support any programming language and any type of container on x86 architecture, moreover, it is not strictly linked with the Oracle infrastructure and you can easily switch between different FN environments. ...

March 20, 2023 · 4 min · Enrico Pesce