Riza's Avatar

Riza

@riza.io.bsky.social

AI writes code. Riza runs it.

13 Followers  |  2 Following  |  56 Posts  |  Joined: 19.04.2024  |  1.7103

Latest posts by riza.io on Bluesky

Preview
Partnering with Daytona | Riza Blog

We've partnered with Daytona to provide a new home for Riza's users to continue running LLM-generated Python and JavaScript in a safe, isolated cloud environment.

riza.io/blog/partner...

All Riza users will get a unique coupon code to redeem $1,000 in Daytona cloud credits when they migrate.

11.08.2025 16:09 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Preview
Shutting down the Code Interpter API | Riza Blog

Some important news: we're shutting down the hosted Code Interpreter API on October 1st, 2025. Please use the time to migrate your projects to an alternative provider.

Read more here: riza.io/blog/shuttin...

28.07.2025 17:52 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
How to Add Integrations to Claude (Remote MCP Server)
YouTube video by Riza How to Add Integrations to Claude (Remote MCP Server)

Yesterday, @anthropic.com shipped a big upgrade: You can now add any remote MCP server to Claude by dropping in a URL.

So it's now super easy to add powerful code execution capabilities to Claude with Riza.

🎞️ For a quick demo, check out our new video: www.youtube.com/watch?v=CU6E...

02.05.2025 17:35 β€” πŸ‘ 1    πŸ” 1    πŸ’¬ 0    πŸ“Œ 0
Funding announcement graphic: Riza - $2.7M seed round

Funding announcement graphic: Riza - $2.7M seed round

I’m stoked to announce @riza.io's $2.7 million seed funding led by matrix.vc with participation from 43 and a handful of our favorite angels.

riza.io/blog/riza-ra...

16.04.2025 17:02 β€” πŸ‘ 1    πŸ” 1    πŸ’¬ 1    πŸ“Œ 0
Preview
PromptLayer empowers users to customize AI agents & evals with Riza | Riza Customers

Results in just 3 months:
β–Ί 1M+ code executions
β–Ί Fewer feature requests
β–Ί New user-driven workflows

Get the full scoop: riza.io/customers/pr...

28.03.2025 18:08 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0
Post image

So they integrated Riza to enable custom code execution in 2 products:
πŸ”ΉEvals - So users can build custom scoring functions
πŸ”ΉAgents - So users can freely fetch and manipulate data, invoke callbacks, and more

28.03.2025 18:08 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0
Post image

PromptLayer's users needed flexibility beyond the 20+ predefined transformation types offered in their AI workflow builders.

28.03.2025 18:08 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

The best AI systems aren't built by engineers alone. Prompt engineering requires iteration, testingβ€”and domain expertise.

That's why PromptLayer is designed to let domain experts like lawyers, doctors, and therapists tune prompts.

28.03.2025 18:08 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0
Post image

We chatted with PromptLayer to learn how they've enabled users to customize AI workflows and evalsβ€”with Riza. riza.io/customers/pr...

28.03.2025 18:08 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 1
A presentation I gave at Founder's Garage. Current slide is a photo of me giving a presentation when I worked at Twilio in 2012.

A presentation I gave at Founder's Garage. Current slide is a photo of me giving a presentation when I worked at Twilio in 2012.

Gave a quick talk about Claude and it's ability to not only use tools, but write its own on the fly (powered by @riza.io of course).

07.03.2025 23:21 β€” πŸ‘ 6    πŸ” 1    πŸ’¬ 0    πŸ“Œ 0
Preview
Data Extraction - Riza Run LLM-generated code to extract data from a website

Try it yourself!

πŸ“š Full guide with links to the data: docs.riza.io/guides/use-c...

πŸ’» GitHub example: github.com/riza-io/exam...

New to Riza? Get started here: docs.riza.io/introduction...

07.03.2025 21:10 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Riza runs Python, JavaScript, Ruby, and PHP securely with any libraries you want to use.

In this example, Riza empowered the LLM to write and run extraction code using BeautifulSoup.

07.03.2025 21:10 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

To securely execute code written by LLMs, use @riza.io

Code written by LLMs is "untrusted"β€”it might contain harmful side-effects. You protect your systems by running that code on Riza, not your production environment.

07.03.2025 21:10 β€” πŸ‘ 2    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0
Post image

The workflow is simple:

07.03.2025 21:10 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

Why? Two major benefits:

1️⃣ Reliability: LLMs often miss data when extracting directly
2️⃣ Speed & cost savings: Make just 1 call to an LLM to generate code, using a small subset of data

07.03.2025 21:10 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

The key insight:

Don't ask LLMs to extract the data directly. Ask them to write the extraction code.

07.03.2025 21:10 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0
Post image

Instead, here's how we solved it:

1️⃣ We fed sample HTML from the site to an LLM
2️⃣ We had the LLM write targeted extraction code
3️⃣ Riza executed that code securely
4️⃣ We got back clean, structured CSV data

07.03.2025 21:10 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

Manual scraping is tediousβ€”especially when you're extracting data from many different websites.

LLMs can help. But when we asked OpenAI to extract a list of all the appraisers from the full HTML, it gave us a partial list.

07.03.2025 21:10 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0
Post image

The California Bureau of Real Estate Appraisers provides a list of all current and recently-licensed appraisers (link below πŸ‘‡).

13,000 appraisers are shown in batches of 300, with no bulk download option:

07.03.2025 21:10 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0
Post image

A lot of commercially-useful data is stuck online: in government sites to enterprise portals.

LLMs can help you extract it, fast.

Let's see an example:

07.03.2025 21:10 β€” πŸ‘ 3    πŸ” 1    πŸ’¬ 1    πŸ“Œ 0
Preview
Data Analysis - Riza Run LLM-generated code to analyze data and produce graphs

Try it yourself!

πŸ“š Full guide, with code and links to full SF employee salary dataset: docs.riza.io/guides/use-c...

πŸ’» GitHub: github.com/riza-io/exam...

New to Riza? Get started here: docs.riza.io/introduction

28.02.2025 17:10 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

In this example, Riza empowered Claude to run Python code using `pandas`, `matplotlib`, and `seaborn`.

Riza executes Python, JavaScript, Ruby, and PHP securely with any libraries you want to use.

28.02.2025 16:49 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

To securely execute code written by LLMs, use Riza's Execute Function API.

This API handles structured inputs / outputs, so your data analysis pipeline is reliable and debuggable.

28.02.2025 16:49 β€” πŸ‘ 1    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0
Post image

The workflow is simple:

28.02.2025 16:49 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

Instead, here's how we made the chart:

1. πŸ”ŽWe fed a few lines of the salary data to an LLM (Claude)
2. ⭐The LLM wrote Python code to analyze and visualize trends
3. πŸ”’Riza executed that code securely
4. πŸ“ŠWe got back a clear chart

28.02.2025 16:49 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

Data is everywhere: from personal to business to government.

But data is time-consuming to analyze by hand.

For example, San Francisco publishes all city employee salaries (link below πŸ‘‡).

In the past, you had to do a lot of work to make this data useful.

28.02.2025 16:49 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0
Post image

Have more data than data scientists? LLMs can help.

Here's a chart Anthropic's Claude generated using Riza that shows trends in San Francisco city employee salaries.

And you can repeat this infinitely over other data.

Here's how:

28.02.2025 16:49 β€” πŸ‘ 2    πŸ” 2    πŸ’¬ 1    πŸ“Œ 0

Instead, here's how we made the chart:

1. πŸ”ŽWe fed a few lines of the salary data to an LLM (Claude)
2. ⭐The LLM wrote Python code to analyze and visualize trends
3. πŸ”’Riza executed that code securely
4. πŸ“ŠWe got back a clear chart

28.02.2025 16:45 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 0    πŸ“Œ 0

Data is everywhere: from personal to business to government.

But data is time-consuming to analyze by hand.

For example, San Francisco publishes all city employee salaries (link below πŸ‘‡).

In the past, you had to do a lot of work to make this data useful.

28.02.2025 16:45 β€” πŸ‘ 0    πŸ” 0    πŸ’¬ 1    πŸ“Œ 0

Shipped a new version of the @riza.io self-hosted container image that can handle way more interesting JavaScript workloads.

What JS/TS libraries are good for plotting graphs these days?

14.02.2025 20:10 β€” πŸ‘ 1    πŸ” 1    πŸ’¬ 1    πŸ“Œ 0

@riza.io is following 2 prominent accounts