Skip to content

Commit 7eb9993

Browse files
authored
Merge pull request #12 from aymara-ai/release-please--branches--main--changes--next
release: 1.0.0-alpha.11
2 parents 9c470df + 7da730f commit 7eb9993

File tree

5 files changed

+13
-3
lines changed

5 files changed

+13
-3
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.0.0-alpha.10"
2+
".": "1.0.0-alpha.11"
33
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 1.0.0-alpha.11 (2025-05-01)
4+
5+
Full Changelog: [v1.0.0-alpha.10...v1.0.0-alpha.11](https://github.com/aymara-ai/aymara-sdk-python/compare/v1.0.0-alpha.10...v1.0.0-alpha.11)
6+
7+
### Features
8+
9+
* add prompt category ([b31a58d](https://github.com/aymara-ai/aymara-sdk-python/commit/b31a58d48b78f5c6eb861faee36344c4e726d49b))
10+
311
## 1.0.0-alpha.10 (2025-05-01)
412

513
Full Changelog: [v1.0.0-alpha.9...v1.0.0-alpha.10](https://github.com/aymara-ai/aymara-sdk-python/compare/v1.0.0-alpha.9...v1.0.0-alpha.10)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "aymara-ai-sdk"
3-
version = "1.0.0-alpha.10"
3+
version = "1.0.0-alpha.11"
44
description = "The official Python library for the aymara-ai API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/aymara_ai/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "aymara_ai"
4-
__version__ = "1.0.0-alpha.10" # x-release-please-version
4+
__version__ = "1.0.0-alpha.11" # x-release-please-version

src/aymara_ai/lib/df.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ def to_prompts_df(eval: Eval, prompts: List[EvalPrompt]) -> pd.DataFrame:
2121
"eval_name": eval.name,
2222
"prompt_uuid": prompt.prompt_uuid,
2323
"prompt_content": prompt.content,
24+
"prompt_category": prompt.category,
2425
}
2526
for prompt in prompts
2627
]
@@ -40,6 +41,7 @@ def to_scores_df(eval_run: EvalRunResult, prompts: List[EvalPrompt], responses:
4041
"response_uuid": response.response_uuid,
4142
"is_passed": response.is_passed,
4243
"prompt_content": prompts[i].content if prompts else "",
44+
"prompt_category": prompts[i].category if prompts else "",
4345
"response_content": response.content,
4446
"ai_refused": response.ai_refused,
4547
"exclude_from_scoring": response.exclude_from_scoring,

0 commit comments

Comments
 (0)