-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cli): add basic cli setup with package discovery
- Loading branch information
1 parent
5a6ebe7
commit f2bd537
Showing
6 changed files
with
124 additions
and
2 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
# Ragbits CLI |
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
[project] | ||
name = "ragbits-cli" | ||
version = "0.1.0" | ||
description = "A CLI application for ragbits - building blocks for rapid development of GenAI applications" | ||
readme = "README.md" | ||
requires-python = ">=3.10" | ||
license = "MIT" | ||
authors = [ | ||
{ name = "deepsense.ai", email = "[email protected]"} | ||
] | ||
keywords = [ | ||
"Retrieval Augmented Generation", | ||
"RAG", | ||
"Large Language Models", | ||
"LLMs", | ||
"Generative AI", | ||
"GenAI", | ||
"Prompt Management" | ||
] | ||
classifiers = [ | ||
"Development Status :: 1 - Planning", | ||
"Environment :: Console", | ||
"Intended Audience :: Science/Research", | ||
"License :: OSI Approved :: MIT License", | ||
"Natural Language :: English", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Topic :: Scientific/Engineering :: Artificial Intelligence", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
"Private :: Do Not Upload" | ||
] | ||
dependencies = [ | ||
"typer>=0.12.5", | ||
] | ||
|
||
[project.scripts] | ||
ragbits = "ragbits.cli:main" | ||
rbts = "ragbits.cli:main" | ||
|
||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[tool.hatch.metadata] | ||
allow-direct-references = true | ||
|
||
[tool.hatch.build.targets.wheel] | ||
packages = ["src/ragbits"] | ||
|
||
[tool.pytest.ini_options] | ||
asyncio_mode = "auto" |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import importlib.util | ||
import pkgutil | ||
|
||
from typer import Typer | ||
|
||
import ragbits | ||
|
||
app = Typer() | ||
|
||
|
||
def main(): | ||
""" | ||
Main entry point for the CLI. | ||
This function registers all the CLI modules in the ragbits packages: | ||
- iterates over every package in the ragbits.* namespace | ||
- it looks for `cli` package / module | ||
- if found it imports the `register` function from the `cli` module and calls it with the `app` object | ||
- register function should add the CLI commands to the `app` object | ||
""" | ||
|
||
cli_enabled_modules = [ | ||
module for module in pkgutil.iter_modules(ragbits.__path__) | ||
if module.ispkg and module.name != "cli" and importlib.util.find_spec(f"ragbits.{module.name}.cli") | ||
] | ||
for module in cli_enabled_modules: | ||
register_func = importlib.import_module(f"ragbits.{module.name}.cli").register | ||
register_func(app) | ||
|
||
app() |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
from typer import Typer | ||
|
||
|
||
prompts_app = Typer() | ||
|
||
|
||
@prompts_app.command() | ||
def foo(): | ||
"""Placeholder command""" | ||
print("foo") | ||
|
||
|
||
def register(app: Typer) -> None: | ||
""" | ||
Register the CLI commands for the ragbits-core package. | ||
Args: | ||
app: The Typer object to register the commands with. | ||
""" | ||
app.add_typer(prompts_app, name="prompts") |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.