When I ran the provided demo code python3 stitching_everything.py 3 "initial_onto.ttl", error occurs:
Traceback (most recent call last):
File "/home/lh/adaptbot/code/GPT3.5/cooking_domain/stitching_everything.py", line 14, in
actions, funcs = fetch_actions()
File "/home/lh/adaptbot/code/GPT3.5/cooking_domain/LLM_KG_Human/utils/misc_funcs.py", line 1458, in fetch_actions
with open("./LLM_KG_Human/functions/actions.py", "r") as file:
FileNotFoundError: [Errno 2] No such file or directory: './LLM_KG_Human/functions/actions.py'
Which points to lacking "functions" folder and the code in it.
The same occurs when running python3 stitching_everything_exp.py "Give me cot and action sequence to prepare an omlette" 3 "initial_onto.ttl" (a typo in initial_onto.ttl):
Traceback (most recent call last):
File "/home/lh/adaptbot/code/GPT3.5/individual_frameworks/LLM_KG_Human/stitching_everything_exp.py", line 2, in
from functions.actions import *
ModuleNotFoundError: No module named 'functions'
I'm really interested in your work, and will appreciate if you could provide the missing components of the code.
When I ran the provided demo code
python3 stitching_everything.py 3 "initial_onto.ttl", error occurs:Traceback (most recent call last):
File "/home/lh/adaptbot/code/GPT3.5/cooking_domain/stitching_everything.py", line 14, in
actions, funcs = fetch_actions()
File "/home/lh/adaptbot/code/GPT3.5/cooking_domain/LLM_KG_Human/utils/misc_funcs.py", line 1458, in fetch_actions
with open("./LLM_KG_Human/functions/actions.py", "r") as file:
FileNotFoundError: [Errno 2] No such file or directory: './LLM_KG_Human/functions/actions.py'
Which points to lacking "functions" folder and the code in it.
The same occurs when running
python3 stitching_everything_exp.py "Give me cot and action sequence to prepare an omlette" 3 "initial_onto.ttl"(a typo in initial_onto.ttl):Traceback (most recent call last):
File "/home/lh/adaptbot/code/GPT3.5/individual_frameworks/LLM_KG_Human/stitching_everything_exp.py", line 2, in
from functions.actions import *
ModuleNotFoundError: No module named 'functions'
I'm really interested in your work, and will appreciate if you could provide the missing components of the code.