File size: 321 Bytes
115169a
 
7118dfb
 
 
 
 
 
 
115169a
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from dotenv import load_dotenv
import os
import json


def load_agent_meta():
    with open('./prompt.json', 'r') as file:
        prompt_data = json.load(file)
    return prompt_data


def load_env():
    # Load environment variables from the .env file
    load_dotenv("./API_keys.env")
    # os.getenv('OPENAI_API_KEY')