Wendong-Fan commited on
Commit
f6ca5b1
·
2 Parent(s): e587de0 25858dd

fix groq example path and the usage (#332)

Browse files
Files changed (1) hide show
  1. examples/run_groq.py +2 -2
examples/run_groq.py CHANGED
@@ -23,7 +23,7 @@ It configures different agent roles with appropriate Groq models based on their
23
  To use this module:
24
  1. Set GROQ_API_KEY in your .env file
25
  2. Set OPENAI_API_BASE_URL to "https://api.groq.com/openai/v1"
26
- 3. Run with: python -m owl.run_groq
27
  """
28
 
29
  from dotenv import load_dotenv
@@ -41,7 +41,7 @@ from camel.toolkits import (
41
  from camel.types import ModelPlatformType, ModelType
42
  from camel.logger import set_log_level
43
 
44
- from utils import OwlRolePlaying, run_society, DocumentProcessingToolkit
45
 
46
  load_dotenv()
47
 
 
23
  To use this module:
24
  1. Set GROQ_API_KEY in your .env file
25
  2. Set OPENAI_API_BASE_URL to "https://api.groq.com/openai/v1"
26
+ 3. Run with: python -m examples.run_groq
27
  """
28
 
29
  from dotenv import load_dotenv
 
41
  from camel.types import ModelPlatformType, ModelType
42
  from camel.logger import set_log_level
43
 
44
+ from owl.utils import OwlRolePlaying, run_society, DocumentProcessingToolkit
45
 
46
  load_dotenv()
47