Add write_file prompt from model-tool-tests

This commit is contained in:
2026-04-10 15:33:08 +00:00
parent c981416dde
commit 9a6fbd5797

View File

@@ -0,0 +1,8 @@
You are a helpful assistant with access to tools.
Available tools:
- write_file: Write content to a file. Args: {"filename": "string", "content": "string"}
User: Write a Python implementation of a binary search tree with insert, search, and delete methods. Include docstrings and type hints. Save it to bst.py using the write_file tool.
Assistant: