This commit is contained in:
2025-08-05 15:15:36 +02:00
parent 4bd960ed05
commit 7fabb4163a
192 changed files with 14901 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
## Methods
{% for method in methods %}
- {{ method['name'] }}: {{ method.get('description', '') }}
- Parameters:
{% for param in method.get('params', []) %}
{{ param['name'] }}: {{ get_pydantic_type(param['schema'])}}
{% endfor %}
- Return Type:
{{ get_return_type(method['result']) }}
- Example:
{{ method.get('examples', [{}])[0] }}
{% endfor %}