Skip to content
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