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.
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/PKG-INFO +7 -2
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/README.md +6 -1
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/pyproject.toml +1 -1
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/src/langfuse_prompt_library/__init__.py +1 -1
- {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
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/LICENSE +0 -0
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/setup.cfg +0 -0
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/src/langfuse_prompt_library/config.py +0 -0
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/src/langfuse_prompt_library/exceptions.py +0 -0
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/src/langfuse_prompt_library/manager.py +0 -0
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/src/langfuse_prompt_library/models.py +0 -0
- {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
- {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
- {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
- {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
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/src/utils/__init__.py +0 -0
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/src/utils/logger.py +0 -0
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/src/utils/utility.py +0 -0
- {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.
|
|
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.
|
|
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.
|
|
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.
|
|
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"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: langfuse-prompt-library-iauro
|
|
3
|
-
Version: 0.1.
|
|
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.
|
|
252
|
+
### 0.1.2
|
|
248
253
|
- Initial public release
|
|
249
254
|
- Support for OpenAI and Anthropic
|
|
250
255
|
- Automatic tracing and observability
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/src/utils/__init__.py
RENAMED
|
File without changes
|
{langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/src/utils/logger.py
RENAMED
|
File without changes
|
{langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/src/utils/utility.py
RENAMED
|
File without changes
|
{langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.2}/tests/test_library.py
RENAMED
|
File without changes
|