From 13b2cf50aeb791f4b47786f95c8572a5caa75c7e Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Sun, 7 Dec 2025 15:52:27 -0500 Subject: remove outdated SDKs --- packages/sdk/python/docs/usage/files_projects.md | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 packages/sdk/python/docs/usage/files_projects.md (limited to 'packages/sdk/python/docs/usage/files_projects.md') diff --git a/packages/sdk/python/docs/usage/files_projects.md b/packages/sdk/python/docs/usage/files_projects.md deleted file mode 100644 index 47f255e5a..000000000 --- a/packages/sdk/python/docs/usage/files_projects.md +++ /dev/null @@ -1,22 +0,0 @@ -# Files & Projects - -Access file status and project information. - -```python -from opencode_ai import OpenCodeClient - -client = OpenCodeClient() - -# Projects -for p in client.list_projects() or []: - print(p.id, p.directory) - -# Current path -pinfo = client.get_path() -print(pinfo.directory) - -# File status -files = client.file_status() or [] -for f in files: - print(f.path, f.type) -``` -- cgit v1.2.3