Files
Honglin dd0e6003a0 [SpellCheck] Add cspell check workflow (#538)
# Description

- Add cspell check workflow
- Fix all existing spell errors..............

# All Promptflow Contribution checklist:
- [x] **The pull request does not introduce [breaking changes]**
- [ ] **CHANGELOG is updated for new features, bug fixes or other
significant changes.**
- [x] **I have read the [contribution guidelines](../CONTRIBUTING.md).**

## General Guidelines and Best Practices
- [x] Title of the pull request is clear and informative.
- [x] There are a small number of commits, each of which have an
informative message. This means that previously merged commits do not
appear in the history of the PR. For more information on cleaning up the
commits in your PR, [see this
page](https://github.com/Azure/azure-powershell/blob/master/documentation/development-docs/cleaning-up-commits.md).

### Testing Guidelines
- [ ] Pull request includes test coverage for the included changes.
2023-09-18 18:15:45 +08:00

1.9 KiB

SerpAPI

Introduction

The SerpAPI API is a Python tool that provides a wrapper to the SerpAPI Google Search Engine Results API and SerpApi Bing Search Engine Results API . We could use the tool to retrieve search results from a number of different search engines, including Google and Bing, and you can specify a range of search parameters, such as the search query, location, device type, and more.

Prerequisite

Sign up at SERP API homepage

Connection

Connection is the model used to establish connections with Serp API.

Type Name API KEY
Serp Required Required

API Key is on SerpAPI account dashboard

Inputs

The serp api tool supports following parameters:

Name Type Description Required
query string The search query to be executed. Yes
engine string The search engine to use for the search. Default is 'google'. Yes
num integer The number of search results to return.Default is 10. No
location string The geographic location to execute the search from. No
safe string The safe search mode to use for the search. Default is 'off'. No

Outputs

The json representation from serpapi query.

Engine Return Type Output
google json Sample
bing json Sample