mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-18 02:06:54 +08:00

Co-authored-by: StyleZhang <jasonapring2015@outlook.com> Co-authored-by: Garfield Dai <dai.hai@foxmail.com> Co-authored-by: chenhe <guchenhe@gmail.com> Co-authored-by: jyong <jyong@dify.ai> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: Yeuoly <admin@srmxy.cn>
213 lines
6.2 KiB
Python
213 lines
6.2 KiB
Python
import os
|
|
import pytest
|
|
|
|
from typing import Generator
|
|
|
|
from core.model_runtime.entities.message_entities import AssistantPromptMessage, TextPromptMessageContent, UserPromptMessage, \
|
|
SystemPromptMessage, PromptMessageTool
|
|
from core.model_runtime.entities.model_entities import ParameterRule
|
|
from core.model_runtime.entities.llm_entities import LLMResult, LLMResultChunkDelta, \
|
|
LLMResultChunk
|
|
from core.model_runtime.errors.validate import CredentialsValidateFailedError
|
|
from core.model_runtime.model_providers.localai.llm.llm import LocalAILarguageModel
|
|
|
|
def test_validate_credentials_for_chat_model():
|
|
model = LocalAILarguageModel()
|
|
|
|
with pytest.raises(CredentialsValidateFailedError):
|
|
model.validate_credentials(
|
|
model='chinese-llama-2-7b',
|
|
credentials={
|
|
'server_url': 'hahahaha',
|
|
'completion_type': 'completion',
|
|
}
|
|
)
|
|
|
|
model.validate_credentials(
|
|
model='chinese-llama-2-7b',
|
|
credentials={
|
|
'server_url': os.environ.get('LOCALAI_SERVER_URL'),
|
|
'completion_type': 'completion',
|
|
}
|
|
)
|
|
|
|
def test_invoke_completion_model():
|
|
model = LocalAILarguageModel()
|
|
|
|
response = model.invoke(
|
|
model='chinese-llama-2-7b',
|
|
credentials={
|
|
'server_url': os.environ.get('LOCALAI_SERVER_URL'),
|
|
'completion_type': 'completion',
|
|
},
|
|
prompt_messages=[
|
|
UserPromptMessage(
|
|
content='ping'
|
|
)
|
|
],
|
|
model_parameters={
|
|
'temperature': 0.7,
|
|
'top_p': 1.0,
|
|
'max_tokens': 10
|
|
},
|
|
stop=[],
|
|
user="abc-123",
|
|
stream=False
|
|
)
|
|
|
|
assert isinstance(response, LLMResult)
|
|
assert len(response.message.content) > 0
|
|
assert response.usage.total_tokens > 0
|
|
|
|
def test_invoke_chat_model():
|
|
model = LocalAILarguageModel()
|
|
|
|
response = model.invoke(
|
|
model='chinese-llama-2-7b',
|
|
credentials={
|
|
'server_url': os.environ.get('LOCALAI_SERVER_URL'),
|
|
'completion_type': 'chat_completion',
|
|
},
|
|
prompt_messages=[
|
|
UserPromptMessage(
|
|
content='ping'
|
|
)
|
|
],
|
|
model_parameters={
|
|
'temperature': 0.7,
|
|
'top_p': 1.0,
|
|
'max_tokens': 10
|
|
},
|
|
stop=[],
|
|
user="abc-123",
|
|
stream=False
|
|
)
|
|
|
|
assert isinstance(response, LLMResult)
|
|
assert len(response.message.content) > 0
|
|
assert response.usage.total_tokens > 0
|
|
|
|
def test_invoke_stream_completion_model():
|
|
model = LocalAILarguageModel()
|
|
|
|
response = model.invoke(
|
|
model='chinese-llama-2-7b',
|
|
credentials={
|
|
'server_url': os.environ.get('LOCALAI_SERVER_URL'),
|
|
'completion_type': 'completion',
|
|
},
|
|
prompt_messages=[
|
|
UserPromptMessage(
|
|
content='Hello World!'
|
|
)
|
|
],
|
|
model_parameters={
|
|
'temperature': 0.7,
|
|
'top_p': 1.0,
|
|
'max_tokens': 10
|
|
},
|
|
stop=['you'],
|
|
stream=True,
|
|
user="abc-123"
|
|
)
|
|
|
|
assert isinstance(response, Generator)
|
|
for chunk in response:
|
|
assert isinstance(chunk, LLMResultChunk)
|
|
assert isinstance(chunk.delta, LLMResultChunkDelta)
|
|
assert isinstance(chunk.delta.message, AssistantPromptMessage)
|
|
assert len(chunk.delta.message.content) > 0 if chunk.delta.finish_reason is None else True
|
|
|
|
def test_invoke_stream_chat_model():
|
|
model = LocalAILarguageModel()
|
|
|
|
response = model.invoke(
|
|
model='chinese-llama-2-7b',
|
|
credentials={
|
|
'server_url': os.environ.get('LOCALAI_SERVER_URL'),
|
|
'completion_type': 'chat_completion',
|
|
},
|
|
prompt_messages=[
|
|
UserPromptMessage(
|
|
content='Hello World!'
|
|
)
|
|
],
|
|
model_parameters={
|
|
'temperature': 0.7,
|
|
'top_p': 1.0,
|
|
'max_tokens': 10
|
|
},
|
|
stop=['you'],
|
|
stream=True,
|
|
user="abc-123"
|
|
)
|
|
|
|
assert isinstance(response, Generator)
|
|
for chunk in response:
|
|
assert isinstance(chunk, LLMResultChunk)
|
|
assert isinstance(chunk.delta, LLMResultChunkDelta)
|
|
assert isinstance(chunk.delta.message, AssistantPromptMessage)
|
|
assert len(chunk.delta.message.content) > 0 if chunk.delta.finish_reason is None else True
|
|
|
|
def test_get_num_tokens():
|
|
model = LocalAILarguageModel()
|
|
|
|
num_tokens = model.get_num_tokens(
|
|
model='????',
|
|
credentials={
|
|
'server_url': os.environ.get('LOCALAI_SERVER_URL'),
|
|
'completion_type': 'chat_completion',
|
|
},
|
|
prompt_messages=[
|
|
SystemPromptMessage(
|
|
content='You are a helpful AI assistant.',
|
|
),
|
|
UserPromptMessage(
|
|
content='Hello World!'
|
|
)
|
|
],
|
|
tools=[
|
|
PromptMessageTool(
|
|
name='get_current_weather',
|
|
description='Get the current weather in a given location',
|
|
parameters={
|
|
"type": "object",
|
|
"properties": {
|
|
"location": {
|
|
"type": "string",
|
|
"description": "The city and state e.g. San Francisco, CA"
|
|
},
|
|
"unit": {
|
|
"type": "string",
|
|
"enum": [
|
|
"c",
|
|
"f"
|
|
]
|
|
}
|
|
},
|
|
"required": [
|
|
"location"
|
|
]
|
|
}
|
|
)
|
|
]
|
|
)
|
|
|
|
assert isinstance(num_tokens, int)
|
|
assert num_tokens == 77
|
|
|
|
num_tokens = model.get_num_tokens(
|
|
model='????',
|
|
credentials={
|
|
'server_url': os.environ.get('LOCALAI_SERVER_URL'),
|
|
'completion_type': 'chat_completion',
|
|
},
|
|
prompt_messages=[
|
|
UserPromptMessage(
|
|
content='Hello World!'
|
|
)
|
|
],
|
|
)
|
|
|
|
assert isinstance(num_tokens, int)
|
|
assert num_tokens == 10 |