mirror of
https://github.com/hwchase17/langchain
synced 2024-11-06 03:20:49 +00:00
ed58eeb9c5
Moved the following modules to new package langchain-community in a backwards compatible fashion: ``` mv langchain/langchain/adapters community/langchain_community mv langchain/langchain/callbacks community/langchain_community/callbacks mv langchain/langchain/chat_loaders community/langchain_community mv langchain/langchain/chat_models community/langchain_community mv langchain/langchain/document_loaders community/langchain_community mv langchain/langchain/docstore community/langchain_community mv langchain/langchain/document_transformers community/langchain_community mv langchain/langchain/embeddings community/langchain_community mv langchain/langchain/graphs community/langchain_community mv langchain/langchain/llms community/langchain_community mv langchain/langchain/memory/chat_message_histories community/langchain_community mv langchain/langchain/retrievers community/langchain_community mv langchain/langchain/storage community/langchain_community mv langchain/langchain/tools community/langchain_community mv langchain/langchain/utilities community/langchain_community mv langchain/langchain/vectorstores community/langchain_community mv langchain/langchain/agents/agent_toolkits community/langchain_community mv langchain/langchain/cache.py community/langchain_community mv langchain/langchain/adapters community/langchain_community mv langchain/langchain/callbacks community/langchain_community/callbacks mv langchain/langchain/chat_loaders community/langchain_community mv langchain/langchain/chat_models community/langchain_community mv langchain/langchain/document_loaders community/langchain_community mv langchain/langchain/docstore community/langchain_community mv langchain/langchain/document_transformers community/langchain_community mv langchain/langchain/embeddings community/langchain_community mv langchain/langchain/graphs community/langchain_community mv langchain/langchain/llms community/langchain_community mv langchain/langchain/memory/chat_message_histories community/langchain_community mv langchain/langchain/retrievers community/langchain_community mv langchain/langchain/storage community/langchain_community mv langchain/langchain/tools community/langchain_community mv langchain/langchain/utilities community/langchain_community mv langchain/langchain/vectorstores community/langchain_community mv langchain/langchain/agents/agent_toolkits community/langchain_community mv langchain/langchain/cache.py community/langchain_community ``` Moved the following to core ``` mv langchain/langchain/utils/json_schema.py core/langchain_core/utils mv langchain/langchain/utils/html.py core/langchain_core/utils mv langchain/langchain/utils/strings.py core/langchain_core/utils cat langchain/langchain/utils/env.py >> core/langchain_core/utils/env.py rm langchain/langchain/utils/env.py ``` See .scripts/community_split/script_integrations.sh for all changes
52 lines
1.5 KiB
Python
52 lines
1.5 KiB
Python
from typing import Literal, Optional, Type, TypedDict
|
|
|
|
from langchain_core.pydantic_v1 import BaseModel
|
|
from langchain_core.utils.json_schema import dereference_refs
|
|
|
|
|
|
class FunctionDescription(TypedDict):
|
|
"""Representation of a callable function to the OpenAI API."""
|
|
|
|
name: str
|
|
"""The name of the function."""
|
|
description: str
|
|
"""A description of the function."""
|
|
parameters: dict
|
|
"""The parameters of the function."""
|
|
|
|
|
|
class ToolDescription(TypedDict):
|
|
"""Representation of a callable function to the OpenAI API."""
|
|
|
|
type: Literal["function"]
|
|
function: FunctionDescription
|
|
|
|
|
|
def convert_pydantic_to_openai_function(
|
|
model: Type[BaseModel],
|
|
*,
|
|
name: Optional[str] = None,
|
|
description: Optional[str] = None,
|
|
) -> FunctionDescription:
|
|
"""Converts a Pydantic model to a function description for the OpenAI API."""
|
|
schema = dereference_refs(model.schema())
|
|
schema.pop("definitions", None)
|
|
return {
|
|
"name": name or schema["title"],
|
|
"description": description or schema["description"],
|
|
"parameters": schema,
|
|
}
|
|
|
|
|
|
def convert_pydantic_to_openai_tool(
|
|
model: Type[BaseModel],
|
|
*,
|
|
name: Optional[str] = None,
|
|
description: Optional[str] = None,
|
|
) -> ToolDescription:
|
|
"""Converts a Pydantic model to a function description for the OpenAI API."""
|
|
function = convert_pydantic_to_openai_function(
|
|
model, name=name, description=description
|
|
)
|
|
return {"type": "function", "function": function}
|