2023-11-09 02:33:31 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "openai-functions-tool-retrieval-agent"
|
|
|
|
version = "0.0.1"
|
2023-11-22 06:41:12 +00:00
|
|
|
description = "Use large numbers of tools with tool retrieval strategies"
|
2023-11-09 02:33:31 +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-17 01:10:08 +00:00
|
|
|
openai = "<2"
|
2023-11-09 02:33:31 +00:00
|
|
|
tiktoken = "^0.5.1"
|
|
|
|
faiss-cpu = "^1.7.4"
|
|
|
|
|
|
|
|
[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-09 02:33:31 +00:00
|
|
|
sse-starlette = "^1.6.5"
|
|
|
|
|
|
|
|
[tool.langserve]
|
|
|
|
export_module = "openai_functions_tool_retrieval_agent"
|
|
|
|
export_attr = "agent_executor"
|
|
|
|
|
2023-11-22 06:41:12 +00:00
|
|
|
[tool.templates-hub]
|
|
|
|
use-case = "agents"
|
|
|
|
author = "LangChain"
|
|
|
|
integrations = ["OpenAI", "FAISS"]
|
|
|
|
tags = ["agents", "function-calling"]
|
|
|
|
|
2023-11-09 02:33:31 +00:00
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|