Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

handle glob parsing in shell caommands #721

Merged
merged 12 commits into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"devicescript.devtools.autoStart": false,
"cSpell.words": [
"adoinfo",
"Agentic",
"AICI",
"arrayify",
Expand All @@ -10,6 +11,7 @@
"codelion",
"Codespaces",
"compactable",
"createfile",
"demux",
"devcontainers",
"dockerode",
Expand All @@ -21,12 +23,15 @@
"genai",
"Genaiscript",
"genaisrc",
"ghinfo",
"gpspec",
"gpspecs",
"gptool",
"gptools",
"gptoolsjs",
"hostpath",
"icontains",
"labelledby",
"limitrows",
"llmify",
"llmrequest",
Expand Down
34 changes: 8 additions & 26 deletions THIRD_PARTY_LICENSES.md
Original file line number Diff line number Diff line change
Expand Up @@ -1099,7 +1099,7 @@ MIT License

The following npm package may be included in this product:

- [email protected].2
- [email protected].3

This package contains the following license and notice below:

Expand Down Expand Up @@ -4188,9 +4188,9 @@ The following npm packages may be included in this product:
- @tokenizer/[email protected]
- [email protected]
- [email protected]
- [email protected].2
- [email protected].2
- [email protected].2
- [email protected].3
- [email protected].3
- [email protected].3
- [email protected]
- [email protected]
- [email protected]
Expand Down Expand Up @@ -4751,7 +4751,7 @@ SOFTWARE.

The following npm package may be included in this product:

- @azure/msal-node@2.13.1
- @azure/msal-node@2.14.0

This package contains the following license and notice below:

Expand Down Expand Up @@ -4871,7 +4871,7 @@ SOFTWARE.

The following npm package may be included in this product:

- gpt-tokenizer@2.2.3
- gpt-tokenizer@2.3.0

This package contains the following license and notice below:

Expand Down Expand Up @@ -5090,8 +5090,8 @@ SOFTWARE.

The following npm packages may be included in this product:

- @azure/msal-browser@3.23.0
- @azure/msal-common@14.14.2
- @azure/msal-browser@3.24.0
- @azure/msal-common@14.15.0

These packages each contain the following license and notice below:

Expand Down Expand Up @@ -7102,24 +7102,6 @@ THE SOFTWARE.

-----------

The following npm package may be included in this product:

- [email protected]

This package contains the following license and notice below:

The MIT License (MIT)

Copyright Β© 2022 William R Swanson

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the β€œSoftware”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED β€œAS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

-----------

The following npm package may be included in this product:

- [email protected]
Expand Down
18 changes: 9 additions & 9 deletions docs/genaisrc/genaiscript.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
},
"dependencies": {
"@astrojs/check": "^0.9.3",
"@astrojs/starlight": "^0.28.1",
"@astrojs/starlight": "^0.28.2",
"astro": "^4.15.8",
"typescript": "5.6.2"
},
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/reference/cli/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
-td, --test-delay <string> delay between tests in seconds
--cache enable LLM result cache
-v, --verbose verbose output
-pv, --promptfoo-version [version] promptfoo version, default is 0.82.0
-pv, --promptfoo-version [version] promptfoo version, default is 0.89.3

Check failure on line 92 in docs/src/content/docs/reference/cli/commands.md

View workflow job for this annotation

GitHub Actions / build

The flag name `--promptfoo-version` seems to be a typo; it should likely be `--prompt-version`.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The flag --promptfoo-version seems to be a typo; it should be --prompt-version.

generated by pr-docs-review-commit flag_typo

-os, --out-summary <file> append output summary in file
--groups <groups...> groups to include or exclude. Use :!
prefix to exclude
Expand Down
Loading