Skip to content

Commit

Permalink
update license (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjay920 authored Jul 9, 2024
1 parent 8fc5d10 commit 5dd4730
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:

- id: check-merge-conflict
- id: check-yaml
- id: check-added-large-files
- id: check-ast
Expand Down
3 changes: 3 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -176,3 +176,6 @@

END OF TERMS AND CONDITIONS

Additional Licensing for Language Models
----------------------------------------
This repository utilizes various language models, each of which may be subject to its own individual license. Users are responsible for complying with the respective licenses of each model and should refer to the documentation accompanying each model for license details.
33 changes: 31 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,37 @@ profile = "black"
import_heading_stdlib = "Standard Library"
import_heading_thirdparty = "Third Party"
import_heading_firstparty = "Local"
known_third_party = ["openai","click", "core", "elasticsearch", "elasticsearch5", "fastapi", "importlib_resources", "flask", "gensim", "loglizer", "logparser", "matplotlib", "numpy", "pandas", "pydantic", "pytest", "regex", "requests", "scipy", "sklearn", "sompy", "sqlalchemy", "starlette", "torch", "urllib3", "yaml"]
known_third_party = [
"openai",
"click",
"core",
"elasticsearch",
"elasticsearch5",
"fastapi",
"importlib_resources",
"flask",
"gensim",
"loglizer",
"logparser",
"matplotlib",
"numpy",
"pandas",
"pydantic",
"pytest",
"regex",
"requests",
"scipy",
"sklearn",
"sompy",
"sqlalchemy",
"starlette",
"torch",
"urllib3",
"yaml",
]
known_first_party = ["tests", "app"]
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
case_sensitive = true
multi_line_output = 3
force_grid_wrap = 0
use_parentheses = true
Expand Down Expand Up @@ -35,4 +64,4 @@ exclude = '''
[tool.pytest.ini_options]
pythonpath = [
"."
]
]

0 comments on commit 5dd4730

Please sign in to comment.