Files
openrouter-python-sdk-retry…/docs/operations/input.md
T
2025-11-13 14:21:27 -05:00

30 lines
314 B
Markdown

# Input
## Supported Types
### `str`
```python
value: str = /* values here */
```
### `List[str]`
```python
value: List[str] = /* values here */
```
### `List[float]`
```python
value: List[float] = /* values here */
```
### `List[List[float]]`
```python
value: List[List[float]] = /* values here */
```