Skip to content

Commit

Permalink
refactor: Lint agents-api (CI)
Browse files Browse the repository at this point in the history
  • Loading branch information
whiterabbit1983 authored and github-actions[bot] committed Dec 18, 2024
1 parent cfe015c commit f30569b
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions agents-api/agents_api/queries/chat/prepare_chat_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
ModelT = TypeVar("ModelT", bound=Any)
T = TypeVar("T")

#tool_id, name, type, spec, description, updated_at, created_at
# tool_id, name, type, spec, description, updated_at, created_at
get_agent_query = """
SELECT
session_lookup.agent_id,
Expand Down Expand Up @@ -79,10 +79,7 @@ def prepare_chat_context(
developer_id=developer_id, session_id=session_id
)

queries = [
session_data_query,
get_agent_query
]
queries = [session_data_query, get_agent_query]

return (
queries,
Expand Down

0 comments on commit f30569b

Please sign in to comment.