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

30 lines
315 B
Markdown

# Prompt
## 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 */
```