Create settings.py
Browse files- settings.py +7 -0
settings.py
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
def get_context_by_model(model):
|
| 2 |
+
# Placeholder function, replace with your logic
|
| 3 |
+
return 2048
|
| 4 |
+
|
| 5 |
+
def get_messages_formatter_type(model):
|
| 6 |
+
# Placeholder function, replace with your logic
|
| 7 |
+
return "web_search"
|