langfuse-prompt-library-iauro 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.
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.1}/PKG-INFO +6 -1
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.1}/README.md +5 -0
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.1}/pyproject.toml +1 -1
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.1}/src/langfuse_prompt_library/__init__.py +1 -1
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.1}/src/langfuse_prompt_library_iauro.egg-info/PKG-INFO +6 -1
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.1}/LICENSE +0 -0
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.1}/setup.cfg +0 -0
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.1}/src/langfuse_prompt_library/config.py +0 -0
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.1}/src/langfuse_prompt_library/exceptions.py +0 -0
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.1}/src/langfuse_prompt_library/manager.py +0 -0
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.1}/src/langfuse_prompt_library/models.py +0 -0
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.1}/src/langfuse_prompt_library_iauro.egg-info/SOURCES.txt +0 -0
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.1}/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.1}/src/langfuse_prompt_library_iauro.egg-info/requires.txt +0 -0
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.1}/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.1}/src/utils/__init__.py +0 -0
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.1}/src/utils/logger.py +0 -0
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.1}/src/utils/utility.py +0 -0
- {langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.1}/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.1
|
|
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
|
|
|
@@ -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
|
|
|
@@ -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.1"
|
|
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.1
|
|
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
|
|
|
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.1}/src/utils/__init__.py
RENAMED
|
File without changes
|
{langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.1}/src/utils/logger.py
RENAMED
|
File without changes
|
{langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.1}/src/utils/utility.py
RENAMED
|
File without changes
|
{langfuse_prompt_library_iauro-0.1.0 → langfuse_prompt_library_iauro-0.1.1}/tests/test_library.py
RENAMED
|
File without changes
|