Skip to content
Open
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 .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.27.1"
".": "0.28.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 21
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/profound%2Fprofound-9763f8d3ad06588eb2cbf8c4423d3a5110879bd99f7863d6814102a0996a3afa.yml
openapi_spec_hash: bd9dea031643e4d3eda34c356ed3a6bd
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/profound%2Fprofound-60fd3573b25e712010987a81465389796030091f4050b445672d11a544a9188b.yml
openapi_spec_hash: b1bbf1d8c7da5a691c60c1089d466a44
config_hash: 21703d42103a7b9c01f9331e6864f8dc
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.28.0 (2026-02-26)

Full Changelog: [v0.27.1...v0.28.0](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.27.1...v0.28.0)

### Features

* **api:** api update ([1b8516d](https://github.com/cooper-square-technologies/profound-python-sdk/commit/1b8516d7b1ee215299f11a174aa6af6157d98a19))

## 0.27.1 (2026-02-25)

Full Changelog: [v0.27.0...v0.27.1](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.27.0...v0.27.1)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "profound"
version = "0.27.1"
version = "0.28.0"
description = "The official Python library for the profound API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/profound/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "profound"
__version__ = "0.27.1" # x-release-please-version
__version__ = "0.28.0" # x-release-please-version
12 changes: 12 additions & 0 deletions src/profound/types/report_citations_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from .topic_name_filter_param import TopicNameFilterParam
from .shared_params.pagination import Pagination
from .shared_params.path_filter import PathFilter
from .shared_params.prompt_filter import PromptFilter
from .shared_params.tag_id_filter import TagIDFilter
from .shared_params.model_id_filter import ModelIDFilter
from .shared_params.topic_id_filter import TopicIDFilter
Expand All @@ -25,6 +26,7 @@
"FilterRootDomainFilter",
"FilterPromptTypeFilter",
"FilterCitationCategoryFilter",
"FilterPromptIDFilter",
]


Expand Down Expand Up @@ -197,6 +199,14 @@ class FilterCitationCategoryFilter(TypedDict, total=False):
value: Required[Union[str, SequenceNotStr[str]]]


class FilterPromptIDFilter(TypedDict, total=False):
field: Required[Literal["prompt_id"]]

operator: Required[Literal["is", "not_is", "in", "not_in"]]

value: Required[Union[str, SequenceNotStr[str]]]


Filter: TypeAlias = Union[
FilterHostnameFilter,
PathFilter,
Expand All @@ -210,4 +220,6 @@ class FilterCitationCategoryFilter(TypedDict, total=False):
FilterPromptTypeFilter,
PersonaIDFilter,
FilterCitationCategoryFilter,
PromptFilter,
FilterPromptIDFilter,
]