bwilkie commited on
Commit
74b06d0
·
verified ·
1 Parent(s): f2e7e96

Update multiagents.py

Browse files
Files changed (1) hide show
  1. multiagents.py +4 -3
multiagents.py CHANGED
@@ -65,8 +65,8 @@ try:
65
  api_key=os.getenv("groq_api"),
66
  model_id = "qwen/qwen3-32b"
67
  )
68
-
69
- output_test = My_Agent('What are the 3 laws of robotics')
70
  print('1', output_test)
71
 
72
  except:
@@ -83,7 +83,8 @@ except:
83
  temperature=0.1,
84
  max_tokens=4000,
85
  )
86
- output_test = My_Agent('What are the 3 laws of robotics')
 
87
  print('2', output_test)
88
 
89
 
 
65
  api_key=os.getenv("groq_api"),
66
  model_id = "qwen/qwen3-32b"
67
  )
68
+ test_messages = [{"role": "user", "content": "What are the 3 laws of robotics"}]
69
+ output_test = My_Agent(test_messages)
70
  print('1', output_test)
71
 
72
  except:
 
83
  temperature=0.1,
84
  max_tokens=4000,
85
  )
86
+ test_messages = [{"role": "user", "content": "What are the 3 laws of robotics"}]
87
+ output_test = My_Agent(test_messages)
88
  print('2', output_test)
89
 
90