(self, prompt: str, **kwargs: str)
| 140 | |
| 141 | class TogetherComputerInstruct(PromptStyle): |
| 142 | def apply(self, prompt: str, **kwargs: str) -> str: |
| 143 | return f'Q: {prompt}\nA:' |
| 144 | |
| 145 | def stop_tokens(self, tokenizer: 'Tokenizer') -> Tuple[List[int], ...]: |
| 146 | colon = tokenizer.token_to_id(':') |
nothing calls this directly
no outgoing calls
no test coverage detected