* Fix mark_branch function in Graph class to properly handle visited vertices * Refactor build_and_cache_graph_from_db function in utils.py to simplify code and remove unnecessary parameter * Fix retrieval of graph from cache in retrieve_vertices_order function * Fix possible_id type annotation in get_id_from_search_string function * Refactor APIRequest class to improve variable naming and remove unnecessary underscore prefix in headers parameter * Refactor buildVertices function in buildUtils.ts to improve code readability and remove unnecessary variable assignment * Fix API endpoints in test_endpoints.py to use correct HTTP methods
316 lines
11 KiB
Python
316 lines
11 KiB
Python
import warnings
|
|
from pathlib import Path
|
|
from typing import TYPE_CHECKING, Optional
|
|
|
|
from fastapi import HTTPException
|
|
from platformdirs import user_cache_dir
|
|
from sqlmodel import Session
|
|
|
|
from langflow.graph.graph.base import Graph
|
|
from langflow.services.chat.service import ChatService
|
|
from langflow.services.database.models.flow import Flow
|
|
from langflow.services.store.schema import StoreComponentCreate
|
|
from langflow.services.store.utils import get_lf_version_from_pypi
|
|
|
|
if TYPE_CHECKING:
|
|
from langflow.graph.vertex.base import Vertex
|
|
from langflow.services.database.models.flow.model import Flow
|
|
|
|
|
|
API_WORDS = ["api", "key", "token"]
|
|
|
|
|
|
def has_api_terms(word: str):
|
|
return "api" in word and ("key" in word or ("token" in word and "tokens" not in word))
|
|
|
|
|
|
def remove_api_keys(flow: dict):
|
|
"""Remove api keys from flow data."""
|
|
if flow.get("data") and flow["data"].get("nodes"):
|
|
for node in flow["data"]["nodes"]:
|
|
node_data = node.get("data").get("node")
|
|
template = node_data.get("template")
|
|
for value in template.values():
|
|
if isinstance(value, dict) and has_api_terms(value["name"]) and value.get("password"):
|
|
value["value"] = None
|
|
|
|
return flow
|
|
|
|
|
|
def build_input_keys_response(langchain_object, artifacts):
|
|
"""Build the input keys response."""
|
|
|
|
input_keys_response = {
|
|
"input_keys": {key: "" for key in langchain_object.input_keys},
|
|
"memory_keys": [],
|
|
"handle_keys": artifacts.get("handle_keys", []),
|
|
}
|
|
|
|
# Set the input keys values from artifacts
|
|
for key, value in artifacts.items():
|
|
if key in input_keys_response["input_keys"]:
|
|
input_keys_response["input_keys"][key] = value
|
|
# If the object has memory, that memory will have a memory_variables attribute
|
|
# memory variables should be removed from the input keys
|
|
if hasattr(langchain_object, "memory") and hasattr(langchain_object.memory, "memory_variables"):
|
|
# Remove memory variables from input keys
|
|
input_keys_response["input_keys"] = {
|
|
key: value
|
|
for key, value in input_keys_response["input_keys"].items()
|
|
if key not in langchain_object.memory.memory_variables
|
|
}
|
|
# Add memory variables to memory_keys
|
|
input_keys_response["memory_keys"] = langchain_object.memory.memory_variables
|
|
|
|
if hasattr(langchain_object, "prompt") and hasattr(langchain_object.prompt, "template"):
|
|
input_keys_response["template"] = langchain_object.prompt.template
|
|
|
|
return input_keys_response
|
|
|
|
|
|
def update_frontend_node_with_template_values(frontend_node, raw_frontend_node):
|
|
"""
|
|
Updates the given frontend node with values from the raw template data.
|
|
|
|
:param frontend_node: A dict representing a built frontend node.
|
|
:param raw_template_data: A dict representing raw template data.
|
|
:return: Updated frontend node.
|
|
"""
|
|
if not is_valid_data(frontend_node, raw_frontend_node):
|
|
return frontend_node
|
|
|
|
# Check if the display_name is different than "CustomComponent"
|
|
# if so, update the display_name in the frontend_node
|
|
if raw_frontend_node["display_name"] != "CustomComponent":
|
|
frontend_node["display_name"] = raw_frontend_node["display_name"]
|
|
|
|
update_template_values(frontend_node["template"], raw_frontend_node["template"])
|
|
|
|
return frontend_node
|
|
|
|
|
|
def raw_frontend_data_is_valid(raw_frontend_data):
|
|
"""Check if the raw frontend data is valid for processing."""
|
|
return "template" in raw_frontend_data and "display_name" in raw_frontend_data
|
|
|
|
|
|
def is_valid_data(frontend_node, raw_frontend_data):
|
|
"""Check if the data is valid for processing."""
|
|
|
|
return frontend_node and "template" in frontend_node and raw_frontend_data_is_valid(raw_frontend_data)
|
|
|
|
|
|
def update_template_values(frontend_template, raw_template):
|
|
"""Updates the frontend template with values from the raw template."""
|
|
for key, value_dict in raw_template.items():
|
|
if key == "code" or not isinstance(value_dict, dict):
|
|
continue
|
|
|
|
update_template_field(frontend_template, key, value_dict)
|
|
|
|
|
|
def update_template_field(frontend_template, key, value_dict):
|
|
"""Updates a specific field in the frontend template."""
|
|
template_field = frontend_template.get(key)
|
|
if not template_field or template_field.get("type") != value_dict.get("type"):
|
|
return
|
|
|
|
if "value" in value_dict and value_dict["value"]:
|
|
template_field["value"] = value_dict["value"]
|
|
|
|
if "file_path" in value_dict and value_dict["file_path"]:
|
|
file_path_value = get_file_path_value(value_dict["file_path"])
|
|
if not file_path_value:
|
|
# If the file does not exist, remove the value from the template_field["value"]
|
|
template_field["value"] = ""
|
|
template_field["file_path"] = file_path_value
|
|
|
|
if "load_from_db" in value_dict and value_dict["load_from_db"]:
|
|
template_field["load_from_db"] = value_dict["load_from_db"]
|
|
|
|
|
|
def get_file_path_value(file_path):
|
|
"""Get the file path value if the file exists, else return empty string."""
|
|
try:
|
|
path = Path(file_path)
|
|
except TypeError:
|
|
return ""
|
|
|
|
# Check for safety
|
|
# If the path is not in the cache dir, return empty string
|
|
# This is to prevent access to files outside the cache dir
|
|
# If the path is not a file, return empty string
|
|
if not path.exists() or not str(path).startswith(user_cache_dir("langflow", "langflow")):
|
|
return ""
|
|
return file_path
|
|
|
|
|
|
def validate_is_component(flows: list["Flow"]):
|
|
for flow in flows:
|
|
if not flow.data or flow.is_component is not None:
|
|
continue
|
|
|
|
is_component = get_is_component_from_data(flow.data)
|
|
if is_component is not None:
|
|
flow.is_component = is_component
|
|
else:
|
|
flow.is_component = len(flow.data.get("nodes", [])) == 1
|
|
return flows
|
|
|
|
|
|
def get_is_component_from_data(data: dict):
|
|
"""Returns True if the data is a component."""
|
|
return data.get("is_component")
|
|
|
|
|
|
async def check_langflow_version(component: StoreComponentCreate):
|
|
from langflow.version.version import __version__ as current_version # type: ignore
|
|
|
|
if not component.last_tested_version:
|
|
component.last_tested_version = current_version
|
|
|
|
langflow_version = get_lf_version_from_pypi()
|
|
if langflow_version is None:
|
|
raise HTTPException(status_code=500, detail="Unable to verify the latest version of Langflow")
|
|
elif langflow_version != component.last_tested_version:
|
|
warnings.warn(
|
|
f"Your version of Langflow ({component.last_tested_version}) is outdated. "
|
|
f"Please update to the latest version ({langflow_version}) and try again."
|
|
)
|
|
|
|
|
|
def format_elapsed_time(elapsed_time: float) -> str:
|
|
"""Format elapsed time to a human-readable format coming from perf_counter().
|
|
|
|
- Less than 1 second: returns milliseconds
|
|
- Less than 1 minute: returns seconds rounded to 2 decimals
|
|
- 1 minute or more: returns minutes and seconds
|
|
"""
|
|
if elapsed_time < 1:
|
|
milliseconds = int(round(elapsed_time * 1000))
|
|
return f"{milliseconds} ms"
|
|
elif elapsed_time < 60:
|
|
seconds = round(elapsed_time, 2)
|
|
unit = "second" if seconds == 1 else "seconds"
|
|
return f"{seconds} {unit}"
|
|
else:
|
|
minutes = int(elapsed_time // 60)
|
|
seconds = round(elapsed_time % 60, 2)
|
|
minutes_unit = "minute" if minutes == 1 else "minutes"
|
|
seconds_unit = "second" if seconds == 1 else "seconds"
|
|
return f"{minutes} {minutes_unit}, {seconds} {seconds_unit}"
|
|
|
|
|
|
async def build_and_cache_graph_from_db(
|
|
flow_id: str,
|
|
session: Session,
|
|
chat_service: "ChatService",
|
|
):
|
|
"""Build and cache the graph."""
|
|
flow: Optional[Flow] = session.get(Flow, flow_id)
|
|
if not flow or not flow.data:
|
|
raise ValueError("Invalid flow ID")
|
|
graph = Graph.from_payload(flow.data, flow_id)
|
|
await chat_service.set_cache(flow_id, graph)
|
|
return graph
|
|
|
|
|
|
async def build_and_cache_graph_from_data(
|
|
flow_id: str,
|
|
chat_service: "ChatService",
|
|
graph_data: dict,
|
|
): # -> Graph | Any:
|
|
"""Build and cache the graph."""
|
|
graph = Graph.from_payload(graph_data, flow_id)
|
|
await chat_service.set_cache(flow_id, graph)
|
|
return graph
|
|
|
|
|
|
def format_syntax_error_message(exc: SyntaxError) -> str:
|
|
"""Format a SyntaxError message for returning to the frontend."""
|
|
if exc.text is None:
|
|
return f"Syntax error in code. Error on line {exc.lineno}"
|
|
return f"Syntax error in code. Error on line {exc.lineno}: {exc.text.strip()}"
|
|
|
|
|
|
def get_causing_exception(exc: BaseException) -> BaseException:
|
|
"""Get the causing exception from an exception."""
|
|
if hasattr(exc, "__cause__") and exc.__cause__:
|
|
return get_causing_exception(exc.__cause__)
|
|
return exc
|
|
|
|
|
|
def format_exception_message(exc: Exception) -> str:
|
|
"""Format an exception message for returning to the frontend."""
|
|
# We need to check if the __cause__ is a SyntaxError
|
|
# If it is, we need to return the message of the SyntaxError
|
|
causing_exception = get_causing_exception(exc)
|
|
if isinstance(causing_exception, SyntaxError):
|
|
return format_syntax_error_message(causing_exception)
|
|
return str(exc)
|
|
|
|
|
|
async def get_next_runnable_vertices(
|
|
graph: Graph,
|
|
vertex: "Vertex",
|
|
vertex_id: str,
|
|
chat_service: ChatService,
|
|
flow_id: str,
|
|
):
|
|
"""
|
|
Retrieves the next runnable vertices in the graph for a given vertex.
|
|
|
|
Args:
|
|
graph (Graph): The graph object representing the flow.
|
|
vertex (Vertex): The current vertex.
|
|
vertex_id (str): The ID of the current vertex.
|
|
chat_service (ChatService): The chat service object.
|
|
flow_id (str): The ID of the flow.
|
|
|
|
Returns:
|
|
list: A list of IDs of the next runnable vertices.
|
|
|
|
"""
|
|
async with chat_service._cache_locks[flow_id] as lock:
|
|
graph.remove_from_predecessors(vertex_id)
|
|
direct_successors_ready = [v for v in vertex.successors_ids if graph.is_vertex_runnable(v)]
|
|
if not direct_successors_ready:
|
|
# No direct successors ready, look for runnable predecessors of successors
|
|
next_runnable_vertices = graph.find_runnable_predecessors_for_successors(vertex_id)
|
|
else:
|
|
next_runnable_vertices = direct_successors_ready
|
|
|
|
for v_id in set(next_runnable_vertices): # Use set to avoid duplicates
|
|
graph.vertices_to_run.remove(v_id)
|
|
graph.remove_from_predecessors(v_id)
|
|
await chat_service.set_cache(flow_id=flow_id, data=graph, lock=lock)
|
|
return next_runnable_vertices
|
|
|
|
|
|
def get_top_level_vertices(graph, vertices_ids):
|
|
"""
|
|
Retrieves the top-level vertices from the given graph based on the provided vertex IDs.
|
|
|
|
Args:
|
|
graph (Graph): The graph object containing the vertices.
|
|
vertices_ids (list): A list of vertex IDs.
|
|
|
|
Returns:
|
|
list: A list of top-level vertex IDs.
|
|
|
|
"""
|
|
top_level_vertices = []
|
|
for vertex_id in vertices_ids:
|
|
vertex = graph.get_vertex(vertex_id)
|
|
if vertex.parent_is_top_level:
|
|
top_level_vertices.append(vertex.parent_node_id)
|
|
else:
|
|
top_level_vertices.append(vertex_id)
|
|
return top_level_vertices
|
|
|
|
|
|
def parse_exception(exc):
|
|
"""Parse the exception message."""
|
|
if hasattr(exc, "body"):
|
|
return exc.body["message"]
|
|
return str(exc)
|