You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'Could not find docs for this project. You may need to provide a Stainless API key via the STAINLESS_API_KEY environment variable, the --stainless-api-key flag, or the x-stainless-api-key HTTP header.',
'Path to a directory of local documentation files (markdown/JSON) to include in local docs search.',
67
+
})
68
+
.option('docs-search-mode',{
69
+
type: 'string',
70
+
choices: ['stainless-api','local'],
71
+
default: 'stainless-api',
72
+
description:
73
+
"Where to search documentation; 'stainless-api' uses the Stainless-hosted search API whereas 'local' uses an in-memory search index built from embedded SDK method data and optional local docs files.",
74
+
})
61
75
.option('log-format',{
62
76
type: 'string',
63
77
choices: ['json','pretty'],
@@ -118,6 +132,8 @@ export function parseCLIOptions(): CLIOptions {
0 commit comments