Spaces:
Sleeping
Sleeping
Commit ·
61dd8dc
1
Parent(s): 356c9f7
fix comma
Browse files- src/FinancialAgentApp.py +1 -1
src/FinancialAgentApp.py
CHANGED
|
@@ -193,7 +193,7 @@ class OpenAIFinancialRAG(FinancialAgentApp):
|
|
| 193 |
def __handle_context__(self, response_state: ResponseState):
|
| 194 |
"""Handle additional context (data, PDF, etc.)."""
|
| 195 |
context_prompt = super().__handle_context__(response_state)
|
| 196 |
-
print('context
|
| 197 |
return context_prompt
|
| 198 |
|
| 199 |
|
|
|
|
| 193 |
def __handle_context__(self, response_state: ResponseState):
|
| 194 |
"""Handle additional context (data, PDF, etc.)."""
|
| 195 |
context_prompt = super().__handle_context__(response_state)
|
| 196 |
+
print('context',context_prompt)
|
| 197 |
return context_prompt
|
| 198 |
|
| 199 |
|