srinuksv commited on
Commit
c5bf994
·
verified ·
1 Parent(s): 3d2bf9f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -15
app.py CHANGED
@@ -32,22 +32,14 @@ def summarize_conversation(history: list):
32
  history_text = "\n".join([f"{entry['sender']}: {entry['message']}" for entry in history])
33
 
34
  # Create a client instance
35
- client = Client("vilarin/Llama-3.1-8B-Instruct")
36
-
37
- # Predict the summary using the new parameters
38
  result = client.predict(
39
- message=history_text,
40
- system_prompt="tell me what user interest using bellow conversation give me answer within 20 to 60 words",
41
- temperature=0.8,
42
- max_new_tokens=1024,
43
- top_p=1,
44
- top_k=20,
45
- penalty=1.2,
46
- api_name="/chat"
47
- )
48
-
49
- # Decode the result
50
- generated_text = result
51
  return result
52
 
53
 
 
32
  history_text = "\n".join([f"{entry['sender']}: {entry['message']}" for entry in history])
33
 
34
  # Create a client instance
35
+ client = Client("Qwen/Qwen2.5-72B-Instruct")
 
 
36
  result = client.predict(
37
+ query=history_text,
38
+ history=[],
39
+ system="you are a sumarization model your goal is to find the user interest based on conversation",
40
+ api_name="/model_chat"
41
+ )
42
+ print(result)
 
 
 
 
 
 
43
  return result
44
 
45