GabrielSalem commited on
Commit
37f9ca4
·
verified ·
1 Parent(s): 2ad819f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -13
app.py CHANGED
@@ -12,7 +12,7 @@ if not API_KEY:
12
  raise ValueError("Hugging Face API key not found. Please set the 'APIHUGGING' secret.")
13
 
14
  # Initialize Hugging Face Inference Client
15
- client = InferenceClient(api_key=API_KEY)
16
 
17
  # Function to extract text from various file types
18
  def extract_file_content(file_path):
@@ -43,20 +43,13 @@ def get_bot_response(file, prompt):
43
  # Extract content from the uploaded file
44
  file_content = extract_file_content(file)
45
 
46
- # Prepare conversation history
47
- messages = [
48
- {"role": "user", "content": f"{prompt}\n\nFile Content:\n{file_content}"}
49
- ]
50
 
51
- # Call Hugging Face API
52
- bot_response = client.chat_completions.create(
53
- model="Qwen/Qwen2.5-Coder-32B-Instruct",
54
- messages=messages,
55
- max_tokens=500
56
- )
57
 
58
- # Collect and return the bot's response
59
- return bot_response.choices[0].message.content
60
  except Exception as e:
61
  return f"Error: {str(e)}"
62
 
 
12
  raise ValueError("Hugging Face API key not found. Please set the 'APIHUGGING' secret.")
13
 
14
  # Initialize Hugging Face Inference Client
15
+ client = InferenceClient(api_token=API_KEY, model="Qwen/Qwen2.5-Coder-32B-Instruct")
16
 
17
  # Function to extract text from various file types
18
  def extract_file_content(file_path):
 
43
  # Extract content from the uploaded file
44
  file_content = extract_file_content(file)
45
 
46
+ # Prepare input for the model
47
+ input_text = f"{prompt}\n\nFile Content:\n{file_content}"
 
 
48
 
49
+ # Call Hugging Face API for text completion
50
+ response = client.text_generation(input=input_text, max_new_tokens=50000)
 
 
 
 
51
 
52
+ return response
 
53
  except Exception as e:
54
  return f"Error: {str(e)}"
55