from gradio_client import Client client = Client("https://huggingface.co/spaces/wiklif/mixtral-api") # Przykładowe dane wejściowe prompt = "Jak się masz?" history = [] response = client.predict(prompt, history) print(response)