Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multiline docstrings fix #2130

Merged
merged 33 commits into from
Apr 3, 2024
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
b441533
DOC FIX - Formatted Docstrings for the retrieve_user_proxy_agent.py a…
sharsha315 Mar 23, 2024
9a03544
DOC FIX - Formatted Docstrings for theinitiate_chats functiion of Ch…
sharsha315 Mar 23, 2024
a110a1f
Merge branch 'main' into multiline-docstrings-fix
thinkall Mar 24, 2024
ec68207
Add vision capability (#2025)
BeibinLi Mar 24, 2024
28c37f3
Native tool call support for Mistral AI API and topic notebook. (#2135)
ekzhu Mar 25, 2024
9ca9b11
New conversational chess notebook using nested chats and tool use (#2…
ekzhu Mar 25, 2024
cfed8ef
add webarena in samples (#2114)
olgavrou Mar 25, 2024
d9e1e6d
context to kwargs (#2064)
qingyun-wu Mar 26, 2024
91924f5
Bump webpack-dev-middleware from 5.3.3 to 5.3.4 in /website (#2131)
dependabot[bot] Mar 26, 2024
4964cfe
Parse Any HTML-esh Style Tags (#2046)
WaelKarkoub Mar 26, 2024
cd7d91d
Integrate AgentOptimizer (#1767)
skzhang1 Mar 26, 2024
bdaa0a8
Introducing IOStream protocol and adding support for websockets (#1551)
davorrunje Mar 26, 2024
9d03b98
[CAP] [Feature] Get list of actors from directory service. (#2073)
rajan-chari Mar 27, 2024
033fc28
Mark cache as a protocol and update type hints to reflect (#2168)
jackgerrits Mar 27, 2024
fd10d9e
fix(): fix word spelling errors (#2171)
shouldnotappearcalm Mar 27, 2024
11f69a5
Implement User Defined Functions for Local CLI Executor (#2102)
jackgerrits Mar 27, 2024
812c67a
simplify getting-started; update news (#2175)
sonichi Mar 28, 2024
160d474
update (#2178)
skzhang1 Mar 28, 2024
751fc92
Fix formatting of admonitions in udf docs (#2188)
jackgerrits Mar 28, 2024
491903c
Fix iostream on new thread (#2181)
davorrunje Mar 28, 2024
7f1c547
Add link for rendering notebooks docs on website (#2191)
jackgerrits Mar 28, 2024
e363080
Transform Messages Capability (#1923)
WaelKarkoub Mar 28, 2024
1a09005
Bump express from 4.18.2 to 4.19.2 in /website (#2157)
dependabot[bot] Mar 28, 2024
9b15aa6
add clarity analytics (#2201)
ekzhu Mar 28, 2024
6626f37
Docstring formatting fix: Standardize docstrings to adhere to Google …
sharsha315 Mar 28, 2024
1bf1703
Docstring fix: Reformattted docstrings to adhere to Google style guid…
sharsha315 Mar 29, 2024
5c0095d
Merge branch 'main' into multiline-docstrings-fix
sharsha315 Mar 29, 2024
83a12b8
Fixed Pre-Commit Error, Trailing spaces on agentchat/chat.py
sharsha315 Mar 29, 2024
3a5e1cc
Merge remote-tracking branch 'origin/multiline-docstrings-fix' into m…
sharsha315 Mar 29, 2024
1776a57
Fixed Pre-Commit Error, Trailing spaces on agentchat/chat.py
sharsha315 Mar 29, 2024
ae042fb
Merge branch 'main' into multiline-docstrings-fix
thinkall Apr 2, 2024
e132fcb
Merge branch 'main' into multiline-docstrings-fix
ekzhu Apr 2, 2024
227b063
Merge branch 'main' into multiline-docstrings-fix
ekzhu Apr 3, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixed Pre-Commit Error, Trailing spaces on agentchat/chat.py
  • Loading branch information
sharsha315 committed Mar 29, 2024
commit 1776a57ae3bb178e999dd67bf7d7dc37fdb50f9b
6 changes: 2 additions & 4 deletions autogen/agentchat/chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,10 +167,8 @@ def initiate_chats(chat_queue: List[Dict[str, Any]]) -> List[ChatResult]:
initial message.
- `**context` - additional context information to be passed to the chat.
- `"carryover"` - It can be used to specify the carryover information to be passed
to this chat.
If provided, we will combine this carryover with the "message" content when
generating the initial chat message in `generate_init_message`.

to this chat. If provided, we will combine this carryover with the "message" content when
generating the initial chat message in `generate_init_message`.
Returns:
(list): a list of ChatResult objects corresponding to the finished chats in the chat_queue.
"""
Expand Down
Loading