mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-09-11 12:24:53 +00:00
Fix URL.
This commit is contained in:
parent
6f18cf7fb4
commit
472bf098e4
@ -15,17 +15,18 @@ async def idefics(idefics_handle):
|
|||||||
await idefics_handle.health(300)
|
await idefics_handle.health(300)
|
||||||
return idefics_handle.client
|
return idefics_handle.client
|
||||||
|
|
||||||
|
|
||||||
|
# TODO fix the server parsser to count inline image tokens correctly
|
||||||
def get_chicken():
|
def get_chicken():
|
||||||
with open("integrations-tests/images/chicken_on_money.png", "rb") as image_file:
|
with open("integration-tests/images/chicken_on_money.png", "rb") as image_file:
|
||||||
encoded_string = base64.b64encode(image_file.read())
|
encoded_string = base64.b64encode(image_file.read())
|
||||||
return f"data:image/png;base64,{encoded_string}"
|
return f"data:image/png;base64,{encoded_string}"
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.asyncio
|
@pytest.mark.asyncio
|
||||||
async def test_idefics(idefics, response_snapshot):
|
async def test_idefics(idefics, response_snapshot):
|
||||||
chicken = get_chicken()
|
|
||||||
response = await idefics.generate(
|
response = await idefics.generate(
|
||||||
f"User:Can you tell me a very short story based on the image?",
|
"User:Can you tell me a very short story based on the image?",
|
||||||
max_new_tokens=10,
|
max_new_tokens=10,
|
||||||
decoder_input_details=True,
|
decoder_input_details=True,
|
||||||
)
|
)
|
||||||
@ -38,7 +39,7 @@ async def test_idefics(idefics, response_snapshot):
|
|||||||
async def test_idefics_load(idefics, generate_load, response_snapshot):
|
async def test_idefics_load(idefics, generate_load, response_snapshot):
|
||||||
responses = await generate_load(
|
responses = await generate_load(
|
||||||
idefics,
|
idefics,
|
||||||
f"User:Can you tell me a very short story based on the image?",
|
"User:Can you tell me a very short story based on the image?",
|
||||||
max_new_tokens=10,
|
max_new_tokens=10,
|
||||||
n=4,
|
n=4,
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user