Skip to content

Commit 6f21d18

Browse files
SDK regeneration (#35)
Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com>
1 parent 22c4050 commit 6f21d18

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "credal"
33

44
[tool.poetry]
55
name = "credal"
6-
version = "0.0.20"
6+
version = "0.0.21"
77
description = ""
88
readme = "README.md"
99
authors = []

src/credal/copilots/types/web_search_result.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
class WebSearchResult(UniversalBaseModel):
1010
title: str
1111
url: str
12-
content: str
12+
contents: str
1313

1414
if IS_PYDANTIC_V2:
1515
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2

src/credal/core/client_wrapper.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def get_headers(self) -> typing.Dict[str, str]:
2222
headers: typing.Dict[str, str] = {
2323
"X-Fern-Language": "Python",
2424
"X-Fern-SDK-Name": "credal",
25-
"X-Fern-SDK-Version": "0.0.20",
25+
"X-Fern-SDK-Version": "0.0.21",
2626
}
2727
headers["Authorization"] = f"Bearer {self._get_api_key()}"
2828
return headers

0 commit comments

Comments
 (0)