mirror of
https://github.com/hwchase17/langchain.git
synced 2025-05-08 08:38:48 +00:00
Upgrade to using a literal for specifying the extra which is the recommended approach in pydantic 2. This works correctly also in pydantic v1. ```python from pydantic.v1 import BaseModel class Foo(BaseModel, extra="forbid"): x: int Foo(x=5, y=1) ``` And ```python from pydantic.v1 import BaseModel class Foo(BaseModel): x: int class Config: extra = "forbid" Foo(x=5, y=1) ``` ## Enum -> literal using grit pattern: ``` engine marzano(0.1) language python or { `extra=Extra.allow` => `extra="allow"`, `extra=Extra.forbid` => `extra="forbid"`, `extra=Extra.ignore` => `extra="ignore"` } ``` Resorted attributes in config and removed doc-string in case we will need to deal with going back and forth between pydantic v1 and v2 during the 0.3 release. (This will reduce merge conflicts.) ## Sort attributes in Config: ``` engine marzano(0.1) language python function sort($values) js { return $values.text.split(',').sort().join("\n"); } class_definition($name, $body) as $C where { $name <: `Config`, $body <: block($statements), $values = [], $statements <: some bubble($values) assignment() as $A where { $values += $A }, $body => sort($values), } ```
76 lines
2.3 KiB
Python
76 lines
2.3 KiB
Python
"""Util that calls OpenWeatherMap using PyOWM."""
|
|
|
|
from typing import Any, Dict, Optional
|
|
|
|
from langchain_core.pydantic_v1 import BaseModel, root_validator
|
|
from langchain_core.utils import get_from_dict_or_env
|
|
|
|
|
|
class OpenWeatherMapAPIWrapper(BaseModel):
|
|
"""Wrapper for OpenWeatherMap API using PyOWM.
|
|
|
|
Docs for using:
|
|
|
|
1. Go to OpenWeatherMap and sign up for an API key
|
|
2. Save your API KEY into OPENWEATHERMAP_API_KEY env variable
|
|
3. pip install pyowm
|
|
"""
|
|
|
|
owm: Any
|
|
openweathermap_api_key: Optional[str] = None
|
|
|
|
class Config:
|
|
extra = "forbid"
|
|
|
|
@root_validator(pre=True)
|
|
def validate_environment(cls, values: Dict) -> Dict:
|
|
"""Validate that api key exists in environment."""
|
|
openweathermap_api_key = get_from_dict_or_env(
|
|
values, "openweathermap_api_key", "OPENWEATHERMAP_API_KEY"
|
|
)
|
|
|
|
try:
|
|
import pyowm
|
|
|
|
except ImportError:
|
|
raise ImportError(
|
|
"pyowm is not installed. Please install it with `pip install pyowm`"
|
|
)
|
|
|
|
owm = pyowm.OWM(openweathermap_api_key)
|
|
values["owm"] = owm
|
|
|
|
return values
|
|
|
|
def _format_weather_info(self, location: str, w: Any) -> str:
|
|
detailed_status = w.detailed_status
|
|
wind = w.wind()
|
|
humidity = w.humidity
|
|
temperature = w.temperature("celsius")
|
|
rain = w.rain
|
|
heat_index = w.heat_index
|
|
clouds = w.clouds
|
|
|
|
return (
|
|
f"In {location}, the current weather is as follows:\n"
|
|
f"Detailed status: {detailed_status}\n"
|
|
f"Wind speed: {wind['speed']} m/s, direction: {wind['deg']}°\n"
|
|
f"Humidity: {humidity}%\n"
|
|
f"Temperature: \n"
|
|
f" - Current: {temperature['temp']}°C\n"
|
|
f" - High: {temperature['temp_max']}°C\n"
|
|
f" - Low: {temperature['temp_min']}°C\n"
|
|
f" - Feels like: {temperature['feels_like']}°C\n"
|
|
f"Rain: {rain}\n"
|
|
f"Heat index: {heat_index}\n"
|
|
f"Cloud cover: {clouds}%"
|
|
)
|
|
|
|
def run(self, location: str) -> str:
|
|
"""Get the current weather information for a specified location."""
|
|
mgr = self.owm.weather_manager()
|
|
observation = mgr.weather_at_place(location)
|
|
w = observation.weather
|
|
|
|
return self._format_weather_info(location, w)
|