Skip to content

Commit

Permalink
fix: Bug fixes (#2377)
Browse files Browse the repository at this point in the history
Co-authored-by: Charles Packer <[email protected]>
Co-authored-by: cthomas <[email protected]>
Co-authored-by: mlong93 <[email protected]>
Co-authored-by: Mindy Long <[email protected]>
Co-authored-by: Shubham Naik <[email protected]>
Co-authored-by: Shubham Naik <[email protected]>
Co-authored-by: dboyliao <[email protected]>
Co-authored-by: Sarah Wooders <[email protected]>
Co-authored-by: Nuno Rocha <[email protected]>
Co-authored-by: Theo Conrads <[email protected]>
Co-authored-by: Jyotirmaya Mahanta <[email protected]>
Co-authored-by: Stephan Fitzpatrick <[email protected]>
Co-authored-by: Stephan Fitzpatrick <[email protected]>
Co-authored-by: Krishnakumar R (KK) <[email protected]>
  • Loading branch information
15 people authored Jan 23, 2025
1 parent 7676468 commit d9a0996
Show file tree
Hide file tree
Showing 29 changed files with 922 additions and 581 deletions.
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

0 comments on commit d9a0996

Please sign in to comment.