--- {} --- --- license: apache-2.0 ## 🧩 Simple Use Case ### define the function def get_completion(input): system = "Think step by step and solve the problem in a friendly way." prompt = f"#### System: {system} #### User: {input} #### Response from My merged test model:" print(prompt) fixtral_prompt = test_slerp_pipeline(prompt, max_new_tokens=500 ) return fixtral_prompt[0]["generated_text"] # let's prompt prompt = "problem" print(get_completion(prompt))