mirror of
https://github.com/imartinez/privateGPT.git
synced 2026-07-17 01:48:03 +00:00
* fix: avoid to block the loop * fix: blocks in expansion * fix: remove maximum concurrent users ... * fix: multiplexer * fix: readers * fix: more fixes ... * fix: impl * feat: tool scheduler * feat: add adaptative * feat: add chat worker * fix: max * feat: add chat/tools workers * fix: mypy * feat: add generic scheduler * fix: get result * feat: do serializable the tool executor * fix: tools * fix: config * fix: config * fix: args * fix: config * fix: serializer * Revert "fix: blocks in expansion" This reverts commita2110f94a8. * fix: unify all logic * feat: add ingestion scheduler * fix: settings * fix: config * feat: add arq worker to chat * fix: arq worker * fix: add nest * fix: mypy * fix: await * fix: script stress * fix: tokenizer * fix: chat scheduler * fix: mypy * fix: add async tokenizer * fix: improve condense * fix: tool scheduler * feat: add initial real async chat worker * fix: mypy * fix: do resumable local executor ... ... ... fix: revert usleess changes fix: remove parent chat job fix: refactor fix: loop ref: rename models fix: chat engine fix: mypy ... ... ... fix: fix deps * fix: tests * fix: tests * ... * fix: stream * fix: config * fix: scheduler * Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> * Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> * Handle PGPT_WORKER_MODE=celery in health check worker status * fix: cancel * fix: arch * fix: test ingestion * fix: deserialization of chat messages * fix: broken results * fix: mypy * fix: test * fix: config * fix: remove arq tool worker * fix: output cls * fix: preserve early resumable tool callbacks * fix: preserve async tool result order * refactor: address worker PR review comments * fix: mypy * test: colocate ARQ chat enqueue coverage * fix: remove redis from tests * test: isolate chat mocks and cancellation timing * fix: tests (cherry picked from commit218b599c66) # Conflicts: # tests/server/chat/anthropic/test_anthropic_client.py # tests/server/chat/anthropic/test_langchain_anthropic.py # tests/server/chat/test_chat_knowledge_revamp.py # tests/server/chat/test_chat_routes.py # tests/server/chat/test_chat_routes_skills_integration.py * fix: tests (cherry picked from commitfc5ec0f72a) * fix: ruff * fix: test * fix: worker config (cherry picked from commit1371c275a1) * fix: principal * test: remove flaky chat cancellation assertion --------- Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
58 lines
1.8 KiB
Python
58 lines
1.8 KiB
Python
from unittest.mock import MagicMock
|
|
|
|
import pytest
|
|
from llama_index.core.base.llms.types import ChatMessage, MessageRole
|
|
|
|
from private_gpt.components.llm.llm_helper import get_async_tokenizer_fn
|
|
from private_gpt.components.llm.tokenizers.tokenizer_base import (
|
|
TokenizedInput,
|
|
TokenizerBase,
|
|
)
|
|
from private_gpt.utils.tokens import async_tokenizer, estimate_token_count
|
|
|
|
|
|
class AsyncCapableTokenizer(MagicMock):
|
|
def __init__(self):
|
|
super().__init__(spec=TokenizerBase)
|
|
self.sync_calls = 0
|
|
self.async_calls = 0
|
|
|
|
def __call__(self, texts=None, images=None, audios=None, **kwargs):
|
|
del images, audios, kwargs
|
|
self.sync_calls += 1
|
|
return TokenizedInput(input_ids=[99])
|
|
|
|
async def acall(self, texts=None, images=None, audios=None, **kwargs):
|
|
del images, audios, kwargs
|
|
self.async_calls += 1
|
|
text = texts or ""
|
|
return TokenizedInput(input_ids=list(range(len(str(text).split()))))
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_async_tokenizer_prefers_underlying_acall():
|
|
tokenizer = AsyncCapableTokenizer()
|
|
tokenizer_fn = get_async_tokenizer_fn(tokenizer)
|
|
|
|
tokens = await async_tokenizer("one two three", tokenizer_fn=tokenizer_fn)
|
|
|
|
assert tokens == [0, 1, 2]
|
|
assert tokenizer.async_calls == 1
|
|
assert tokenizer.sync_calls == 0
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_estimate_token_count_uses_async_tokenizer_wrapper():
|
|
tokenizer = AsyncCapableTokenizer()
|
|
tokenizer_fn = get_async_tokenizer_fn(tokenizer)
|
|
|
|
count = await estimate_token_count(
|
|
chat_history=[ChatMessage(role=MessageRole.USER, content="one two three")],
|
|
tokenizer_fn=tokenizer_fn,
|
|
message_to_input=lambda messages: str(messages[0].content),
|
|
)
|
|
|
|
assert count == 3
|
|
assert tokenizer.async_calls == 1
|
|
assert tokenizer.sync_calls == 0
|