Support upload image in gui

Add image upload to OpenaiChat
Add image response to OpenaiChat
Improve ChatGPT Plus Support
Remove unused requirements
This commit is contained in:
Heiner Lohaus 2024-01-13 15:37:36 +01:00
parent 7075cd4ba1
commit ea8d6b847a
20 changed files with 611 additions and 442 deletions

View file

@ -7,10 +7,9 @@ import g4f, asyncio
print("create:", end=" ", flush=True)
for response in g4f.ChatCompletion.create(
model=g4f.models.gpt_4_32k_0613,
provider=g4f.Provider.Aivvm,
model=g4f.models.default,
provider=g4f.Provider.Bing,
messages=[{"role": "user", "content": "write a poem about a tree"}],
temperature=0.1,
stream=True
):
print(response, end="", flush=True)
@ -18,10 +17,10 @@ print()
async def run_async():
response = await g4f.ChatCompletion.create_async(
model=g4f.models.gpt_35_turbo_16k_0613,
provider=g4f.Provider.GptGod,
model=g4f.models.default,
provider=g4f.Provider.Bing,
messages=[{"role": "user", "content": "hello!"}],
)
print("create_async:", response)
# asyncio.run(run_async())
asyncio.run(run_async())