-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
59 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import pytest | ||
from chainlite import ( | ||
get_logger, | ||
llm_generation_chain, | ||
) | ||
|
||
logger = get_logger(__name__) | ||
|
||
|
||
test_engine = "gpt-4o-openai" | ||
|
||
|
||
@pytest.mark.asyncio(scope="session") | ||
async def test_llm_generate(): | ||
response, logprobs = await llm_generation_chain( | ||
template_file="test.prompt", # prompt path relative to one of the paths specified in `prompt_dirs` | ||
engine=test_engine, | ||
max_tokens=5, | ||
force_skip_cache=True, | ||
return_top_logprobs=10, | ||
).ainvoke({}) | ||
|
||
assert response is not None, "The response should not be None" | ||
assert isinstance(response, str), "The response should be a string" | ||
assert len(response) > 0, "The response should not be empty" | ||
|
||
assert len(logprobs) == 5 | ||
for i in range(len(logprobs)): | ||
assert "top_logprobs" in logprobs[i] | ||
assert len(logprobs[i]["top_logprobs"]) == 10 |