"""Util that calls Steam-WebAPI.""" from typing import Any, List from langchain_core.pydantic_v1 import BaseModel, Extra, root_validator class SteamWebAPIWrapper(BaseModel): """Wrapper for Steam API.""" steam: Any # for python-steam-api from langchain_community.tools.steam.prompt import ( STEAM_GET_GAMES_DETAILS, STEAM_GET_RECOMMENDED_GAMES, ) # operations: a list of dictionaries, each representing a specific operation that # can be performed with the API operations: List[dict] = [ { "mode": "get_game_details", "name": "Get Game Details", "description": STEAM_GET_GAMES_DETAILS, }, { "mode": "get_recommended_games", "name": "Get Recommended Games", "description": STEAM_GET_RECOMMENDED_GAMES, }, ] class Config: """Configuration for this pydantic object.""" extra = Extra.forbid def get_operations(self) -> List[dict]: """Return a list of operations.""" return self.operations @root_validator def validate_environment(cls, values: dict) -> dict: """Validate api key and python package has been configured.""" # check if the python package is installed try: from steam import Steam except ImportError: raise ImportError("python-steam-api library is not installed. ") try: from decouple import config except ImportError: raise ImportError("decouple library is not installed. ") # initialize the steam attribute for python-steam-api usage KEY = config("STEAM_KEY") steam = Steam(KEY) values["steam"] = steam return values def parse_to_str(self, details: dict) -> str: # For later parsing """Parse the details result.""" result = "" for key, value in details.items(): result += "The " + str(key) + " is: " + str(value) + "\n" return result def get_id_link_price(self, games: dict) -> dict: """The response may contain more than one game, so we need to choose the right one and return the id.""" game_info = {} for app in games["apps"]: game_info["id"] = app["id"] game_info["link"] = app["link"] game_info["price"] = app["price"] break return game_info def remove_html_tags(self, html_string: str) -> str: from bs4 import BeautifulSoup soup = BeautifulSoup(html_string, "html.parser") return soup.get_text() def details_of_games(self, name: str) -> str: games = self.steam.apps.search_games(name) info_partOne_dict = self.get_id_link_price(games) info_partOne = self.parse_to_str(info_partOne_dict) id = str(info_partOne_dict.get("id")) info_dict = self.steam.apps.get_app_details(id) data = info_dict.get(id).get("data") detailed_description = data.get("detailed_description") # detailed_description contains