-
Notifications
You must be signed in to change notification settings - Fork 99
chore(api): regenerate Python SDK for functions and annotations #1631
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
willbakst
merged 1 commit into
v2
from
12-10-chore_api_regenerate_python_sdk_for_functions_and_annotations
Jan 6, 2026
Merged
chore(api): regenerate Python SDK for functions and annotations #1631
willbakst
merged 1 commit into
v2
from
12-10-chore_api_regenerate_python_sdk_for_functions_and_annotations
Jan 6, 2026
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This was referenced Dec 10, 2025
Merged
Merged
This was referenced Dec 10, 2025
c667f8a to
2b80fdc
Compare
e580f67 to
dc575f9
Compare
2b80fdc to
8f0a610
Compare
bdbcf86 to
b4a634c
Compare
8f0a610 to
81e805a
Compare
b4a634c to
a7757af
Compare
willbakst
approved these changes
Jan 6, 2026
a7757af to
d9370d2
Compare
81e805a to
610ec45
Compare
610ec45 to
e282c2a
Compare
9c09fca to
ad12d68
Compare
e282c2a to
911fc8f
Compare
ad12d68 to
083cf6b
Compare
f2bd0ca to
2a6f20a
Compare
083cf6b to
8931b9b
Compare
ef27a5c to
7b85508
Compare
8931b9b to
9b54fa6
Compare
Merge activity
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
TL;DR
Added API client support for annotations and functions endpoints.
What changed?
Added new
annotationsmodule with client classes for managing annotations:AnnotationsClientandAsyncAnnotationsClientfor synchronous and asynchronous operationsAdded new
functionsmodule with client classes for managing functions:FunctionsClientandAsyncFunctionsClientfor synchronous and asynchronous operationsAdded utility type
NumberFromStringfor handling numeric parameters passed as stringsHow to test?
Test the new API clients by making requests to the annotations and functions endpoints:
For async usage:
Why make this change?
This change adds client support for two important API endpoints - annotations and functions. Annotations allow users to add metadata to traces and spans for better observability, while the functions API enables registering and managing functions. These additions complete the API client implementation, providing a comprehensive interface for interacting with the Mirascope platform.