Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
41c2406
initial commit
GeraltSHEN Sep 4, 2025
bdc05f8
update gitignore to ignore local testing
GeraltSHEN Sep 4, 2025
0759232
draft; todo: pyomo shortcuts, no-shortcuts-prompt, rag, processing mo…
GeraltSHEN Sep 16, 2025
c512ba0
add init models
GeraltSHEN Sep 16, 2025
3a2c49c
add rag
GeraltSHEN Sep 17, 2025
91a9398
add prompt to NOT use sc fn
GeraltSHEN Sep 17, 2025
86998ca
fix start_time not init, args missing in check_tool_usage; monitor ro…
GeraltSHEN Sep 22, 2025
6a7546f
fix: immutable_param has no value; constraint slack access needs idx;…
GeraltSHEN Sep 22, 2025
c1ccfeb
fix: code_rag currently only takes one path
GeraltSHEN Sep 22, 2025
ef9e0a1
fix: rag kwargs is search-type-specific; convert rag result to str; r…
GeraltSHEN Sep 23, 2025
35cece8
add: sc fn docs to prompts; llm prompt to logger
GeraltSHEN Sep 23, 2025
53ee371
fix: local_path_to_object not stored when init; merge init_query to i…
GeraltSHEN Sep 23, 2025
f0a3bfa
update gitignore
GeraltSHEN Oct 15, 2025
c4cb466
chore: stop tracking ignored files
GeraltSHEN Oct 15, 2025
6604c18
delete v1 utils.py
GeraltSHEN Oct 15, 2025
f51788b
extract dual when extracting cons
GeraltSHEN Oct 15, 2025
a9ccbaf
remove dependency of pyomo from callback tool
GeraltSHEN Oct 15, 2025
bf3a99f
include is_lp and is_solved in cfg
GeraltSHEN Oct 15, 2025
960bfca
add sc fn: allow llm to track dual in new model
GeraltSHEN Oct 15, 2025
dec77f1
Update custom_tool.py
Saikompalli98 Oct 21, 2025
545132d
Update custom_tool.py
Saikompalli98 Oct 21, 2025
b8b46ca
Update custom_tool.py
Saikompalli98 Oct 21, 2025
6b84fe2
Update custom_tool.py
Saikompalli98 Oct 21, 2025
ab1079e
remove try statement used for debugging: trigger error when loading u…
GeraltSHEN Oct 22, 2025
8e8e75c
revise infeasibility_diagnosis for testing
GeraltSHEN Oct 22, 2025
99d271f
fix: iis2json parsing
GeraltSHEN Oct 22, 2025
72b0804
move unique_component_name to avoid cyclic importing
GeraltSHEN Oct 22, 2025
a16def8
add sc fn: relax_constraint_and_penalize_violation
GeraltSHEN Oct 22, 2025
9bfa632
Added ldr_explain
Saikompalli98 Oct 24, 2025
4b5f87e
Added Robust Analysis
Saikompalli98 Oct 24, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,16 @@ ENV/
__gams*

index*.bin
*.ilp
*.ilp

# Ignore local testing
create_code_testset.py
create_tool_testset.py
grading.py
run_exp.py
show_results.ipynb
quick_test.ipynb
tmp/

# Ignore kb
chroma_langchain_db/
977 changes: 0 additions & 977 deletions agents.py

This file was deleted.

264 changes: 0 additions & 264 deletions app.py

This file was deleted.

14 changes: 14 additions & 0 deletions cfg_debug_use.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{ "model_name": "debug",
"models": {
"local_resources": [
"my_model.pkl"
],
"is_solved": false,
"is_lp": false
},
"models_code": {
"local_resources": [
"Feas/aircraft.py"
]
}
}
Loading