TechitoTamani commited on
Commit
be23790
·
verified ·
1 Parent(s): 3438765

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +1 -1
src/streamlit_app.py CHANGED
@@ -86,7 +86,7 @@ def convert_to_dict(text):
86
  model_name_or_path = "TechitoTamani/Qwen3-0.6B_FinetuneWithMyData-Merged"
87
 
88
  json_path = os.path.join(os.path.dirname(__file__), 'tools.json')
89
- with open('json_path', 'r', encoding='utf-8') as f:
90
  TOOLS = json.load(f)
91
 
92
  @st.cache_resource
 
86
  model_name_or_path = "TechitoTamani/Qwen3-0.6B_FinetuneWithMyData-Merged"
87
 
88
  json_path = os.path.join(os.path.dirname(__file__), 'tools.json')
89
+ with open(json_path, 'r', encoding='utf-8') as f:
90
  TOOLS = json.load(f)
91
 
92
  @st.cache_resource