Skip to content

Commit

Permalink
update return type of WolframAlphaAPIWrapper.run() (microsoft#523)
Browse files Browse the repository at this point in the history
* update return type of WolframAlphaAPIWrapper.run

* replace tuple by typing.Tuple

---------

Co-authored-by: Chi Wang <[email protected]>
Co-authored-by: Yiran Wu <[email protected]>
  • Loading branch information
3 people authored Nov 9, 2023
1 parent 8bf3a5e commit 495cf7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autogen/agentchat/contrib/math_user_proxy_agent.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import re
import os
from pydantic import BaseModel, Extra, root_validator
from typing import Any, Callable, Dict, List, Optional, Union
from typing import Any, Callable, Dict, List, Optional, Union, Tuple
from time import sleep

from autogen.agentchat import Agent, UserProxyAgent
Expand Down Expand Up @@ -402,7 +402,7 @@ def validate_environment(cls, values: Dict) -> Dict:

return values

def run(self, query: str) -> str:
def run(self, query: str) -> Tuple[str, bool]:
"""Run query through WolframAlpha and parse result."""
from urllib.error import HTTPError

Expand Down

0 comments on commit 495cf7c

Please sign in to comment.