Skip to content

Commit

Permalink
feat: Add ToolType enum (#584)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattzh72 authored Jan 10, 2025
1 parent d008a04 commit e85b5a4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions letta/orm/enums.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
from enum import Enum


class ToolType(str, Enum):
CUSTOM = "custom"
LETTA_CORE = "letta_core"
LETTA_MEMORY_CORE = "letta_memory_core"


class ToolSourceType(str, Enum):
"""Defines what a tool was derived from"""

Expand Down

0 comments on commit e85b5a4

Please sign in to comment.