(self)
| 703 | return self.config.chat_context_length or DEFAULT_CONTEXT_LENGTH |
| 704 | |
| 705 | def completion_context_length(self) -> int: |
| 706 | return self.config.completion_context_length or DEFAULT_CONTEXT_LENGTH |
| 707 | |
| 708 | def chat_cost(self) -> Tuple[float, float, float]: |
| 709 | """ |
no outgoing calls
no test coverage detected