-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improve dependencies and bump to 0.0.2
- Loading branch information
Showing
7 changed files
with
18 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
.env | ||
.venv | ||
dist/ | ||
data/ | ||
__pycache__/ | ||
.*_cache | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
MIT License | ||
|
||
Copyright (c) 2024-present Vincent Emonet <[email protected]> | ||
Copyright (c) 2024-present SIB Swiss Institute of Bioinformatics | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,10 +6,14 @@ build-backend = "hatchling.build" | |
requires-python = ">=3.9" | ||
name = "sparql-llm" | ||
description = "Reusable components and complete webapp to improve Large Language Models (LLMs) capabilities when generating SPARQL queries for a given set of endpoints, using Retrieval-Augmented Generation (RAG) and SPARQL query validation from the endpoint schema." | ||
license = "MIT" | ||
readme = "README.md" | ||
license = { file = "LICENSE.txt" } | ||
authors = [ | ||
{ name = "Vincent Emonet", email = "[email protected]" }, | ||
] | ||
maintainers = [ | ||
{ name = "Vincent Emonet", email = "[email protected]" }, | ||
] | ||
keywords = [ | ||
"SPARQL", | ||
"LLM", | ||
|
@@ -26,23 +30,21 @@ dynamic = ["version"] | |
dependencies = [ | ||
"requests", | ||
"rdflib", | ||
"openai", | ||
"bs4", | ||
"fastembed", | ||
"qdrant_client", | ||
"fastapi", | ||
"langchain", | ||
"langchain-core", | ||
"curies-rs >=0.1.3", | ||
"pydantic >=2.0.0", | ||
"pydantic-settings", | ||
] | ||
|
||
|
||
[project.optional-dependencies] | ||
web = [ | ||
"qdrant_client", | ||
chat = [ | ||
"fastapi", | ||
"pydantic >=2.0.0", | ||
"pydantic-settings", | ||
"openai", | ||
"qdrant_client", | ||
"fastembed", | ||
] | ||
test = [ | ||
"pytest", | ||
|
@@ -83,7 +85,7 @@ PIP_EXTRA_INDEX_URL = "https://aiinfra.pkgs.visualstudio.com/PublicPackages/_pac | |
[tool.hatch.envs.default] | ||
features = [ | ||
"test", | ||
"web", | ||
"chat", | ||
] | ||
post-install-commands = [] | ||
|
||
|
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