Skip to content

Commit

Permalink
chg: rye run test
Browse files Browse the repository at this point in the history
  • Loading branch information
bossjones committed May 5, 2024
1 parent 50daf5b commit e9b83be
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/goob_ai/aio_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,12 +119,12 @@ class AioSettings(BaseSettings):
discord_admin_user_invited: bool = False

# pylint: disable=redundant-keyword-arg
better_exceptions: bool = Field(..., env="BETTER_EXCEPTIONS", description="Enable better exceptions", default=1)
better_exceptions: bool = Field(env="BETTER_EXCEPTIONS", description="Enable better exceptions", default=1)
pythonasynciodebug: bool = Field(
..., env="PYTHONASYNCIODEBUG", description="enable or disable asyncio debugging", default=1
env="PYTHONASYNCIODEBUG", description="enable or disable asyncio debugging", default=1
)
langchain_debug_logs: bool = Field(
..., env="LANGCHAIN_DEBUG_LOGS", description="enable or disable langchain debug logs", default=0
env="LANGCHAIN_DEBUG_LOGS", description="enable or disable langchain debug logs", default=0
)

enable_ai: bool = False
Expand Down

0 comments on commit e9b83be

Please sign in to comment.