(self, client: 'InferenceClient')
| 1773 | class Chat: |
| 1774 | """OpenAI-compatible chat interface""" |
| 1775 | def __init__(self, client: 'InferenceClient'): |
| 1776 | self.client = client |
| 1777 | self.completions = self.Completions(client) |
| 1778 | |
| 1779 | class Completions: |
| 1780 | def __init__(self, client: 'InferenceClient'): |
nothing calls this directly
no outgoing calls
no test coverage detected