rootxhacker commited on
Commit
758f9db
·
verified ·
1 Parent(s): 8f08ab3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -12,13 +12,14 @@ tokenizer = AutoTokenizer.from_pretrained(config.base_model_name_or_path)
12
  # Load the Lora model
13
  model = PeftModel.from_pretrained(model, peft_model_id)
14
 
15
- model.config.to_json_file("config.json")
16
 
 
17
  def get_completion(query, model, tokenizer):
18
  inputs = tokenizer(query, return_tensors="pt")
19
  outputs = model.generate(**inputs, max_new_tokens=512, do_sample=True, temperature=0.7)
20
  return tokenizer.decode(outputs[0], skip_special_tokens=True)
21
 
 
22
  def code_review(code_to_analyze):
23
  query = f"As a code review expert, your role will be to carefully examine the code for potential security flaws and provide guidance on secure coding practices. This may include identifying common coding mistakes that could lead to vulnerabilities, suggesting ways to improve the code's overall security, and recommending tools or techniques that can be used to detect and prevent potential threats. Your expertise in security will be particularly valuable in ensuring that any code developed meets the highest security standard:\n{code_to_analyze}"
24
  result = get_completion(query, model, tokenizer)
 
12
  # Load the Lora model
13
  model = PeftModel.from_pretrained(model, peft_model_id)
14
 
 
15
 
16
+ @spaces.GPU(duration=200)
17
  def get_completion(query, model, tokenizer):
18
  inputs = tokenizer(query, return_tensors="pt")
19
  outputs = model.generate(**inputs, max_new_tokens=512, do_sample=True, temperature=0.7)
20
  return tokenizer.decode(outputs[0], skip_special_tokens=True)
21
 
22
+ @spaces.GPU(duration=200)
23
  def code_review(code_to_analyze):
24
  query = f"As a code review expert, your role will be to carefully examine the code for potential security flaws and provide guidance on secure coding practices. This may include identifying common coding mistakes that could lead to vulnerabilities, suggesting ways to improve the code's overall security, and recommending tools or techniques that can be used to detect and prevent potential threats. Your expertise in security will be particularly valuable in ensuring that any code developed meets the highest security standard:\n{code_to_analyze}"
25
  result = get_completion(query, model, tokenizer)