messiz
messiz
hi there, I am using an element as tooltip content, but there is always a dark grey border around it, I tried to define a theme to remove it, but...
Hi there, thanks very much for making this awesome project. I have a request if I may. I use javascript to create Dom element at runtime, and tries to apply...
Whoops, seems another provider gone.
```js response = g4f.ChatCompletion.create( provider=g4f.Provider.Bing, model="gpt-3.5-turbo", messages=[{"role": "user", "content": "write me a javascript method that would make a text summation"}], temperature=0.5, max_tokens=2000, top_p=1, frequency_penalty=0, presence_penalty=0, n=1, stop=["\nUser:"], stream=True, ) ```...
```py client = Client() response = client.chat.completions.create( model="gpt-3.5-turbo", messages=[{"role":"user","content":"hi there"}], stream=True, ) for message in response: print(message, flush=True, end='') ``` ```txt Traceback (most recent call last): File "/var/www/ai/ai/manage.py", line 22,...
What's up Ferro, I am a student at Sydney University studying software engineering, also a big fan of algorithms. Thank you for hosting such an awesome repository on GitHub, which...