Skip to content

Commit ebff603

Browse files
Merge pull request #49 from bugout-dev/extend-bugout-search-result
Extend search response.
2 parents d0dac7d + 539313e commit ebff603

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

bugout/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
__email__ = "engineering@bugout.dev"
99
__license__ = "MIT"
10-
__version__ = "0.2.8"
10+
__version__ = "0.2.9"
1111

1212
__all__ = (
1313
"__author__",

bugout/data.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,9 @@ class BugoutSearchResult(BaseModel):
262262
created_at: str
263263
updated_at: str
264264
score: float
265+
context_type: Optional[str] = None
266+
context_url: Optional[str] = None
267+
context_id: Optional[str] = None
265268

266269

267270
class BugoutSearchResults(BaseModel):

0 commit comments

Comments
 (0)