We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6ed8a3 commit b9cb31eCopy full SHA for b9cb31e
functions/tree-sitter/README.md
@@ -60,13 +60,16 @@ The tool streams back a series of json code ranges.
60
61
## Aside on tool creation
62
63
-This tool itself was generated by an LLM.
+This tool itself was co-authored alongside gpt-4.
64
65
## Using the container
66
67
The tool can also be called directly using `docker run`.
68
69
```sh
70
-docker run --rm -i vonwig/tree-sitter -lang python -query "(module (function_definition) @top-level)" < <(echo "def hello():\n\tprint(\"hello\")")
+docker run --rm -i vonwig/tree-sitter \
71
+ -lang python \
72
+ -query "(module (function_definition) @top-level)" \
73
+ < <(echo "def hello():\n\tprint(\"hello\")")
74
```
75
0 commit comments