llm-cost-guard 0.1.0__tar.gz → 0.1.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 (56) hide show
  1. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/PKG-INFO +9 -2
  2. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/README.md +7 -0
  3. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/pyproject.toml +2 -2
  4. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/.github/workflows/ci.yml +0 -0
  5. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/.github/workflows/publish.yml +0 -0
  6. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/.gitignore +0 -0
  7. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/LICENSE +0 -0
  8. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/examples/bedrock_example.py +0 -0
  9. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/examples/budget_alerts.py +0 -0
  10. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/examples/distributed_tracking.py +0 -0
  11. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/examples/langchain_rag.py +0 -0
  12. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/examples/quickstart.py +0 -0
  13. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/examples/streaming_example.py +0 -0
  14. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/__init__.py +0 -0
  15. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/backends/__init__.py +0 -0
  16. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/backends/base.py +0 -0
  17. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/backends/memory.py +0 -0
  18. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/backends/sqlite.py +0 -0
  19. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/budget.py +0 -0
  20. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/cli.py +0 -0
  21. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/clients/__init__.py +0 -0
  22. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/clients/anthropic.py +0 -0
  23. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/clients/openai.py +0 -0
  24. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/exceptions.py +0 -0
  25. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/integrations/__init__.py +0 -0
  26. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/integrations/cache.py +0 -0
  27. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/integrations/langchain.py +0 -0
  28. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/models.py +0 -0
  29. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/pricing/__init__.py +0 -0
  30. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/pricing/anthropic.yaml +0 -0
  31. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/pricing/bedrock.yaml +0 -0
  32. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/pricing/loader.py +0 -0
  33. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/pricing/openai.yaml +0 -0
  34. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/pricing/vertex.yaml +0 -0
  35. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/providers/__init__.py +0 -0
  36. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/providers/anthropic.py +0 -0
  37. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/providers/base.py +0 -0
  38. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/providers/bedrock.py +0 -0
  39. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/providers/openai.py +0 -0
  40. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/rate_limit.py +0 -0
  41. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/span.py +0 -0
  42. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/tokenizers/__init__.py +0 -0
  43. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/tokenizers/base.py +0 -0
  44. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/llm_cost_guard/tracker.py +0 -0
  45. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/tests/__init__.py +0 -0
  46. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/tests/conftest.py +0 -0
  47. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/tests/integration/__init__.py +0 -0
  48. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/tests/integration/test_e2e.py +0 -0
  49. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/tests/unit/__init__.py +0 -0
  50. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/tests/unit/test_backends.py +0 -0
  51. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/tests/unit/test_budget.py +0 -0
  52. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/tests/unit/test_pricing.py +0 -0
  53. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/tests/unit/test_providers.py +0 -0
  54. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/tests/unit/test_rate_limit.py +0 -0
  55. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/tests/unit/test_span.py +0 -0
  56. {llm_cost_guard-0.1.0 → llm_cost_guard-0.1.1}/tests/unit/test_tracker.py +0 -0
@@ -1,12 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: llm-cost-guard
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Real-time cost tracking, budget enforcement, and usage analytics for LLM applications
5
5
  Project-URL: Homepage, https://github.com/prashantdudami/llm-cost-guard
6
6
  Project-URL: Documentation, https://github.com/prashantdudami/llm-cost-guard#readme
7
7
  Project-URL: Repository, https://github.com/prashantdudami/llm-cost-guard
8
8
  Project-URL: Issues, https://github.com/prashantdudami/llm-cost-guard/issues
9
- Author: Prashant Dudami
9
+ Author-email: Prashant Dudami <prashant.dudami@gmail.com>
10
10
  License-Expression: MIT
11
11
  License-File: LICENSE
12
12
  Keywords: anthropic,bedrock,budget,cost-tracking,langchain,llm,openai
@@ -355,3 +355,10 @@ Contributions are welcome! Please read our contributing guidelines and submit pu
355
355
  ## License
356
356
 
357
357
  MIT License - see [LICENSE](LICENSE) for details.
358
+
359
+ ## Author
360
+
361
+ **Prashant Dudami**
362
+ - LinkedIn: [linkedin.com/in/prashantdudami](https://www.linkedin.com/in/prashantdudami/)
363
+ - GitHub: [github.com/prashantdudami](https://github.com/prashantdudami)
364
+ - Email: prashant.dudami@gmail.com
@@ -293,3 +293,10 @@ Contributions are welcome! Please read our contributing guidelines and submit pu
293
293
  ## License
294
294
 
295
295
  MIT License - see [LICENSE](LICENSE) for details.
296
+
297
+ ## Author
298
+
299
+ **Prashant Dudami**
300
+ - LinkedIn: [linkedin.com/in/prashantdudami](https://www.linkedin.com/in/prashantdudami/)
301
+ - GitHub: [github.com/prashantdudami](https://github.com/prashantdudami)
302
+ - Email: prashant.dudami@gmail.com
@@ -4,13 +4,13 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "llm-cost-guard"
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
8
  description = "Real-time cost tracking, budget enforcement, and usage analytics for LLM applications"
9
9
  readme = "README.md"
10
10
  license = "MIT"
11
11
  requires-python = ">=3.9"
12
12
  authors = [
13
- { name = "Prashant Dudami" }
13
+ { name = "Prashant Dudami", email = "prashant.dudami@gmail.com" }
14
14
  ]
15
15
  keywords = [
16
16
  "llm",
File without changes