mirror of
https://github.com/kennethreitz/langchain.git
synced 2026-06-20 14:40:59 +00:00
351 lines
13 KiB
Python
351 lines
13 KiB
Python
from __future__ import annotations
|
|
|
|
import json
|
|
from time import sleep
|
|
from typing import TYPE_CHECKING, Any, Dict, List, Optional, Sequence, Tuple, Union
|
|
|
|
from langchain.pydantic_v1 import Field
|
|
from langchain.schema.agent import AgentAction, AgentFinish
|
|
from langchain.schema.runnable import RunnableConfig, RunnableSerializable
|
|
from langchain.tools import format_tool_to_openai_function
|
|
from langchain.tools.base import BaseTool
|
|
|
|
if TYPE_CHECKING:
|
|
import openai
|
|
from openai.types.beta.threads import ThreadMessage
|
|
from openai.types.beta.threads.required_action_function_tool_call import (
|
|
RequiredActionFunctionToolCall,
|
|
)
|
|
|
|
|
|
class OpenAIAssistantFinish(AgentFinish):
|
|
"""AgentFinish with run and thread metadata."""
|
|
|
|
run_id: str
|
|
thread_id: str
|
|
|
|
|
|
class OpenAIAssistantAction(AgentAction):
|
|
"""AgentAction with info needed to submit custom tool output to existing run."""
|
|
|
|
tool_call_id: str
|
|
run_id: str
|
|
thread_id: str
|
|
|
|
|
|
def _get_openai_client() -> openai.OpenAI:
|
|
try:
|
|
import openai
|
|
|
|
return openai.OpenAI()
|
|
except ImportError as e:
|
|
raise ImportError(
|
|
"Unable to import openai, please install with `pip install openai`."
|
|
) from e
|
|
except AttributeError as e:
|
|
raise AttributeError(
|
|
"Please make sure you are using a v1.1-compatible version of openai. You "
|
|
'can install with `pip install "openai>=1.1"`.'
|
|
) from e
|
|
|
|
|
|
OutputType = Union[
|
|
List[OpenAIAssistantAction],
|
|
OpenAIAssistantFinish,
|
|
List["ThreadMessage"],
|
|
List["RequiredActionFunctionToolCall"],
|
|
]
|
|
|
|
|
|
class OpenAIAssistantRunnable(RunnableSerializable[Dict, OutputType]):
|
|
"""Run an OpenAI Assistant.
|
|
|
|
Example using OpenAI tools:
|
|
.. code-block:: python
|
|
|
|
from langchain_experimental.openai_assistant import OpenAIAssistantRunnable
|
|
|
|
interpreter_assistant = OpenAIAssistantRunnable.create_assistant(
|
|
name="langchain assistant",
|
|
instructions="You are a personal math tutor. Write and run code to answer math questions.",
|
|
tools=[{"type": "code_interpreter"}],
|
|
model="gpt-4-1106-preview"
|
|
)
|
|
output = interpreter_assistant.invoke({"content": "What's 10 - 4 raised to the 2.7"})
|
|
|
|
Example using custom tools and AgentExecutor:
|
|
.. code-block:: python
|
|
|
|
from langchain_experimental.openai_assistant import OpenAIAssistantRunnable
|
|
from langchain.agents import AgentExecutor
|
|
from langchain.tools import E2BDataAnalysisTool
|
|
|
|
|
|
tools = [E2BDataAnalysisTool(api_key="...")]
|
|
agent = OpenAIAssistantRunnable.create_assistant(
|
|
name="langchain assistant e2b tool",
|
|
instructions="You are a personal math tutor. Write and run code to answer math questions.",
|
|
tools=tools,
|
|
model="gpt-4-1106-preview",
|
|
as_agent=True
|
|
)
|
|
|
|
agent_executor = AgentExecutor(agent=agent, tools=tools)
|
|
agent_executor.invoke({"content": "What's 10 - 4 raised to the 2.7"})
|
|
|
|
|
|
Example using custom tools and custom execution:
|
|
.. code-block:: python
|
|
|
|
from langchain_experimental.openai_assistant import OpenAIAssistantRunnable
|
|
from langchain.agents import AgentExecutor
|
|
from langchain.schema.agent import AgentFinish
|
|
from langchain.tools import E2BDataAnalysisTool
|
|
|
|
|
|
tools = [E2BDataAnalysisTool(api_key="...")]
|
|
agent = OpenAIAssistantRunnable.create_assistant(
|
|
name="langchain assistant e2b tool",
|
|
instructions="You are a personal math tutor. Write and run code to answer math questions.",
|
|
tools=tools,
|
|
model="gpt-4-1106-preview",
|
|
as_agent=True
|
|
)
|
|
|
|
def execute_agent(agent, tools, input):
|
|
tool_map = {tool.name: tool for tool in tools}
|
|
response = agent.invoke(input)
|
|
while not isinstance(response, AgentFinish):
|
|
tool_outputs = []
|
|
for action in response:
|
|
tool_output = tool_map[action.tool].invoke(action.tool_input)
|
|
tool_outputs.append({"output": tool_output, "tool_call_id": action.tool_call_id})
|
|
response = agent.invoke(
|
|
{
|
|
"tool_outputs": tool_outputs,
|
|
"run_id": action.run_id,
|
|
"thread_id": action.thread_id
|
|
}
|
|
)
|
|
|
|
return response
|
|
|
|
response = execute_agent(agent, tools, {"content": "What's 10 - 4 raised to the 2.7"})
|
|
next_response = execute_agent(agent, tools, {"content": "now add 17.241", "thread_id": response.thread_id})
|
|
|
|
""" # noqa: E501
|
|
|
|
client: openai.OpenAI = Field(default_factory=_get_openai_client)
|
|
"""OpenAI client."""
|
|
assistant_id: str
|
|
"""OpenAI assistant id."""
|
|
check_every_ms: float = 1_000.0
|
|
"""Frequency with which to check run progress in ms."""
|
|
as_agent: bool = False
|
|
"""Use as a LangChain agent, compatible with the AgentExecutor."""
|
|
|
|
@classmethod
|
|
def create_assistant(
|
|
cls,
|
|
name: str,
|
|
instructions: str,
|
|
tools: Sequence[Union[BaseTool, dict]],
|
|
model: str,
|
|
*,
|
|
client: Optional[openai.OpenAI] = None,
|
|
**kwargs: Any,
|
|
) -> OpenAIAssistantRunnable:
|
|
"""Create an OpenAI Assistant and instantiate the Runnable.
|
|
|
|
Args:
|
|
name: Assistant name.
|
|
instructions: Assistant instructions.
|
|
tools: Assistant tools. Can be passed in in OpenAI format or as BaseTools.
|
|
model: Assistant model to use.
|
|
client: OpenAI client. Will create default client if not specified.
|
|
|
|
Returns:
|
|
OpenAIAssistantRunnable configured to run using the created assistant.
|
|
"""
|
|
client = client or _get_openai_client()
|
|
openai_tools: List = []
|
|
for tool in tools:
|
|
if isinstance(tool, BaseTool):
|
|
tool = {
|
|
"type": "function",
|
|
"function": format_tool_to_openai_function(tool),
|
|
}
|
|
openai_tools.append(tool)
|
|
assistant = client.beta.assistants.create(
|
|
name=name,
|
|
instructions=instructions,
|
|
tools=openai_tools,
|
|
model=model,
|
|
)
|
|
return cls(assistant_id=assistant.id, **kwargs)
|
|
|
|
def invoke(
|
|
self, input: dict, config: Optional[RunnableConfig] = None
|
|
) -> OutputType:
|
|
"""Invoke assistant.
|
|
|
|
Args:
|
|
input: Runnable input dict that can have:
|
|
content: User message when starting a new run.
|
|
thread_id: Existing thread to use.
|
|
run_id: Existing run to use. Should only be supplied when providing
|
|
the tool output for a required action after an initial invocation.
|
|
file_ids: File ids to include in new run. Used for retrieval.
|
|
message_metadata: Metadata to associate with new message.
|
|
thread_metadata: Metadata to associate with new thread. Only relevant
|
|
when new thread being created.
|
|
instructions: Additional run instructions.
|
|
model: Override Assistant model for this run.
|
|
tools: Override Assistant tools for this run.
|
|
run_metadata: Metadata to associate with new run.
|
|
config: Runnable config:
|
|
|
|
Return:
|
|
If self.as_agent, will return
|
|
Union[List[OpenAIAssistantAction], OpenAIAssistantFinish]. Otherwise
|
|
will return OpenAI types
|
|
Union[List[ThreadMessage], List[RequiredActionFunctionToolCall]].
|
|
"""
|
|
# Being run within AgentExecutor and there are tool outputs to submit.
|
|
if self.as_agent and input.get("intermediate_steps"):
|
|
tool_outputs = self._parse_intermediate_steps(input["intermediate_steps"])
|
|
run = self.client.beta.threads.runs.submit_tool_outputs(**tool_outputs)
|
|
# Starting a new thread and a new run.
|
|
elif "thread_id" not in input:
|
|
thread = {
|
|
"messages": [
|
|
{
|
|
"role": "user",
|
|
"content": input["content"],
|
|
"file_ids": input.get("file_ids", []),
|
|
"metadata": input.get("message_metadata"),
|
|
}
|
|
],
|
|
"metadata": input.get("thread_metadata"),
|
|
}
|
|
run = self._create_thread_and_run(input, thread)
|
|
# Starting a new run in an existing thread.
|
|
elif "run_id" not in input:
|
|
_ = self.client.beta.threads.messages.create(
|
|
input["thread_id"],
|
|
content=input["content"],
|
|
role="user",
|
|
file_ids=input.get("file_ids", []),
|
|
metadata=input.get("message_metadata"),
|
|
)
|
|
run = self._create_run(input)
|
|
# Submitting tool outputs to an existing run, outside the AgentExecutor
|
|
# framework.
|
|
else:
|
|
run = self.client.beta.threads.runs.submit_tool_outputs(**input)
|
|
return self._get_response(run.id, run.thread_id)
|
|
|
|
def _parse_intermediate_steps(
|
|
self, intermediate_steps: List[Tuple[OpenAIAssistantAction, str]]
|
|
) -> dict:
|
|
last_action, last_output = intermediate_steps[-1]
|
|
run = self._wait_for_run(last_action.run_id, last_action.thread_id)
|
|
required_tool_call_ids = {
|
|
tc.id for tc in run.required_action.submit_tool_outputs.tool_calls
|
|
}
|
|
tool_outputs = [
|
|
{"output": output, "tool_call_id": action.tool_call_id}
|
|
for action, output in intermediate_steps
|
|
if action.tool_call_id in required_tool_call_ids
|
|
]
|
|
submit_tool_outputs = {
|
|
"tool_outputs": tool_outputs,
|
|
"run_id": last_action.run_id,
|
|
"thread_id": last_action.thread_id,
|
|
}
|
|
return submit_tool_outputs
|
|
|
|
def _create_run(self, input: dict) -> Any:
|
|
params = {
|
|
k: v
|
|
for k, v in input.items()
|
|
if k in ("instructions", "model", "tools", "run_metadata")
|
|
}
|
|
return self.client.beta.threads.runs.create(
|
|
input["thread_id"],
|
|
assistant_id=self.assistant_id,
|
|
**params,
|
|
)
|
|
|
|
def _create_thread_and_run(self, input: dict, thread: dict) -> Any:
|
|
params = {
|
|
k: v
|
|
for k, v in input.items()
|
|
if k in ("instructions", "model", "tools", "run_metadata")
|
|
}
|
|
run = self.client.beta.threads.create_and_run(
|
|
assistant_id=self.assistant_id,
|
|
thread=thread,
|
|
**params,
|
|
)
|
|
return run
|
|
|
|
def _get_response(self, run_id: str, thread_id: str) -> Any:
|
|
# TODO: Pagination
|
|
import openai
|
|
|
|
run = self._wait_for_run(run_id, thread_id)
|
|
if run.status == "completed":
|
|
messages = self.client.beta.threads.messages.list(thread_id, order="asc")
|
|
new_messages = [msg for msg in messages if msg.run_id == run_id]
|
|
if not self.as_agent:
|
|
return new_messages
|
|
answer: Any = [
|
|
msg_content for msg in new_messages for msg_content in msg.content
|
|
]
|
|
if all(
|
|
isinstance(content, openai.types.beta.threads.MessageContentText)
|
|
for content in answer
|
|
):
|
|
answer = "\n".join(content.text.value for content in answer)
|
|
return OpenAIAssistantFinish(
|
|
return_values={"output": answer},
|
|
log="",
|
|
run_id=run_id,
|
|
thread_id=thread_id,
|
|
)
|
|
elif run.status == "requires_action":
|
|
if not self.as_agent:
|
|
return run.required_action.submit_tool_outputs.tool_calls
|
|
actions = []
|
|
for tool_call in run.required_action.submit_tool_outputs.tool_calls:
|
|
function = tool_call.function
|
|
args = json.loads(function.arguments)
|
|
if len(args) == 1 and "__arg1" in args:
|
|
args = args["__arg1"]
|
|
actions.append(
|
|
OpenAIAssistantAction(
|
|
tool=function.name,
|
|
tool_input=args,
|
|
tool_call_id=tool_call.id,
|
|
log="",
|
|
run_id=run_id,
|
|
thread_id=thread_id,
|
|
)
|
|
)
|
|
return actions
|
|
else:
|
|
run_info = json.dumps(run.dict(), indent=2)
|
|
raise ValueError(
|
|
f"Unexpected run status: {run.status}. Full run info:\n\n{run_info})"
|
|
)
|
|
|
|
def _wait_for_run(self, run_id: str, thread_id: str) -> Any:
|
|
in_progress = True
|
|
while in_progress:
|
|
run = self.client.beta.threads.runs.retrieve(run_id, thread_id=thread_id)
|
|
in_progress = run.status in ("in_progress", "queued")
|
|
if in_progress:
|
|
sleep(self.check_every_ms / 1000)
|
|
return run
|