| 75 | |
| 76 | |
| 77 | class CompletionPrediction(TypedDict, total=False): |
| 78 | generation: str |
| 79 | tokens: List[str] # not required |
| 80 | logprobs: List[float] # not required |
| 81 | |
| 82 | |
| 83 | class ChatPrediction(TypedDict, total=False): |
nothing calls this directly
no outgoing calls
no test coverage detected