Skip to content

Commit

Permalink
Merge pull request #281 from tigergraph/dev
Browse files Browse the repository at this point in the history
fix exception imports
  • Loading branch information
parkererickson-tg authored Dec 19, 2024
2 parents 09f1525 + ce56f2f commit 72b1c0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common/db/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from fastapi import Depends, HTTPException, status
from fastapi.security import HTTPBasicCredentials, HTTPAuthorizationCredentials
from pyTigerGraph import TigerGraphConnection
from pyTigerGraph.pyTigerGraphException import TigerGraphException
from pyTigerGraph.common.exception import TigerGraphException
from requests import HTTPError

from common.config import (
Expand Down
2 changes: 1 addition & 1 deletion copilot/app/agent/agent_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from agent.agent_usefulness_check import TigerGraphAgentUsefulnessCheck
from agent.Q import DONE, Q
from langgraph.graph import END, StateGraph
from pyTigerGraph.pyTigerGraphException import TigerGraphException
from pyTigerGraph.common.exception import TigerGraphException
from supportai.retrievers import (HNSWOverlapRetriever, HNSWRetriever,
HNSWSiblingRetriever, GraphRAG)
from tools import MapQuestionToSchemaException
Expand Down

0 comments on commit 72b1c0f

Please sign in to comment.