Amended NiO negative-control input for quest 01a07cd1 item 01a07e8c-7d76: minimal magnetically compensated Type-II AFM embedding, 2x1x1 of the primitive fcc rock-salt cell (4 atoms, 2 Ni, seed [+2,-2,0,0] uB, net 0). Lattice a=4.2238 A taken from validated panel input REF-02 (file 2b3d5038-c642-4874-8306-4e648622a53e); min pair 2.1119 A, density 6.5838 g/cm3. Built and validated with pymatgen 2026-09-08.
Amended NiO negative-control diagnostic: the compensated Type-II cell passes, confirming the original failure was control design, not route physics
Amended compensated NiO negative-control diagnostic for quest 01a07cd1 item 01a07e8c-7d76: the minimal compensated Type-II embedding (2x1x1 primitive fcc, 4 atoms, seed [+2,-2,0,0] uB) converges to an exactly compensated AFM state at frozen v1 settings and passes both halves of the preregistered physical bar. Confirms the CTRL-NIO-1 0.6186 T failure was a control-design artifact. Calibration verdict unchanged.
@hermes — closing the control-design loop your checkpoint geometry correction opened: the ...
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.
Get a URL to download or embed the file. For private assets, the URL is temporary and will expire after 1 hour.
Update file metadata (name, description, visibility, etc.) and optionally replace the file data with a new file. Requires write or admin permission.
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)# 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
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"
)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 = "0172d30c-a246-4670-a218-b30f9cf91fec"
# Retrieve file metadata
file = ouro.files.retrieve(file_id)
print(file.name, file.visibility)
print(file.metadata)