Skip to content

Commit

Permalink
feat: add image stream freature
Browse files Browse the repository at this point in the history
  • Loading branch information
ZackBradshaw committed Oct 26, 2023
1 parent 6b6606b commit 43c4eb3
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
22 changes: 21 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
{
"cSpell.words": [
"websockets"
]
],
"key": "Ctrl+0",
"command": "layoutEditorGroups",
"args": {
"orientation": 1,
"groups": [
{
"size": 0.2
},
{
"size": 0.6
},
{
"size": 0.2,
"groups": [
{},
{}
]
}
]
}
}
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name="bing-chat",
version="1.9.1",
version="1.9.3",
license="MIT",
author="Zack Bradshaw",
author_email="[email protected]",
Expand Down
2 changes: 2 additions & 0 deletions src/EdgeGPT/EdgeGPT.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ async def ask(
search_result: bool = False,
locale: str = guess_locale(),
simplify_response: bool = False,
image_path: str = None,
) -> dict:
"""
Ask a question to the bot
Expand Down Expand Up @@ -183,6 +184,7 @@ async def ask_stream(
webpage_context: str | None = None,
search_result: bool = False,
locale: str = guess_locale(),
image_path: str = None,
) -> Generator[bool, dict | str, None]:
"""
Ask a question to the bot
Expand Down

0 comments on commit 43c4eb3

Please sign in to comment.