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

update return type of WolframAlphaAPIWrapper.run() #523

Merged
merged 5 commits into from
Nov 9, 2023
Merged
Changes from all commits
Commits
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
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
Loading