Bhaskar2611 commited on
Commit
f01ed26
·
verified ·
1 Parent(s): 01f5c07

Update llm_tool.py

Browse files
Files changed (1) hide show
  1. llm_tool.py +1 -1
llm_tool.py CHANGED
@@ -23,7 +23,7 @@ def analyze_data(prompt):
23
  # Get response from LLM
24
  completion = client.chat.completions.create(
25
  messages=messages,
26
- max_tokens=500 # Control response length
27
  )
28
 
29
  # Return only the content part of the response
 
23
  # Get response from LLM
24
  completion = client.chat.completions.create(
25
  messages=messages,
26
+ max_tokens=4096 # Control response length
27
  )
28
 
29
  # Return only the content part of the response