Spaces:
Sleeping
Sleeping
from gradio_client import Client | |
client = Client("https://huggingface.co/spaces/wiklif/mixtral-api") | |
# Przykładowe dane wejściowe | |
prompt = "Wymień 10 stanów USA" | |
history = [] | |
response = client.predict(prompt, history) | |
print(response) | |