Update multi_agent.py
Browse files- multi_agent.py +2 -0
multi_agent.py
CHANGED
@@ -3,6 +3,8 @@ import base64, datetime, json, os
|
|
3 |
from autogen import ConversableAgent, AssistantAgent
|
4 |
from autogen.coding import LocalCommandLineCodeExecutor
|
5 |
|
|
|
|
|
6 |
###
|
7 |
def get_today() -> Annotated[str, "Get today's date"]:
|
8 |
return str(date.today())
|
|
|
3 |
from autogen import ConversableAgent, AssistantAgent
|
4 |
from autogen.coding import LocalCommandLineCodeExecutor
|
5 |
|
6 |
+
from typing_extensions import Annotate
|
7 |
+
|
8 |
###
|
9 |
def get_today() -> Annotated[str, "Get today's date"]:
|
10 |
return str(date.today())
|