-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
florian
committed
Jun 15, 2024
1 parent
7e6f683
commit e2cdf6e
Showing
19 changed files
with
34 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
pypi_llm/vector_database/__init__.py → pypi_scout/vector_database/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from __future__ import annotations | ||
|
||
from pypi_llm.vector_database.interface import VectorDatabaseInterface | ||
from pypi_scout.vector_database.interface import VectorDatabaseInterface | ||
|
||
__all__ = ("VectorDatabaseInterface",) |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[tool.poetry] | ||
name = "pypi_llm" | ||
name = "pypi_scout" | ||
version = "0.0.1" | ||
description = "This is a template repository for Python projects that use Poetry for their dependency management." | ||
authors = ["Florian Maas <[email protected]>"] | ||
repository = "https://github.com/fpgmaas/pypi-llm" | ||
documentation = "https://fpgmaas.github.io/pypi-llm/" | ||
repository = "https://github.com/fpgmaas/pypi-scout" | ||
documentation = "https://fpgmaas.github.io/pypi-scout/" | ||
readme = "README.md" | ||
packages = [ | ||
{include = "pypi_llm"} | ||
{include = "pypi_scout"} | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
|
@@ -44,7 +44,7 @@ requires = ["poetry-core>=1.0.0"] | |
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.mypy] | ||
files = ["pypi_llm"] | ||
files = ["pypi_scout"] | ||
disallow_untyped_defs = "True" | ||
disallow_any_unimported = "True" | ||
no_implicit_optional = "True" | ||
|
@@ -107,7 +107,7 @@ skip_empty = true | |
|
||
[tool.coverage.run] | ||
branch = true | ||
source = ["pypi_llm"] | ||
source = ["pypi_scout"] | ||
|
||
|
||
[tool.ruff.per-file-ignores] | ||
|