ThanhHoang commited on
Commit
5ba51a3
·
verified ·
1 Parent(s): 1b58825

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +5 -13
config.json CHANGED
@@ -1,14 +1,6 @@
 
1
  {
2
- "model": "neural_network_and_gpt",
3
- "description": "A chatbot model combining a neural network and OpenAI GPT-3.5-turbo.",
4
- "neural_network_config": {
5
- "hidden_layer_sizes": [100],
6
- "max_iter": 300,
7
- "activation": "relu",
8
- "solver": "adam"
9
- },
10
- "openai_config": {
11
- "model": "gpt-3.5-turbo",
12
- "confidence_threshold": 0.5
13
- }
14
- }
 
1
+
2
  {
3
+ "openai_api_key": "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",
4
+ "confidence_threshold": 0.5,
5
+ "model_path": "model.pkl" // Assuming the model is saved in the same directory as config.json
6
+ }