import gradio as gr import requests import os ##Bloom Inference API API_URL = "https://api-inference.huggingface.co/models/bigscience/bloom" headers = {"Authorization": f"Bearer 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"} prompt_sep = '😃' def text_generate(prompt, top_p=0.8, top_k=100, temperature=1.0, num_beams=3, repetition_penalty=3.0): #Prints to debug the code print(f"*****Inside text_generate - Prompt is :{prompt}") max_tokens = 250 max_prompt_len = 50 json_ = {"inputs": prompt[-max_prompt_len:], "parameters": { "top_p": float(top_p), "top_k": top_k, "temperature": float(temperature), "max_new_tokens": max_tokens, "return_full_text": True, "do_sample":True, "num_beams": num_beams, "repetition_penalty": float(repetition_penalty), }, "options": {"use_cache": True, "wait_for_model": True, },} print(f"Gen params is: {json_}") response = requests.post(API_URL, headers=headers, json=json_) print(f"Response is : {response}") output = response.json() print(f"output is : {output}") output_tmp = output[0]['generated_text'] print(f"output_tmp is: {output_tmp}") solution = output_tmp.split("\nQ:")[0] print(f"Final response after splits is: {solution}") if '\nOutput:' in solution: final_solution = solution.split("\nOutput:")[0] print(f"Response after removing output is: {final_solution}") # elif '\n\n' in solution: # final_solution = solution.split("\n\n")[0] # print(f"Response after removing new line entries is: {final_solution}") else: final_solution = solution final_solution = prompt[:max(0, len(prompt) - max_prompt_len)].replace(prompt_sep, '') + prompt_sep + final_solution.replace(prompt_sep, '') if 0: if len(generated_txt) == 0 : display_output = final_solution else: display_output = generated_txt[:-len(prompt)] + final_solution new_prompt = final_solution[len(prompt):] print(f"new prompt for next cycle is : {new_prompt}") print(f"display_output for printing on screen is : {display_output}") if len(new_prompt) == 0: temp_text = display_output[::-1] print(f"What is the last character of sentence? : {temp_text[0]}") if temp_text[1] == '.': first_period_loc = temp_text[2:].find('.') + 1 print(f"Location of last Period is: {first_period_loc}") new_prompt = display_output[-first_period_loc:-1] print(f"Not sending blank as prompt so new prompt for next cycle is : {new_prompt}") else: print("HERE") first_period_loc = temp_text.find('.') print(f"Location of last Period is : {first_period_loc}") new_prompt = display_output[-first_period_loc:-1] print(f"Not sending blank as prompt so new prompt for next cycle is : {new_prompt}") display_output = display_output[:-1] return final_solution demo = gr.Blocks() # Test it: # Mike and John are fighting in a war. A monster caught John. John shout: “Helping!” Mike run to him, saved him, but Mike was killed by the monster # 迈克和约翰正在打仗。一个怪物抓住了约翰。约翰喊道:“救命!”迈克跑向他,救了他,但迈克被怪物杀了 # Mike and John are fighting in a war. A monster caught John. John shout: “Helping!” Mike run to him, saved him, but Mike was killed by the monster. John looked at Mike # 迈克和约翰正在打仗。一个怪物抓住了约翰。约翰喊道:“救命!”迈克跑向他,救了他,但迈克被怪物杀了。约翰看着迈克 with demo: gr.Markdown("