mirror of
https://github.com/semantica-agi/semantica.git
synced 2026-09-10 04:00:35 +00:00
mint export fails with 'file does not exist' for pages named 'contributing' and 'license' — these are reserved by Mintlify's GitHub integration layer. Renamed to contributing-guide.md and project-license.md and updated all nav entries and cross-links throughout the docs. Also adds .gitattributes LF rules to prevent CRLF issues from Windows devs.
93 lines
2.5 KiB
Markdown
93 lines
2.5 KiB
Markdown
---
|
|
title: "License"
|
|
description: "Semantica is open source under the MIT License — free for personal and commercial use."
|
|
icon: "file-contract"
|
|
---
|
|
|
|
> Semantica is open source and free for everyone under the MIT License.
|
|
|
|
---
|
|
|
|
## MIT License
|
|
|
|
```
|
|
MIT License
|
|
|
|
Copyright (c) 2026 Hawksight AI
|
|
|
|
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.
|
|
```
|
|
|
|
---
|
|
|
|
## What This Means
|
|
|
|
**You can:**
|
|
|
|
- Use Semantica commercially — free for business use
|
|
- Modify the source code
|
|
- Distribute copies or derivatives
|
|
- Use in proprietary software
|
|
|
|
**You must:**
|
|
|
|
- Keep the copyright notice in copies
|
|
- Include the MIT license text in distributions
|
|
|
|
**No warranty** — the authors are not responsible for damages or liable for how you use the software.
|
|
|
|
---
|
|
|
|
## Commercial Use
|
|
|
|
Semantica is completely free for commercial use. No attribution is required (though it's appreciated).
|
|
|
|
---
|
|
|
|
## Third-Party Dependencies
|
|
|
|
Semantica uses open-source libraries with compatible licenses:
|
|
|
|
| Library | License |
|
|
|---------|---------|
|
|
| Python | PSF License |
|
|
| NumPy, Pandas | BSD |
|
|
| spaCy | MIT |
|
|
| Transformers | Apache 2.0 |
|
|
| RDFLib | BSD |
|
|
|
|
---
|
|
|
|
## Contributing
|
|
|
|
By contributing to Semantica, you agree that your contributions will be licensed under the same MIT License.
|
|
|
|
---
|
|
|
|
## See Also
|
|
|
|
<CardGroup cols={2}>
|
|
<Card title="Contributing" icon="code-pull-request" href="contributing-guide">
|
|
How to contribute to the project.
|
|
</Card>
|
|
<Card title="Citation" icon="quote-left" href="citation">
|
|
How to cite Semantica in research.
|
|
</Card>
|
|
</CardGroup>
|