from agent_office import AgentOfficefrom uuid import uuid4# Initialize the clientclient = AgentOffice(api_key="YOUR_API_KEY")# Upload a document with tracked changes enableddoc = client.documents.create( file="document.docx", return_markdown=True, tracked_changes=True, author_name="John Doe")# Edit the documentedit = client.edit( doc_id=doc.doc_id, edit_uid=str(uuid4()), edit_instructions="Change the title to 'My New Title'", save_chunks_for_review=False)# Download the edited documentresult = client.documents.download(doc_id=doc.doc_id)print(result.download_url)