Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Bug fixes #2377

Merged
merged 14 commits into from
Jan 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions alembic/versions/f895232c144a_backfill_composio_tools.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
"""Backfill composio tools
Revision ID: f895232c144a
Revises: 25fc99e97839
Create Date: 2025-01-16 14:21:33.764332
"""

from typing import Sequence, Union

from alembic import op
from letta.orm.enums import ToolType

# revision identifiers, used by Alembic.
revision: str = "f895232c144a"
down_revision: Union[str, None] = "416b9d2db10b"
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None


def upgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
# Define the value for EXTERNAL_COMPOSIO
external_composio_value = ToolType.EXTERNAL_COMPOSIO.value

# Update tool_type to EXTERNAL_COMPOSIO if the tags field includes "composio"
# This is super brittle and awful but no other way to do this
op.execute(
f"""
UPDATE tools
SET tool_type = '{external_composio_value}'
WHERE tags::jsonb @> '["composio"]';
"""
)
# ### end Alembic commands ###


def downgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
custom_value = ToolType.CUSTOM.value

# Update tool_type to CUSTOM if the tags field includes "composio"
# This is super brittle and awful but no other way to do this
op.execute(
f"""
UPDATE tools
SET tool_type = '{custom_value}'
WHERE tags::jsonb @> '["composio"]';
"""
)
# ### end Alembic commands ###
162 changes: 65 additions & 97 deletions letta/agent.py

Large diffs are not rendered by default.

Loading
Loading