We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ea7393b + ff809bf commit b9765e7Copy full SHA for b9765e7
mle/cli.py
@@ -19,11 +19,10 @@
19
startup_web,
20
print_in_box,
21
)
22
-from mle.utils import LanceDBMemory, list_files, read_file
23
from mle.utils import CodeChunker
+from mle.utils import LanceDBMemory, list_files, read_file
24
25
console = Console()
26
-memory = LanceDBMemory(os.getcwd())
27
28
29
@click.group()
@@ -199,6 +198,7 @@ def chat(model, build_mem):
199
198
if not check_config(console):
200
return
201
+ memory = LanceDBMemory(os.getcwd())
202
if build_mem:
203
working_dir = os.getcwd()
204
table_name = 'mle_chat_' + working_dir.split('/')[-1]
requirements.txt
@@ -1,7 +1,7 @@
1
rich
2
click
3
py7zr~=0.22.0
4
-openai~=1.34.0
+openai
5
pyyaml
6
kaggle
7
fastapi
0 commit comments