Skip to content

Commit

Permalink
pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
BWMac committed Jan 16, 2025
1 parent e1b00cd commit 717b695
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions synapseclient/models/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,9 @@ class AgentSession(AgentSessionSynchronousProtocol):
id: Optional[str] = None
"""The unique ID of the agent session. Can only be used by the user that created it."""

access_level: Optional[AgentSessionAccessLevel] = (
AgentSessionAccessLevel.PUBLICLY_ACCESSIBLE
)
access_level: Optional[
AgentSessionAccessLevel
] = AgentSessionAccessLevel.PUBLICLY_ACCESSIBLE
"""The access level of the agent session.
One of PUBLICLY_ACCESSIBLE, READ_YOUR_PRIVATE_DATA, or WRITE_YOUR_PRIVATE_DATA.
Defaults to PUBLICLY_ACCESSIBLE.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@
import pytest

from synapseclient import Synapse
from synapseclient.core.constants.concrete_types import AGENT_CHAT_REQUEST
from synapseclient.models.agent import (
Agent,
AgentSession,
AgentPrompt,
AgentSession,
AgentSessionAccessLevel,
)
from synapseclient.core.constants.concrete_types import AGENT_CHAT_REQUEST


AGENT_AWS_ID = "QOTV3KQM1X"
AGENT_REGISTRATION_ID = "29"
Expand Down

0 comments on commit 717b695

Please sign in to comment.