langfuse-prompt-library-iauro 0.1.0__tar.gz → 0.1.2__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 (19) hide show
  1. {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/PKG-INFO +7 -2
  2. {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/README.md +6 -1
  3. {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/pyproject.toml +1 -1
  4. {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/src/langfuse_prompt_library/__init__.py +1 -1
  5. {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/src/langfuse_prompt_library_iauro.egg-info/PKG-INFO +7 -2
  6. {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/LICENSE +0 -0
  7. {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/setup.cfg +0 -0
  8. {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/src/langfuse_prompt_library/config.py +0 -0
  9. {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/src/langfuse_prompt_library/exceptions.py +0 -0
  10. {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/src/langfuse_prompt_library/manager.py +0 -0
  11. {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/src/langfuse_prompt_library/models.py +0 -0
  12. {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/src/langfuse_prompt_library_iauro.egg-info/SOURCES.txt +0 -0
  13. {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/src/langfuse_prompt_library_iauro.egg-info/dependency_links.txt +0 -0
  14. {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/src/langfuse_prompt_library_iauro.egg-info/requires.txt +0 -0
  15. {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/src/langfuse_prompt_library_iauro.egg-info/top_level.txt +0 -0
  16. {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/src/utils/__init__.py +0 -0
  17. {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/src/utils/logger.py +0 -0
  18. {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/src/utils/utility.py +0 -0
  19. {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/tests/test_library.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: langfuse-prompt-library-iauro
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: A production-ready wrapper for Langfuse prompts and tracing with LLM integrations
5
5
  Author-email: Sunny Mane <sunny.mane@iauro.com>
6
6
  Maintainer-email: Vaibhav Hopal <vaibhav.hopal@iauro.com>
@@ -61,6 +61,11 @@ A production-ready Python wrapper for [Langfuse](https://langfuse.com/) prompts
61
61
  ```bash
62
62
  pip install langfuse-prompt-library-iauro
63
63
  ```
64
+ ## With Anthropic Support
65
+
66
+ ```bash
67
+ pip install langfuse-prompt-library-iauro[anthropic]
68
+ ```
64
69
 
65
70
  ## Quick Start
66
71
 
@@ -244,7 +249,7 @@ For issues and questions:
244
249
 
245
250
  ## Changelog
246
251
 
247
- ### 0.1.0
252
+ ### 0.1.2
248
253
  - Initial public release
249
254
  - Support for OpenAI and Anthropic
250
255
  - Automatic tracing and observability
@@ -19,6 +19,11 @@ A production-ready Python wrapper for [Langfuse](https://langfuse.com/) prompts
19
19
  ```bash
20
20
  pip install langfuse-prompt-library-iauro
21
21
  ```
22
+ ## With Anthropic Support
23
+
24
+ ```bash
25
+ pip install langfuse-prompt-library-iauro[anthropic]
26
+ ```
22
27
 
23
28
  ## Quick Start
24
29
 
@@ -202,7 +207,7 @@ For issues and questions:
202
207
 
203
208
  ## Changelog
204
209
 
205
- ### 0.1.0
210
+ ### 0.1.2
206
211
  - Initial public release
207
212
  - Support for OpenAI and Anthropic
208
213
  - Automatic tracing and observability
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "langfuse-prompt-library-iauro"
7
- version = "0.1.0"
7
+ version = "0.1.2"
8
8
  description = "A production-ready wrapper for Langfuse prompts and tracing with LLM integrations"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -36,7 +36,7 @@ from .exceptions import (
36
36
  TracingError
37
37
  )
38
38
 
39
- __version__ = "0.1.0"
39
+ __version__ = "0.1.2"
40
40
  __all__ = [
41
41
  "LangfuseManager",
42
42
  "LLMResponse",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: langfuse-prompt-library-iauro
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: A production-ready wrapper for Langfuse prompts and tracing with LLM integrations
5
5
  Author-email: Sunny Mane <sunny.mane@iauro.com>
6
6
  Maintainer-email: Vaibhav Hopal <vaibhav.hopal@iauro.com>
@@ -61,6 +61,11 @@ A production-ready Python wrapper for [Langfuse](https://langfuse.com/) prompts
61
61
  ```bash
62
62
  pip install langfuse-prompt-library-iauro
63
63
  ```
64
+ ## With Anthropic Support
65
+
66
+ ```bash
67
+ pip install langfuse-prompt-library-iauro[anthropic]
68
+ ```
64
69
 
65
70
  ## Quick Start
66
71
 
@@ -244,7 +249,7 @@ For issues and questions:
244
249
 
245
250
  ## Changelog
246
251
 
247
- ### 0.1.0
252
+ ### 0.1.2
248
253
  - Initial public release
249
254
  - Support for OpenAI and Anthropic
250
255
  - Automatic tracing and observability