## Delete `computers.delete(strid)` **delete** `/computers/{id}` Terminate and clean up a computer instance, stopping the session and recording metrics ### Parameters - `id: str` ### Example ```python import os from tzafon import Lightcone client = Lightcone( api_key=os.environ.get("TZAFON_API_KEY"), # This is the default and can be omitted ) client.computers.delete( "id", ) ```