@uipath/docsai-tool 0.1.5 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +41 -41
- package/dist/index.js +6 -39957
- package/dist/tool.js +10822 -33194
- package/package.json +42 -42
package/README.md
CHANGED
|
@@ -1,41 +1,41 @@
|
|
|
1
|
-
# @uipath/docsai-tool
|
|
2
|
-
|
|
3
|
-
`uip` plugin for querying UiPath documentation via DocsAI.
|
|
4
|
-
|
|
5
|
-
## Usage
|
|
6
|
-
|
|
7
|
-
### Commands
|
|
8
|
-
|
|
9
|
-
**Ask a question:**
|
|
10
|
-
```bash
|
|
11
|
-
uip docsai ask <query> [options]
|
|
12
|
-
```
|
|
13
|
-
|
|
14
|
-
**Options:**
|
|
15
|
-
- `-t, --tenant <tenant-name>` - Tenant (optional, defaults to value selected during auth)
|
|
16
|
-
- `--
|
|
17
|
-
|
|
18
|
-
### Examples
|
|
19
|
-
|
|
20
|
-
```bash
|
|
21
|
-
# Ask a question
|
|
22
|
-
uip docsai ask "how to deploy a process"
|
|
23
|
-
|
|
24
|
-
# Specify a tenant
|
|
25
|
-
uip docsai ask "what is orchestrator" --tenant MyTenant
|
|
26
|
-
|
|
27
|
-
# JSON output
|
|
28
|
-
uip docsai ask "how to use queues" --
|
|
29
|
-
|
|
30
|
-
#YAML output
|
|
31
|
-
uip docsai ask "how to use queues" --
|
|
32
|
-
```
|
|
33
|
-
|
|
34
|
-
## Authentication
|
|
35
|
-
|
|
36
|
-
Requires `uip login` first. Uses the `Docs.GPT.Search` OAuth scope.
|
|
37
|
-
|
|
38
|
-
## Versions
|
|
39
|
-
|
|
40
|
-
### docsai-tool 0.1.0
|
|
41
|
-
- Initial release with `ask` command
|
|
1
|
+
# @uipath/docsai-tool
|
|
2
|
+
|
|
3
|
+
`uip` plugin for querying UiPath documentation via DocsAI.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
### Commands
|
|
8
|
+
|
|
9
|
+
**Ask a question:**
|
|
10
|
+
```bash
|
|
11
|
+
uip docsai ask <query> [options]
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
**Options:**
|
|
15
|
+
- `-t, --tenant <tenant-name>` - Tenant (optional, defaults to value selected during auth)
|
|
16
|
+
- `--output <format>` - Output format: table, json, yaml, plain (default: table)
|
|
17
|
+
|
|
18
|
+
### Examples
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
# Ask a question
|
|
22
|
+
uip docsai ask "how to deploy a process"
|
|
23
|
+
|
|
24
|
+
# Specify a tenant
|
|
25
|
+
uip docsai ask "what is orchestrator" --tenant MyTenant
|
|
26
|
+
|
|
27
|
+
# JSON output
|
|
28
|
+
uip docsai ask "how to use queues" --output json
|
|
29
|
+
|
|
30
|
+
#YAML output
|
|
31
|
+
uip docsai ask "how to use queues" --output yaml
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Authentication
|
|
35
|
+
|
|
36
|
+
Requires `uip login` first. Uses the `Docs.GPT.Search` OAuth scope.
|
|
37
|
+
|
|
38
|
+
## Versions
|
|
39
|
+
|
|
40
|
+
### docsai-tool 0.1.0
|
|
41
|
+
- Initial release with `ask` command
|