Files
AI/참고/instructor-main/instructor/cli/deprecated_hub.py
2026-05-12 19:40:31 +09:00

20 lines
534 B
Python

from typer import Exit, echo, Typer
app: Typer = Typer(help="Instructor Hub CLI (Deprecated)")
@app.command(name="hub")
def hub() -> None:
"""
This command has been deprecated. The instructor hub is no longer available.
Please refer to our cookbook examples at https://python.useinstructor.com/examples/
"""
echo(
"The instructor hub has been deprecated. Please refer to our cookbook examples at https://python.useinstructor.com/examples/"
)
raise Exit(1)
if __name__ == "__main__":
app()