Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/slackbot/src/slackbot/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from pydantic_ai.providers import Provider
from pydantic_ai.settings import ModelSettings
from raggy.vectorstores.tpuf import TurboPuffer, query_namespace
from turbopuffer.error import NotFoundError
from turbopuffer import NotFoundError
Copy link

Copilot AI Aug 11, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The import change from 'turbopuffer.error.NotFoundError' to 'turbopuffer.NotFoundError' suggests a potential API breaking change in the turbopuffer library. Consider verifying this is the correct import path for the version of turbopuffer being used and update any version constraints in requirements if needed.

Suggested change
from turbopuffer import NotFoundError
from turbopuffer.error import NotFoundError

Copilot uses AI. Check for mistakes.

from slackbot.assets import store_user_facts
from slackbot.research_agent import research_prefect_topic
Expand Down
Loading