Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
open-webui
Commits
c5683dd2
Commit
c5683dd2
authored
Jun 10, 2024
by
Timothy J. Baek
Browse files
refac
parent
6589464d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
0 deletions
+38
-0
src/lib/components/workspace/Tools/CodeEditor.svelte
src/lib/components/workspace/Tools/CodeEditor.svelte
+38
-0
No files found.
src/lib/components/workspace/Tools/CodeEditor.svelte
View file @
c5683dd2
...
@@ -56,6 +56,44 @@ class Tools:
...
@@ -56,6 +56,44 @@ class Tools:
print(e)
print(e)
return "Invalid equation"
return "Invalid equation"
def get_current_weather(self, city: str) -> str:
"""
Get the current weather for a given city.
:param city: The name of the city to get the weather for.
:return: The current weather information or an error message.
"""
api_key = os.getenv('OPENWEATHER_API_KEY')
if not api_key:
return "API key is not set in the environment variable 'OPENWEATHER_API_KEY'."
base_url = "http://api.openweathermap.org/data/2.5/weather"
params = {
'q': city,
'appid': api_key,
'units': 'metric' # Optional: Use 'imperial' for Fahrenheit
}
try:
response = requests.get(base_url, params=params)
response.raise_for_status() # Raise HTTPError for bad responses (4xx and 5xx)
data = response.json()
if data.get('cod') != 200:
return f"Error fetching weather data: {data.get('message')}"
weather_description = data['weather'][0]['description']
temperature = data['main']['temp']
humidity = data['main']['humidity']
wind_speed = data['wind']['speed']
return (f"Weather in {city}:\n"
f"Description: {weather_description}\n"
f"Temperature: {temperature}°C\n"
f"Humidity: {humidity}%\n"
f"Wind Speed: {wind_speed} m/s")
except requests.RequestException as e:
return f"Error fetching weather data: {str(e)}"
`;
`;
export const formatHandler = async () => {
export const formatHandler = async () => {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment