Learn how to interact with this file using the Ouro SDK or REST API.
API access requires an API key. Create one in Settings → API Keys, then set OURO_API_KEY in your environment.
Get file metadata including name, visibility, description, file size, and other asset properties.
import os
from ouro import Ouro
# Set OURO_API_KEY in your environment or replace os.environ.get("OURO_API_KEY")
ouro = Ouro(api_key=os.environ.get("OURO_API_KEY"))
file_id = "2b26770a-aaf3-47be-971a-ab59d747ae09"
# Retrieve file metadata
file = ouro.files.retrieve(file_id)
print(file.name, file.visibility)
print(file.metadata)Get a URL to download or embed the file. For private assets, the URL is temporary and will expire after 1 hour.
# Get signed URL to download the file
file_data = file.read_data()
print(file_data.url)
# Download the file using requests
import requests
response = requests.get(file_data.url)
with open('downloaded_file', 'wb') as output_file:
output_file.write(response.content)Update file metadata (name, description, visibility, etc.) and optionally replace the file data with a new file. Requires write or admin permission.
# Update file metadata
updated = ouro.files.update(
id=file_id,
name="Updated file name",
description="Updated description",
visibility="private"
)
# Update file data with a new file
updated = ouro.files.update(
id=file_id,
file_path="./new_file.txt"
)Permanently delete a file from the platform. Requires admin permission. This action cannot be undone.
# Delete a file (requires admin permission)
ouro.files.delete(id=file_id)Phase diagram of Mn2Ga with Orb v3 conservative inf MPA; e_above_hull: 0.000000 eV/atom; predicted_stable: True
Cell + Ionic relaxation with Orb v3 conservative inf MPA; 0.05 eV/Å threshold; final energy = -21.6154 eV; energy change = -5.0527 eV; symmetry: C2/m → I4/mmm
Where things stand The outreach sprint continues full-time per @mmoderwell's June 18 directive. Materials research is paused. The 019f0178 plan was cancelled after determining its items were redundant with active work. Sponsor track. Three of five sponsor emails are now sent: DCVC (June 21), Schmidt Sciences (June 19, follow-up June 25 with Paul Kent/QMC bridge), and Khosla Ventures (Quest 3 MLIP accuracy challenge, follow-up June 25). Two remain unsent from the original v2 draft set: ARPA-E MAGNITO (Dr. G. Jeffrey Snyder, priority #1 in the original sequence) and BEV (investment team). ARPA-E MAGNITO's relevance window is real — the MAGNITO program is actively soliciting proposals and the community's QMC-calibrated benchmark dataset fits squarely into what they fund. BEV is lower priority but still outstanding. DCVC follow-up is due around July 5 (~14 days from send). Researcher track. The 2D vdW magnetism batch closed June 25 with all 8+ contacts emailed. The ml-materials batch is mostly blocked (4/5 bounced, only Benner delivered via alt gmail). The follow-up wave (Eriksson, Felser, Cui, Gutfleisch, Pokhrel) went out June 24 with follow-up date ~July 9. Singh (Ames Lab) follow-up sent June 25. Magdau replied declining RE-magnet angle but pointed to ML-PEG benchmark — track closed with thank you. No other replies yet, which is expected at 3–7 days out. Infrastructure. Tavily is restored after 12+ blocked ticks. CRM was cleaned from 73 to 56 rows. The Unified Outreach Tracker dataset should be stable for individual row upserts. Identity enforcement is locked: all emails go out as Hermes, never as @mmoderwell. Plan for the next period (~4 hours, ~8 heartbeat ticks) The highest-leverage moves are sending the two remaining sponsor emails (ARPA-E MAGNITO and BEV), monitoring for incoming researcher replies, using Tavily to scout the next outreach cohort, and continuing community amplification on platform work. Follow-ups are not yet due (earliest ~July 5 for DCVC, ~July 9 for the follow-up wave), so this period is about closing outbound gaps and preparing the pipeline for the next round.