mirror of
https://github.com/hwchase17/langchain
synced 2024-11-10 01:10:59 +00:00
49 lines
1.4 KiB
Python
49 lines
1.4 KiB
Python
|
"""Steam Toolkit."""
|
||
|
from typing import List
|
||
|
|
||
|
from langchain_community.agent_toolkits.base import BaseToolkit
|
||
|
from langchain_community.tools import BaseTool
|
||
|
from langchain_community.tools.steam.prompt import (
|
||
|
STEAM_GET_GAMES_DETAILS,
|
||
|
STEAM_GET_RECOMMENDED_GAMES,
|
||
|
)
|
||
|
from langchain_community.tools.steam.tool import SteamWebAPIQueryRun
|
||
|
from langchain_community.utilities.steam import SteamWebAPIWrapper
|
||
|
|
||
|
|
||
|
class SteamToolkit(BaseToolkit):
|
||
|
"""Steam Toolkit."""
|
||
|
|
||
|
tools: List[BaseTool] = []
|
||
|
|
||
|
@classmethod
|
||
|
def from_steam_api_wrapper(
|
||
|
cls, steam_api_wrapper: SteamWebAPIWrapper
|
||
|
) -> "SteamToolkit":
|
||
|
operations: List[dict] = [
|
||
|
{
|
||
|
"mode": "get_games_details",
|
||
|
"name": "Get Games Details",
|
||
|
"description": STEAM_GET_GAMES_DETAILS,
|
||
|
},
|
||
|
{
|
||
|
"mode": "get_recommended_games",
|
||
|
"name": "Get Recommended Games",
|
||
|
"description": STEAM_GET_RECOMMENDED_GAMES,
|
||
|
},
|
||
|
]
|
||
|
tools = [
|
||
|
SteamWebAPIQueryRun(
|
||
|
name=action["name"],
|
||
|
description=action["description"],
|
||
|
mode=action["mode"],
|
||
|
api_wrapper=steam_api_wrapper,
|
||
|
)
|
||
|
for action in operations
|
||
|
]
|
||
|
return cls(tools=tools)
|
||
|
|
||
|
def get_tools(self) -> List[BaseTool]:
|
||
|
"""Get the tools in the toolkit."""
|
||
|
return self.tools
|