Configuration for this pydantic object.
| 81 | """Maximum number of tokens to generate.""" |
| 82 | |
| 83 | class Config: |
| 84 | """Configuration for this pydantic object.""" |
| 85 | |
| 86 | extra = Extra.ignore |
| 87 | |
| 88 | @property |
| 89 | def _default_params(self) -> Dict[str, Any]: |
nothing calls this directly
no outgoing calls
no test coverage detected