2023-11-16 18:34:04 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "chain-of-note-wiki"
|
|
|
|
version = "0.0.1"
|
2023-11-22 06:41:12 +00:00
|
|
|
description = "Implementation of Chain of Note prompting for Wikipedia."
|
2023-11-16 18:34:04 +00:00
|
|
|
authors = []
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = ">=3.8.1,<4.0"
|
2024-01-07 02:31:46 +00:00
|
|
|
langchain = "^0.1"
|
2023-11-16 18:34:04 +00:00
|
|
|
wikipedia = "^1.4.0"
|
|
|
|
langchainhub = "^0.1.14"
|
templates: migrate to langchain_anthropic package to support Claude 3 models (#19393)
- **Description:** update langchain anthropic templates to support
Claude 3 (iterative search, chain of note, summarization, and XML
response)
- **Issue:** issue # N/A. Stability issues and errors encountered when
trying to use older langchain and anthropic libraries.
- **Dependencies:**
- langchain_anthropic version 0.1.4\
- anthropic package version in the range ">=0.17.0,<1" to support
langchain_anthropic.
- **Twitter handle:** @d_w_b7
- [ x]**Add tests and docs**: If you're adding a new integration, please
include
1. used instructions in the README for testing
- [ x] **Lint and test**: Run `make format`, `make lint` and `make test`
from the root of the package(s) you've modified. See contribution
guidelines for more: https://python.langchain.com/docs/contributing/
Additional guidelines:
- Make sure optional dependencies are imported within a function.
- Please do not add dependencies to pyproject.toml files (even optional
ones) unless they are required for unit tests.
- Most PRs should not touch more than one package.
- Changes should be backwards compatible.
- If you are adding something to community, do not re-import it in
langchain.
If no one reviews your PR within a few days, please @-mention one of
baskaryan, efriis, eyurtsev, hwchase17.
---------
Co-authored-by: Bagatur <22008038+baskaryan@users.noreply.github.com>
Co-authored-by: Erick Friis <erick@langchain.dev>
2024-04-06 00:33:59 +00:00
|
|
|
langchain-anthropic = "^0.1.4"
|
2023-11-16 18:34:04 +00:00
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
2024-02-06 01:12:12 +00:00
|
|
|
langchain-cli = ">=0.0.21"
|
2024-03-13 03:48:56 +00:00
|
|
|
fastapi = ">=0.104.0,<1"
|
2023-11-16 18:34:04 +00:00
|
|
|
sse-starlette = "^1.6.5"
|
|
|
|
|
|
|
|
[tool.langserve]
|
|
|
|
export_module = "chain_of_note_wiki"
|
|
|
|
export_attr = "chain"
|
|
|
|
|
2023-11-22 06:41:12 +00:00
|
|
|
[tool.templates-hub]
|
|
|
|
use-case = "rag"
|
|
|
|
author = "LangChain"
|
|
|
|
integrations = ["Anthropic", "Wikipedia", "LangChain Hub"]
|
|
|
|
tags = ["paper", "prompt-hub"]
|
|
|
|
|
2023-11-16 18:34:04 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|