lotusnowshen

Results 1 issues of lotusnowshen

```python def request_chatgpt(content): response = g4f.ChatCompletion.create( model=g4f.models.gpt_35_turbo, messages=[{"role": "user", "content": content}], provider=OpenaiChat, auth=cookie, ) # Alternative model setting print('ChatGPT响应: ', response) return response ``` I've been using g4f and it's...

bug
stale