Slide 14
Slide 14 text
コンポーネントの解説
paths:
/customsearch/v1
:
get:
summary: Google search.
description
: Google search.
security:
- APIkey: []
- ProgrammableSearchEngineID
: []
parameters
:
- name: q
in: query
description
: Search query
required: true
schema:
type: string
- name: lr
in: query
description
: |
Restricts the search to documents written in
a particular language (e.g., lr=lang_ja).
schema:
type: string
enum:
- lang_en
- lang_ja
- name: num
in: query
description
: |
Number of search results to return.Valid values are
integers between 1 and 10, inclusive.
required: true
schema:
type: integer
responses:
'200':
description
: Successful operation
content:
application/json
:
schema: {}
ファンクション
外部APIを呼び出すツール
OpenAPIのスキーマ定義を用意するだけ
で、任意の外部APIを呼び出すことが可能
APIキーを使った認証にも対応
Google検索のAPIをOpenAPIで定義した例
YAMLだけなのでギリ ノーコード?ローコード?
Google検索のAPIの例