paygent-sdk 3.0.0__tar.gz → 3.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. {paygent_sdk-3.0.0/paygent_sdk.egg-info → paygent_sdk-3.0.1}/PKG-INFO +1 -1
  2. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/paygent_sdk/constants.py +1 -0
  3. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/paygent_sdk/models.py +5 -0
  4. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1/paygent_sdk.egg-info}/PKG-INFO +1 -1
  5. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/pyproject.toml +1 -1
  6. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/LICENSE +0 -0
  7. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/MANIFEST.in +0 -0
  8. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/README.md +0 -0
  9. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/examples/__init__.py +0 -0
  10. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/examples/advanced_usage.py +0 -0
  11. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/examples/basic_usage.py +0 -0
  12. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/examples/constants_usage.py +0 -0
  13. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/paygent_sdk/__init__.py +0 -0
  14. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/paygent_sdk/client.py +0 -0
  15. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/paygent_sdk/voice_client.py +0 -0
  16. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/paygent_sdk/wrappers/__init__.py +0 -0
  17. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/paygent_sdk/wrappers/anthropic_wrapper.py +0 -0
  18. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/paygent_sdk/wrappers/gemini_wrapper.py +0 -0
  19. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/paygent_sdk/wrappers/langchain_wrapper.py +0 -0
  20. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/paygent_sdk/wrappers/mistral_wrapper.py +0 -0
  21. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/paygent_sdk/wrappers/openai_wrapper.py +0 -0
  22. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/paygent_sdk.egg-info/SOURCES.txt +0 -0
  23. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/paygent_sdk.egg-info/dependency_links.txt +0 -0
  24. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/paygent_sdk.egg-info/requires.txt +0 -0
  25. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/paygent_sdk.egg-info/top_level.txt +0 -0
  26. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/requirements.txt +0 -0
  27. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/setup.cfg +0 -0
  28. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/setup.py +0 -0
  29. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/tests/__init__.py +0 -0
  30. {paygent_sdk-3.0.0 → paygent_sdk-3.0.1}/tests/test_client.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: paygent-sdk
3
- Version: 3.0.0
3
+ Version: 3.0.1
4
4
  Summary: Official Python SDK for Paygent - Track AI usage and costs across multiple providers (OpenAI, Anthropic, Google, DeepSeek, etc.)
5
5
  Home-page: https://github.com/paygent/paygent-sdk-python
6
6
  Author: Paygent
@@ -45,6 +45,7 @@ class OpenAIModels:
45
45
  GPT_5_MINI = "gpt-5-mini"
46
46
  GPT_5_NANO = "gpt-5-nano"
47
47
  GPT_5_CHAT_LATEST = "gpt-5-chat-latest"
48
+ GPT_5_2_CHAT_LATEST = "gpt-5.2-chat-latest"
48
49
  GPT_5_CODEX = "gpt-5-codex"
49
50
  GPT_5_PRO = "gpt-5-pro"
50
51
  GPT_5_SEARCH_API = "gpt-5-search-api"
@@ -107,6 +107,11 @@ MODEL_PRICING: Dict[str, ModelPricing] = {
107
107
  cached_tokens_cost=0.000125, # 90% discount for cached tokens
108
108
  completion_tokens_cost=0.01 # $0.01 per 1000 tokens
109
109
  ),
110
+ OpenAIModels.GPT_5_2_CHAT_LATEST: ModelPricing(
111
+ prompt_tokens_cost=0.00175, # $1.75 per 1M tokens ($0.00175 per 1k)
112
+ cached_tokens_cost=0.000175, # $0.175 per 1M tokens ($0.000175 per 1k)
113
+ completion_tokens_cost=0.014 # $14.00 per 1M tokens ($0.014 per 1k)
114
+ ),
110
115
  OpenAIModels.GPT_5_CODEX: ModelPricing(
111
116
  prompt_tokens_cost=0.00125, # $0.00125 per 1000 tokens
112
117
  cached_tokens_cost=0.000125, # 90% discount for cached tokens
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: paygent-sdk
3
- Version: 3.0.0
3
+ Version: 3.0.1
4
4
  Summary: Official Python SDK for Paygent - Track AI usage and costs across multiple providers (OpenAI, Anthropic, Google, DeepSeek, etc.)
5
5
  Home-page: https://github.com/paygent/paygent-sdk-python
6
6
  Author: Paygent
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "paygent-sdk"
7
- version = "3.0.0"
7
+ version = "3.0.1"
8
8
  description = "Official Python SDK for Paygent - Track AI usage and costs across multiple providers (OpenAI, Anthropic, Google, DeepSeek, etc.)"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.7"
File without changes
File without changes
File without changes
File without changes
File without changes