bwilkie commited on
Commit
6b12716
·
verified ·
1 Parent(s): 56b7f2d

Update multiagents.py

Browse files
Files changed (1) hide show
  1. multiagents.py +3 -2
multiagents.py CHANGED
@@ -65,12 +65,13 @@ try:
65
  model_id = "qwen/qwen3-32b"
66
  )
67
 
68
- output_test = MyAgent('What are the 3 laws of robotics')
69
  print('1', output_test)
70
 
71
  except:
72
  # Check if API key is available
73
- groq_api_key = os.getenv("GROQ_API_KEY")
 
74
  if not groq_api_key:
75
  raise ValueError("GROQ_API_KEY environment variable is not set")
76
 
 
65
  model_id = "qwen/qwen3-32b"
66
  )
67
 
68
+ output_test = My_Agent('What are the 3 laws of robotics')
69
  print('1', output_test)
70
 
71
  except:
72
  # Check if API key is available
73
+ groq_api_key = os.environ.get("GROQ_API_KEY")
74
+
75
  if not groq_api_key:
76
  raise ValueError("GROQ_API_KEY environment variable is not set")
77