Spaces:
Runtime error
Runtime error
File size: 1,259 Bytes
4670a90 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
from pathlib import Path
from typing import Optional
import typer
from typing_extensions import Annotated
from .config import get_config
app = typer.Typer()
ConfigPath = Annotated[
Optional[Path],
typer.Option(
"--config",
"-c",
help="The path to a chatdocs.yml configuration file.",
),
]
@app.command()
def download(config: ConfigPath = None):
from .download import download
config = get_config(config)
download(config=config)
@app.command()
def add(
directory: Annotated[
Path,
typer.Argument(help="The path to a directory containing documents."),
],
config: ConfigPath = None,
):
from .add import add
config = get_config(config)
add(config=config, source_directory=str(directory))
@app.command()
def chat(
query: Annotated[
Optional[str],
typer.Argument(
help="The query to use for retrieval. If not specified, runs in interactive mode."
),
] = None,
config: ConfigPath = None,
):
from .chat import chat
config = get_config(config)
chat(config=config, query=query)
@app.command()
def ui(config: ConfigPath = None):
from .ui import ui
config = get_config(config)
ui(config=config)
|