1. Add the following tools:
* Google Finance
- get_stock_summary
- get_stock_historical_data
* Google Flights
- search_roundtrip_flights
- search_one_way_flights
* Google Hotels
- search_hotels
2. Add some common helper functions for serpAPI tools.
13 lines
591 B
Python
13 lines
591 B
Python
from arcade_search.tools.google_finance import get_stock_historical_data, get_stock_summary
|
|
from arcade_search.tools.google_flights import search_one_way_flights, search_roundtrip_flights
|
|
from arcade_search.tools.google_hotels import search_hotels
|
|
from arcade_search.tools.google_search import search_google
|
|
|
|
__all__ = [
|
|
"search_google", # Google Search
|
|
"get_stock_summary", # Google Finance
|
|
"get_stock_historical_data", # Google Finance
|
|
"search_one_way_flights", # Google Flights
|
|
"search_roundtrip_flights", # Google Flights
|
|
"search_hotels", # Google Hotels
|
|
]
|