put middle orchestrator
Browse files- orchestrator_agent.py +3 -0
orchestrator_agent.py
CHANGED
@@ -9,6 +9,9 @@ from pydantic import BaseModel
|
|
9 |
from google.api_core.exceptions import ResourceExhausted # Import the exception for quota exhaustion
|
10 |
from csv_service import get_csv_basic_info
|
11 |
from orchestrator_functions import csv_chart, csv_chat
|
|
|
|
|
|
|
12 |
|
13 |
|
14 |
# Load all API keys from the environment variable
|
|
|
9 |
from google.api_core.exceptions import ResourceExhausted # Import the exception for quota exhaustion
|
10 |
from csv_service import get_csv_basic_info
|
11 |
from orchestrator_functions import csv_chart, csv_chat
|
12 |
+
from dotenv import load_dotenv
|
13 |
+
|
14 |
+
load_dotenv()
|
15 |
|
16 |
|
17 |
# Load all API keys from the environment variable
|