Skip to content

Commit

Permalink
Merge pull request #982 from julep-ai/f/tools-queries
Browse files Browse the repository at this point in the history
Tools queries
  • Loading branch information
whiterabbit1983 authored Dec 23, 2024
2 parents 791a8a9 + 1c97bc3 commit 358b60b
Show file tree
Hide file tree
Showing 23 changed files with 958 additions and 1,086 deletions.
9 changes: 9 additions & 0 deletions agents-api/agents_api/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,12 @@ class FailedEncodingSentinel:
"""Sentinel object returned when failed to encode payload."""

payload_data: bytes


class QueriesBaseException(AgentsBaseException):
pass


class InvalidSQLQuery(QueriesBaseException):
def __init__(self, query_name: str):
super().__init__(f"invalid query: {query_name}")
15 changes: 0 additions & 15 deletions agents-api/agents_api/models/chat/get_cached_response.py

This file was deleted.

143 changes: 0 additions & 143 deletions agents-api/agents_api/models/chat/prepare_chat_context.py

This file was deleted.

19 changes: 0 additions & 19 deletions agents-api/agents_api/models/chat/set_cached_response.py

This file was deleted.

136 changes: 0 additions & 136 deletions agents-api/agents_api/models/tools/create_tools.py

This file was deleted.

68 changes: 0 additions & 68 deletions agents-api/agents_api/models/tools/delete_tool.py

This file was deleted.

Loading

0 comments on commit 358b60b

Please sign in to comment.