We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d75de24 commit a963d8bCopy full SHA for a963d8b
langbase/primitives/threads.py
@@ -126,15 +126,3 @@ def append(
126
return self.request.post(
127
THREAD_MESSAGES_ENDPOINT.format(thread_id=thread_id), options
128
)
129
-
130
- def list(self, thread_id: str) -> List[ThreadMessagesBaseResponse]:
131
- """
132
- List messages in a thread.
133
134
- Args:
135
- thread_id: ID of the thread
136
137
- Returns:
138
- List of messages in the thread
139
140
- return self.request.get(THREAD_MESSAGES_ENDPOINT.format(thread_id=thread_id))
0 commit comments