()
| 228 | |
| 229 | @staticmethod |
| 230 | def random_completion_id(): |
| 231 | return 'cmpl-' + ''.join(random.choice(string.ascii_letters + string.digits) for _ in range(29)) |
| 232 | |
| 233 | def streamed_response(self, completion, choices): |
| 234 | for c in choices: |
no outgoing calls
no test coverage detected