Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .speakeasy/gen.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ id: 891d898b-5da4-4813-8dd3-fceb5b9832fe
management:
docChecksum: acc4c90fc4b614946193b46937ffde52
docVersion: 1.0.0
speakeasyVersion: 1.423.4
speakeasyVersion: 1.423.5
generationVersion: 2.445.1
releaseVersion: 1.2.0
configChecksum: f5ac5f71458ec1f676413896ba769429
releaseVersion: 1.2.1
configChecksum: 67b58dfdcb2880a057412594fef8571b
repoURL: https://github.com/ragieai/ragie-python.git
installationURL: https://github.com/ragieai/ragie-python.git
published: true
Expand Down
2 changes: 1 addition & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ generation:
auth:
oAuth2ClientCredentialsEnabled: false
python:
version: 1.2.0
version: 1.2.1
additionalDependencies:
dev: {}
main: {}
Expand Down
17 changes: 12 additions & 5 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
speakeasyVersion: 1.423.4
speakeasyVersion: 1.423.5
sources:
Ragie-OAS:
sourceNamespace: ragie-oas
sourceRevisionDigest: sha256:54649453cfdf28b01bb16026230ee4519d12e957cac2c533b2e587255c2e0aa7
sourceBlobDigest: sha256:2a5183239c79a5760095952afb3f7613425048ae918ea203a1306422ed7468d7
sourceRevisionDigest: sha256:20e7de54f619d0f6f82aed5b056295533dc2a7a28cd853b1622e8ed977921467
sourceBlobDigest: sha256:aad7cf9af8bd48460279b02747608cd4e4b10b3d05d54b51e6f570bd34530893
tags:
- latest
- main
targets:
ragie:
source: Ragie-OAS
sourceNamespace: ragie-oas
sourceRevisionDigest: sha256:54649453cfdf28b01bb16026230ee4519d12e957cac2c533b2e587255c2e0aa7
sourceBlobDigest: sha256:2a5183239c79a5760095952afb3f7613425048ae918ea203a1306422ed7468d7
sourceRevisionDigest: sha256:20e7de54f619d0f6f82aed5b056295533dc2a7a28cd853b1622e8ed977921467
sourceBlobDigest: sha256:aad7cf9af8bd48460279b02747608cd4e4b10b3d05d54b51e6f570bd34530893
codeSamplesNamespace: ragie-oas-code-samples
codeSamplesRevisionDigest: sha256:62e67a7aa6cf95063ed3f26eba7c7df17a6d7fc242093c6b1edbd9e7a589ac1e
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
Expand All @@ -28,3 +31,7 @@ workflow:
publish:
pypi:
token: $pypi_token
codeSamples:
registry:
location: registry.speakeasyapi.dev/ragie-ai/ragie-ai/ragie-oas-code-samples
blocking: false
4 changes: 4 additions & 0 deletions .speakeasy/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,7 @@ targets:
publish:
pypi:
token: $pypi_token
codeSamples:
registry:
location: registry.speakeasyapi.dev/ragie-ai/ragie-ai/ragie-oas-code-samples
blocking: false
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,14 @@ Based on:
### Generated
- [python v1.1.0] .
### Releases
- [PyPI v1.1.0] https://pypi.org/project/ragie/1.1.0 - .
- [PyPI v1.1.0] https://pypi.org/project/ragie/1.1.0 - .

## 2024-10-30 21:10:13
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.423.5 (2.445.1) https://github.com/speakeasy-api/speakeasy
### Generated
- [python v1.2.1] .
### Releases
- [PyPI v1.2.1] https://pypi.org/project/ragie/1.2.1 - .
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ragie"
version = "1.2.0"
version = "1.2.1"
description = "Python Client SDK Generated by Speakeasy."
authors = ["Speakeasy",]
readme = "README-PYPI.md"
Expand Down
2 changes: 1 addition & 1 deletion src/ragie/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import importlib.metadata

__title__: str = "ragie"
__version__: str = "1.2.0"
__version__: str = "1.2.1"

try:
if __package__ is not None:
Expand Down
4 changes: 2 additions & 2 deletions src/ragie/sdkconfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ class SDKConfiguration:
server_idx: Optional[int] = 0
language: str = "python"
openapi_doc_version: str = "1.0.0"
sdk_version: str = "1.2.0"
sdk_version: str = "1.2.1"
gen_version: str = "2.445.1"
user_agent: str = "speakeasy-sdk/python 1.2.0 2.445.1 1.0.0 ragie"
user_agent: str = "speakeasy-sdk/python 1.2.1 2.445.1 1.0.0 ragie"
retry_config: OptionalNullable[RetryConfig] = Field(default_factory=lambda: UNSET)
timeout_ms: Optional[int] = None

Expand Down