razaali10 commited on
Commit
635c929
·
verified ·
1 Parent(s): a220e91

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +22 -0
config.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "functions": [
3
+ {
4
+ "name": "simulate_epanet",
5
+ "description": "Simulate a water distribution model using an EPANET .inp file and return node head values.",
6
+ "parameters": {
7
+ "type": "object",
8
+ "properties": {
9
+ "inp_file": {
10
+ "type": "string",
11
+ "format": "binary",
12
+ "description": "The EPANET .inp file to simulate"
13
+ }
14
+ },
15
+ "required": ["inp_file"]
16
+ }
17
+ }
18
+ ],
19
+ "function_call": {
20
+ "name": "simulate_epanet"
21
+ }
22
+ }