Skip to content

Commit 4795c7d

Browse files
committed
format new version
1 parent 4291fe0 commit 4795c7d

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "raglight"
3-
version = "3.1.0"
3+
version = "3.1.1"
44
description = "RAGLight is a lightweight and modular Python library for implementing Retrieval-Augmented Generation (RAG). It enhances the capabilities of Large Language Models (LLMs) by combining document retrieval with natural language inference."
55
authors = [
66
{name = "Bessouat40",email = "roman.bessouat@orange.fr"}

src/raglight/cli/main.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,12 @@ def download_nltk_resources_if_needed():
4848
console = Console()
4949

5050

51-
def simple_select(message: str, choices: List[str], default: Optional[str] = None) -> str:
51+
def simple_select(
52+
message: str, choices: List[str], default: Optional[str] = None
53+
) -> str:
5254
"""Prompt the user to select from a list using arrow keys."""
5355
from InquirerPy import inquirer
56+
5457
return inquirer.select(message=message, choices=choices, default=default).execute()
5558

5659

0 commit comments

Comments
 (0)