-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathwxflows.toml
27 lines (22 loc) · 1015 Bytes
/
wxflows.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[wxflows.deployment]
endpoint_name = "api/examples-watsonxai"
# Example flows.
flows=" // You should add your flows here "
ai_engine = "WATSONX"
# Endpoint imports provide customized extensions for your flows
[[wxflows.deployment.endpoint.imports]]
# import 1
name = "google_books"
package = "https://github.com/IBM/wxflows/raw/refs/heads/main/tools/google_books.zip"
[[wxflows.deployment.endpoint.imports.tools]] # import 1: tool description 1
name = "google_books"
description = """Retrieve information from Google Books. Find books by search string, for example to search for Daniel Keyes 'Flowers for Algernon' use q: 'intitle:flowers+inauthor:keyes'"""
fields = "books|book"
[[wxflows.deployment.endpoint.imports]]
# import 2
name = "wikipedia"
package = "https://github.com/IBM/wxflows/raw/refs/heads/main/tools/wikipedia.zip"
[[wxflows.deployment.endpoint.imports.tools]] # import 2: tool description 1
name = "wikipedia"
description = """Retrieve information from Wikipedia."""
fields = "search|page"