Skip to content

Commit

Permalink
guidance files now a submodule - remove from license notice
Browse files Browse the repository at this point in the history
  • Loading branch information
mmoskal committed Mar 25, 2024
1 parent e015274 commit 7d3bb15
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 31 deletions.
28 changes: 0 additions & 28 deletions NOTICE.md
Original file line number Diff line number Diff line change
Expand Up @@ -544,31 +544,3 @@ 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.
```

## Component: Guidance

**Open Source License**:

```
MIT License
Copyright (c) The Guidance Contributors
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.
```
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -427,8 +427,6 @@ All of these can be easily extended.
- specific [Python library](./controllers/pyctrl/Lib/) files are copied from
[RustPython](https://github.com/RustPython/RustPython)
(as we only use a subset of them)
- [Guidance](https://github.com/guidance-ai/guidance) files copied under
[guidance_ctrl](./controllers/guidance_ctrl/Lib/guidance/)
- the [example ANSI C grammar](controllers/aici_abi/grammars/c.y) is based on
https://www.lysator.liu.se/c/ANSI-C-grammar-y.html by Jeff Lee (from 1985)

Expand Down
2 changes: 1 addition & 1 deletion scripts/checklinks.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const fs = require('fs');
const path = require('path');
const exclude = ["tmp/", "node_modules/", "target/"]
const exclude = ["tmp/", "node_modules/", "target/", "controllers/RustPython/"]
fs.readFileSync('.gitmodules', 'utf8').replace(/^\s*path = (.*)$/gm, (_, path) => {
exclude.push(path + "/")
})
Expand Down

0 comments on commit 7d3bb15

Please sign in to comment.