LLM-Bridge 1.15.9__tar.gz → 1.15.10__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.15.9 → llm_bridge-1.15.10}/PKG-INFO +2 -2
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/README.md +1 -1
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/__init__.py +1 -1
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/pyproject.toml +1 -1
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/uv.lock +1 -1
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/.gitattributes +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/.github/workflows/python-publish.yml +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/.github/workflows/python-test.yaml +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/.gitignore +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/.run/pytest.run.xml +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/LICENSE +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/MANIFEST.in +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/client/__init__.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/client/chat_client.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/client/implementations/__init__.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/client/implementations/claude/__init__.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/client/implementations/claude/claude_response_handler.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/client/implementations/claude/claude_token_counter.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/client/implementations/claude/non_stream_claude_client.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/client/implementations/claude/stream_claude_client.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/client/implementations/gemini/__init__.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/client/implementations/gemini/gemini_response_handler.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/client/implementations/gemini/gemini_token_counter.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/client/implementations/gemini/non_stream_gemini_client.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/client/implementations/gemini/stream_gemini_client.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/client/implementations/openai/__init__.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/client/implementations/openai/non_stream_openai_client.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/client/implementations/openai/non_stream_openai_responses_client.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/client/implementations/openai/openai_responses_response_handler.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/client/implementations/openai/openai_token_couter.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/client/implementations/openai/steam_openai_responses_client.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/client/implementations/openai/stream_openai_client.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/client/implementations/printing_status.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/client/model_client/__init__.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/client/model_client/claude_client.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/client/model_client/gemini_client.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/client/model_client/openai_client.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/__init__.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/chat_generate/__init__.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/chat_generate/chat_client_factory.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/chat_generate/chat_message_converter.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/chat_generate/media_processor.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/chat_generate/model_client_factory/__init__.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/chat_generate/model_client_factory/claude_client_factory.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/chat_generate/model_client_factory/gemini_client_factory.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/chat_generate/model_client_factory/openai_client_factory.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/chat_generate/model_client_factory/schema_converter.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/chat_generate/model_message_converter/__init__.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/chat_generate/model_message_converter/claude_message_converter.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/chat_generate/model_message_converter/gemini_message_converter.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/chat_generate/model_message_converter/openai_message_converter.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/chat_generate/model_message_converter/openai_responses_message_converter.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/file_fetch.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/message_preprocess/__init__.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/message_preprocess/code_file_extensions.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/message_preprocess/document_processor.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/message_preprocess/file_type_checker.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/message_preprocess/message_preprocessor.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/model_prices.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/resources/__init__.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/resources/model_prices.json +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/type/__init__.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/type/chat_response.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/type/message.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/type/model_message/__init__.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/type/model_message/claude_message.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/type/model_message/gemini_message.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/type/model_message/openai_message.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/type/model_message/openai_responses_message.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/type/serializer.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/tests/__init__.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/tests/file_type_checker_test.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/tests/model_prices_test.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/usage/.env.example +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/usage/config.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/usage/main.py +0 -0
- {llm_bridge-1.15.9 → llm_bridge-1.15.10}/usage/workflow.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: LLM-Bridge
|
|
3
|
-
Version: 1.15.
|
|
3
|
+
Version: 1.15.10
|
|
4
4
|
Summary: A Bridge for LLMs
|
|
5
5
|
Author-email: windsnow1025 <windsnow1025@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -64,7 +64,7 @@ The features listed represent the maximum capabilities of each API type supporte
|
|
|
64
64
|
### Python uv
|
|
65
65
|
|
|
66
66
|
1. Install uv: `powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"`
|
|
67
|
-
2. Install Python in uv: `uv python install 3.12`; upgrade Python in uv: `uv python
|
|
67
|
+
2. Install Python in uv: `uv python install 3.12`; upgrade Python in uv: `uv python upgrade 3.12`
|
|
68
68
|
3. Configure requirements:
|
|
69
69
|
```bash
|
|
70
70
|
uv sync --refresh
|
|
@@ -40,7 +40,7 @@ The features listed represent the maximum capabilities of each API type supporte
|
|
|
40
40
|
### Python uv
|
|
41
41
|
|
|
42
42
|
1. Install uv: `powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"`
|
|
43
|
-
2. Install Python in uv: `uv python install 3.12`; upgrade Python in uv: `uv python
|
|
43
|
+
2. Install Python in uv: `uv python install 3.12`; upgrade Python in uv: `uv python upgrade 3.12`
|
|
44
44
|
3. Configure requirements:
|
|
45
45
|
```bash
|
|
46
46
|
uv sync --refresh
|
|
@@ -2,6 +2,6 @@ from .logic.chat_generate.chat_client_factory import create_chat_client
|
|
|
2
2
|
from .logic.chat_generate.chat_message_converter import *
|
|
3
3
|
from .logic.message_preprocess.message_preprocessor import preprocess_messages
|
|
4
4
|
from .logic.model_prices import ModelPrice, get_model_prices, find_model_prices, calculate_chat_cost
|
|
5
|
-
from .type.chat_response import ChatResponse
|
|
5
|
+
from .type.chat_response import ChatResponse, File
|
|
6
6
|
from .type.message import Role, Message, Content, ContentType
|
|
7
7
|
from .type.serializer import serialize
|
|
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.15.9 → llm_bridge-1.15.10}/llm_bridge/client/implementations/claude/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{llm_bridge-1.15.9 → llm_bridge-1.15.10}/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.15.9 → llm_bridge-1.15.10}/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
|
|
File without changes
|
{llm_bridge-1.15.9 → llm_bridge-1.15.10}/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.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/chat_generate/chat_client_factory.py
RENAMED
|
File without changes
|
{llm_bridge-1.15.9 → llm_bridge-1.15.10}/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.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/message_preprocess/code_file_extensions.py
RENAMED
|
File without changes
|
{llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/message_preprocess/document_processor.py
RENAMED
|
File without changes
|
{llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/message_preprocess/file_type_checker.py
RENAMED
|
File without changes
|
{llm_bridge-1.15.9 → llm_bridge-1.15.10}/llm_bridge/logic/message_preprocess/message_preprocessor.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.15.9 → llm_bridge-1.15.10}/llm_bridge/type/model_message/openai_responses_message.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
|