LLM-Bridge 1.7.19a0__tar.gz → 1.7.21__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.
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21/LLM_Bridge.egg-info}/PKG-INFO +6 -5
- {llm_bridge-1.7.19a0/LLM_Bridge.egg-info → llm_bridge-1.7.21}/PKG-INFO +6 -5
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/README.md +5 -4
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/implementations/claude/non_stream_claude_client.py +1 -1
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/resources/model_prices.json +2 -2
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/pyproject.toml +1 -1
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/LICENSE +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/LLM_Bridge.egg-info/SOURCES.txt +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/LLM_Bridge.egg-info/dependency_links.txt +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/LLM_Bridge.egg-info/requires.txt +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/LLM_Bridge.egg-info/top_level.txt +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/MANIFEST.in +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/__init__.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/__init__.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/chat_client.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/implementations/__init__.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/implementations/claude/__init__.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/implementations/claude/claude_stream_response_handler.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/implementations/claude/claude_token_counter.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/implementations/claude/stream_claude_client.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/implementations/gemini/__init__.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/implementations/gemini/gemini_response_handler.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/implementations/gemini/gemini_token_counter.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/implementations/gemini/non_stream_gemini_client.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/implementations/gemini/stream_gemini_client.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/implementations/openai/__init__.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/implementations/openai/non_stream_openai_client.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/implementations/openai/non_stream_openai_responses_client.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/implementations/openai/openai_token_couter.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/implementations/openai/steam_openai_responses_client.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/implementations/openai/stream_openai_client.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/implementations/printing_status.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/model_client/__init__.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/model_client/claude_client.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/model_client/gemini_client.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/model_client/openai_client.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/logic/__init__.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/logic/chat_generate/__init__.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/logic/chat_generate/chat_client_factory.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/logic/chat_generate/chat_message_converter.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/logic/chat_generate/media_processor.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/logic/chat_generate/model_client_factory/__init__.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/logic/chat_generate/model_client_factory/claude_client_factory.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/logic/chat_generate/model_client_factory/gemini_client_factory.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/logic/chat_generate/model_client_factory/openai_client_factory.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/logic/chat_generate/model_message_converter/__init__.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/logic/chat_generate/model_message_converter/claude_message_converter.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/logic/chat_generate/model_message_converter/gemini_message_converter.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/logic/chat_generate/model_message_converter/openai_message_converter.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/logic/chat_generate/model_message_converter/openai_responses_message_converter.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/logic/file_fetch.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/logic/message_preprocess/__init__.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/logic/message_preprocess/code_file_extensions.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/logic/message_preprocess/document_processor.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/logic/message_preprocess/file_type_checker.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/logic/message_preprocess/message_preprocessor.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/logic/model_prices.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/resources/__init__.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/type/__init__.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/type/chat_response.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/type/message.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/type/model_message/__init__.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/type/model_message/claude_message.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/type/model_message/gemini_message.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/type/model_message/openai_message.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/type/model_message/openai_responses_message.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/type/serializer.py +0 -0
- {llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: LLM-Bridge
|
|
3
|
-
Version: 1.7.
|
|
3
|
+
Version: 1.7.21
|
|
4
4
|
Summary: A Bridge for LLMs
|
|
5
5
|
Author-email: windsnow1025 <windsnow1025@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -74,12 +74,13 @@ pytest
|
|
|
74
74
|
|
|
75
75
|
### Setup
|
|
76
76
|
|
|
77
|
-
1. Copy
|
|
77
|
+
1. Copy `./usage/.env.example` and rename it to `./usage/.env`, then fill in the environment variables.
|
|
78
78
|
2. Install requirements: `pip install -r requirements.txt`
|
|
79
|
+
3. In PyCharm, add a new Python configuration:
|
|
80
|
+
- script: `./usage/main.py`
|
|
81
|
+
- Paths to ".env" files: `./usage/.env`
|
|
79
82
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
See `./usage/`
|
|
83
|
+
## Workflow
|
|
83
84
|
|
|
84
85
|
```python
|
|
85
86
|
from typing import AsyncGenerator
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: LLM-Bridge
|
|
3
|
-
Version: 1.7.
|
|
3
|
+
Version: 1.7.21
|
|
4
4
|
Summary: A Bridge for LLMs
|
|
5
5
|
Author-email: windsnow1025 <windsnow1025@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -74,12 +74,13 @@ pytest
|
|
|
74
74
|
|
|
75
75
|
### Setup
|
|
76
76
|
|
|
77
|
-
1. Copy
|
|
77
|
+
1. Copy `./usage/.env.example` and rename it to `./usage/.env`, then fill in the environment variables.
|
|
78
78
|
2. Install requirements: `pip install -r requirements.txt`
|
|
79
|
+
3. In PyCharm, add a new Python configuration:
|
|
80
|
+
- script: `./usage/main.py`
|
|
81
|
+
- Paths to ".env" files: `./usage/.env`
|
|
79
82
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
See `./usage/`
|
|
83
|
+
## Workflow
|
|
83
84
|
|
|
84
85
|
```python
|
|
85
86
|
from typing import AsyncGenerator
|
|
@@ -44,12 +44,13 @@ pytest
|
|
|
44
44
|
|
|
45
45
|
### Setup
|
|
46
46
|
|
|
47
|
-
1. Copy
|
|
47
|
+
1. Copy `./usage/.env.example` and rename it to `./usage/.env`, then fill in the environment variables.
|
|
48
48
|
2. Install requirements: `pip install -r requirements.txt`
|
|
49
|
+
3. In PyCharm, add a new Python configuration:
|
|
50
|
+
- script: `./usage/main.py`
|
|
51
|
+
- Paths to ".env" files: `./usage/.env`
|
|
49
52
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
See `./usage/`
|
|
53
|
+
## Workflow
|
|
53
54
|
|
|
54
55
|
```python
|
|
55
56
|
from typing import AsyncGenerator
|
|
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
|
{llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/implementations/claude/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/implementations/gemini/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/implementations/openai/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/client/implementations/printing_status.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/logic/chat_generate/chat_client_factory.py
RENAMED
|
File without changes
|
{llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/logic/chat_generate/chat_message_converter.py
RENAMED
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/logic/message_preprocess/document_processor.py
RENAMED
|
File without changes
|
{llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/logic/message_preprocess/file_type_checker.py
RENAMED
|
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
|
|
File without changes
|
{llm_bridge-1.7.19a0 → llm_bridge-1.7.21}/llm_bridge/type/model_message/openai_responses_message.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|