forked from langchain-ai/langchain
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix/giga tools inected variables fix (#220)
* Micro fixes with typo changes * Support injected variables in langgraph * Test for inected arguments * Fixing lint errors * Fixing tests * Update dependencies
- Loading branch information
Showing
9 changed files
with
41 additions
and
17 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
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 |
---|---|---|
|
@@ -118,13 +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(f'\n\nSuccess! Created a new GigaChain 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(" gigachain app add extraction-openai-functions") | ||
typer.echo( | ||
" langchain app add git+ssh://[email protected]/efriis/simple-pirate.git\n\n" | ||
" gigachain app add git+ssh://[email protected]/efriis/simple-pirate.git\n\n" | ||
) | ||
|
||
|
||
|
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.
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
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
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
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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
|
||
[tool.poetry] | ||
name = "summarize-anthropic" | ||
version = "0.1.0" | ||
version = "0.1.0post1" | ||
description = "This template uses Anthropic's `Claude2` to summarize long documents." | ||
authors = ["Lance Martin <[email protected]>"] | ||
readme = "README.md" | ||
|
@@ -10,14 +10,14 @@ readme = "README.md" | |
python = ">=3.8.1,<4.0" | ||
gigachain = "^0.1" | ||
langchainhub = ">=0.1.13" | ||
gigachain-anthropic = "^0.1.4" | ||
gigachain-anthropic = "^0.1.23" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
gigachain-cli = ">=0.0.21" | ||
|
||
[tool.templates-hub] | ||
use-case = "summarization" | ||
author = "LangChain" | ||
author = "LangChain, GigaChain" | ||
integrations = ["Anthropic"] | ||
tags = ["summarization"] | ||
|
||
|