Files
letta-server/letta/server/rest_api/routers/v1/blocks.py
Kian Jones 25d54dd896 chore: enable F821, F401, W293 (#9503)
* auto fixes

* auto fix pt2 and transitive deps and undefined var checking locals()

* manual fixes (ignored or letta-code fixed)

* fix circular import
2026-02-24 10:55:08 -08:00

280 lines
11 KiB
Python

from typing import TYPE_CHECKING, List, Literal, Optional
from fastapi import APIRouter, Body, Depends, Query
from letta.orm.errors import NoResultFound
from letta.schemas.agent import AgentRelationships, AgentState
from letta.schemas.block import Block, BlockResponse, BlockUpdate, CreateBlock
from letta.server.rest_api.dependencies import HeaderParams, get_headers, get_letta_server
from letta.server.server import SyncServer
from letta.utils import is_1_0_sdk_version
from letta.validators import (
BlockDescriptionSearchQuery,
BlockId,
BlockLabelQuery,
BlockLabelSearchQuery,
BlockNameQuery,
BlockValueSearchQuery,
IdentityIdQuery,
)
if TYPE_CHECKING:
pass
router = APIRouter(prefix="/blocks", tags=["blocks"])
@router.get("/", response_model=List[BlockResponse], operation_id="list_blocks")
async def list_blocks(
# query parameters
label: BlockLabelQuery = None,
templates_only: bool = Query(False, description="Whether to include only templates"),
name: BlockNameQuery = None,
identity_id: IdentityIdQuery = None,
identifier_keys: Optional[List[str]] = Query(None, description="Search agents by identifier keys"),
project_id: Optional[str] = Query(None, description="Search blocks by project id"),
tags: Optional[List[str]] = Query(None, description="List of tags to filter blocks by"),
match_all_tags: bool = Query(
False,
description="If True, only returns blocks that match ALL given tags. Otherwise, return blocks that have ANY of the passed-in tags.",
),
limit: Optional[int] = Query(50, description="Number of blocks to return"),
before: Optional[str] = Query(
None,
description="Block ID cursor for pagination. Returns blocks that come before this block ID in the specified sort order",
),
after: Optional[str] = Query(
None,
description="Block ID cursor for pagination. Returns blocks that come after this block ID in the specified sort order",
),
order: Literal["asc", "desc"] = Query(
"asc", description="Sort order for blocks by creation time. 'asc' for oldest first, 'desc' for newest first"
),
order_by: Literal["created_at"] = Query("created_at", description="Field to sort by"),
label_search: BlockLabelSearchQuery = None,
description_search: BlockDescriptionSearchQuery = None,
value_search: BlockValueSearchQuery = None,
connected_to_agents_count_gt: Optional[int] = Query(
None,
description=(
"Filter blocks by the number of connected agents. "
"If provided, returns blocks that have more than this number of connected agents."
),
),
connected_to_agents_count_lt: Optional[int] = Query(
None,
description=(
"Filter blocks by the number of connected agents. "
"If provided, returns blocks that have less than this number of connected agents."
),
),
connected_to_agents_count_eq: Optional[List[int]] = Query(
None,
description=(
"Filter blocks by the exact number of connected agents. "
"If provided, returns blocks that have exactly this number of connected agents."
),
),
show_hidden_blocks: bool | None = Query(
False,
include_in_schema=False,
description="If set to True, include blocks marked as hidden in the results.",
),
server: SyncServer = Depends(get_letta_server),
headers: HeaderParams = Depends(get_headers),
):
actor = await server.user_manager.get_actor_or_default_async(actor_id=headers.actor_id)
return await server.block_manager.get_blocks_async(
actor=actor,
label=label,
is_template=templates_only,
value_search=value_search,
label_search=label_search,
description_search=description_search,
template_name=name,
identity_id=identity_id,
identifier_keys=identifier_keys,
project_id=project_id,
before=before,
connected_to_agents_count_gt=connected_to_agents_count_gt,
connected_to_agents_count_lt=connected_to_agents_count_lt,
connected_to_agents_count_eq=connected_to_agents_count_eq,
limit=limit,
after=after,
ascending=(order == "asc"),
show_hidden_blocks=show_hidden_blocks,
tags=tags,
match_all_tags=match_all_tags,
)
@router.get("/count", response_model=int, operation_id="count_blocks")
async def count_blocks(
label: BlockLabelQuery = None,
templates_only: bool = Query(False, description="Whether to include only templates"),
name: BlockNameQuery = None,
tags: Optional[List[str]] = Query(None, description="List of tags to filter blocks by"),
match_all_tags: bool = Query(
False,
description="If True, only counts blocks that match ALL given tags. Otherwise, counts blocks that have ANY of the passed-in tags.",
),
project_id: Optional[str] = Query(None, description="Search blocks by project id"),
server: SyncServer = Depends(get_letta_server),
headers: HeaderParams = Depends(get_headers),
):
"""
Count all blocks with optional filtering.
Supports the same filters as list_blocks for consistent querying.
"""
actor = await server.user_manager.get_actor_or_default_async(actor_id=headers.actor_id)
# If no filters are provided, use the simpler size_async method
if all(param is None or param is False for param in [label, templates_only, name, tags, project_id]):
return await server.block_manager.size_async(actor=actor)
return await server.block_manager.count_blocks_async(
actor=actor,
label=label,
is_template=templates_only,
template_name=name,
tags=tags,
match_all_tags=match_all_tags,
project_id=project_id,
)
@router.post("/", response_model=BlockResponse, operation_id="create_block")
async def create_block(
create_block: CreateBlock = Body(...),
server: SyncServer = Depends(get_letta_server),
headers: HeaderParams = Depends(get_headers),
):
actor = await server.user_manager.get_actor_or_default_async(actor_id=headers.actor_id)
block = Block(**create_block.model_dump())
return await server.block_manager.create_or_update_block_async(actor=actor, block=block)
@router.patch("/{block_id}", response_model=BlockResponse, operation_id="modify_block")
async def modify_block(
block_id: BlockId,
block_update: BlockUpdate = Body(...),
server: SyncServer = Depends(get_letta_server),
headers: HeaderParams = Depends(get_headers),
):
actor = await server.user_manager.get_actor_or_default_async(actor_id=headers.actor_id)
return await server.block_manager.update_block_async(block_id=block_id, block_update=block_update, actor=actor)
@router.delete("/{block_id}", operation_id="delete_block")
async def delete_block(
block_id: BlockId,
server: SyncServer = Depends(get_letta_server),
headers: HeaderParams = Depends(get_headers),
):
actor = await server.user_manager.get_actor_or_default_async(actor_id=headers.actor_id)
await server.block_manager.delete_block_async(block_id=block_id, actor=actor)
@router.get("/{block_id}", response_model=BlockResponse, operation_id="retrieve_block")
async def retrieve_block(
block_id: BlockId,
server: SyncServer = Depends(get_letta_server),
headers: HeaderParams = Depends(get_headers),
):
actor = await server.user_manager.get_actor_or_default_async(actor_id=headers.actor_id)
block = await server.block_manager.get_block_by_id_async(block_id=block_id, actor=actor)
if block is None:
raise NoResultFound(f"Block with id '{block_id}' not found")
return block
@router.get("/{block_id}/agents", response_model=List[AgentState], operation_id="list_agents_for_block")
async def list_agents_for_block(
block_id: BlockId,
before: Optional[str] = Query(
None,
description="Agent ID cursor for pagination. Returns agents that come before this agent ID in the specified sort order",
),
after: Optional[str] = Query(
None,
description="Agent ID cursor for pagination. Returns agents that come after this agent ID in the specified sort order",
),
limit: Optional[int] = Query(50, description="Maximum number of agents to return"),
order: Literal["asc", "desc"] = Query(
"desc", description="Sort order for agents by creation time. 'asc' for oldest first, 'desc' for newest first"
),
order_by: Literal["created_at"] = Query("created_at", description="Field to sort by"),
include_relationships: list[str] | None = Query(
None,
description=(
"Specify which relational fields (e.g., 'tools', 'sources', 'memory') to include in the response. "
"If not provided, all relationships are loaded by default. "
"Using this can optimize performance by reducing unnecessary joins."
"This is a legacy parameter, and no longer supported after 1.0.0 SDK versions."
),
deprecated=True,
),
include: List[AgentRelationships] = Query(
[],
description=("Specify which relational fields to include in the response. No relationships are included by default."),
),
server: SyncServer = Depends(get_letta_server),
headers: HeaderParams = Depends(get_headers),
):
"""
Retrieves all agents associated with the specified block.
Raises a 404 if the block does not exist.
"""
actor = await server.user_manager.get_actor_or_default_async(actor_id=headers.actor_id)
if include_relationships is None and is_1_0_sdk_version(headers):
include_relationships = [] # don't default include all if using new SDK version
agents = await server.block_manager.get_agents_for_block_async(
block_id=block_id,
before=before,
after=after,
limit=limit,
ascending=(order == "asc"),
include_relationships=include_relationships,
include=include,
actor=actor,
)
return agents
@router.patch("/{block_id}/identities/attach/{identity_id}", response_model=BlockResponse, operation_id="attach_identity_to_block")
async def attach_identity_to_block(
identity_id: str,
block_id: BlockId,
server: SyncServer = Depends(get_letta_server),
headers: HeaderParams = Depends(get_headers),
):
"""
Attach an identity to a block.
"""
actor = await server.user_manager.get_actor_or_default_async(actor_id=headers.actor_id)
await server.identity_manager.attach_block_async(
identity_id=identity_id,
block_id=block_id,
actor=actor,
)
return await server.block_manager.get_block_by_id_async(block_id=block_id, actor=actor)
@router.patch("/{block_id}/identities/detach/{identity_id}", response_model=BlockResponse, operation_id="detach_identity_from_block")
async def detach_identity_from_block(
identity_id: str,
block_id: BlockId,
server: SyncServer = Depends(get_letta_server),
headers: HeaderParams = Depends(get_headers),
):
"""
Detach an identity from a block.
"""
actor = await server.user_manager.get_actor_or_default_async(actor_id=headers.actor_id)
await server.identity_manager.detach_block_async(
identity_id=identity_id,
block_id=block_id,
actor=actor,
)
return await server.block_manager.get_block_by_id_async(block_id=block_id, actor=actor)