Skip to content

Commit

Permalink
Adds confirmation logs after creating a new project (langchain-ai#12618)
Browse files Browse the repository at this point in the history
@efriis @hwchase17

---------

Co-authored-by: Erick Friis <[email protected]>
  • Loading branch information
2 people authored and kyle-cassidy committed May 10, 2024
1 parent e0926f1 commit 7a19b08
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions libs/cli/langchain_cli/namespaces/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,13 @@ def new(
if has_packages:
add(package, project_dir=destination_dir, pip=pip_bool)

typer.echo(f'\n\nSuccess! Created a new LangChain app under "./{app_name}"!\n\n')
typer.echo("Next, enter your new app directory by running:\n")
typer.echo(f" cd ./{app_name}\n")
typer.echo("Then add templates with commands like:\n")
typer.echo(" langchain app add extraction-openai-functions")
typer.echo(" langchain app add git+ssh://[email protected]/efriis/simple-pirate.git\n\n")


@app_cli.command()
def add(
Expand Down

0 comments on commit 7a19b08

Please sign in to comment.