tests on config params
Browse files
app.py
CHANGED
@@ -4,15 +4,14 @@ from langchain.llms import OpenAI
|
|
4 |
import chromadb
|
5 |
|
6 |
from config import *
|
7 |
-
from config_key import *
|
8 |
from src.control.control import Controller
|
9 |
from src.tools.retriever import Retriever
|
10 |
from src.tools.llm import LlmAgent
|
11 |
from src.model.doc import Doc
|
12 |
import src.view.view as view
|
13 |
|
14 |
-
|
15 |
-
os.environ["OPENAI_API_KEY"] = OPENAI_API_KEY
|
16 |
os.environ["TOKENIZERS_PARALLELISM"] = "true"
|
17 |
if os.environ["CLE"]:
|
18 |
print(os.environ["CLE"])
|
|
|
4 |
import chromadb
|
5 |
|
6 |
from config import *
|
7 |
+
# from config_key import *
|
8 |
from src.control.control import Controller
|
9 |
from src.tools.retriever import Retriever
|
10 |
from src.tools.llm import LlmAgent
|
11 |
from src.model.doc import Doc
|
12 |
import src.view.view as view
|
13 |
|
14 |
+
print("*************")
|
|
|
15 |
os.environ["TOKENIZERS_PARALLELISM"] = "true"
|
16 |
if os.environ["CLE"]:
|
17 |
print(os.environ["CLE"])
|