Spaces:
Sleeping
Sleeping
Commit Β·
356c9f7
1
Parent(s): bf641b8
context prompt out
Browse files- README.md +6 -1
- src/FinancialAgentApp.py +1 -0
README.md
CHANGED
|
@@ -87,4 +87,9 @@ Streaming Response to User
|
|
| 87 |
βββ requirements.txt
|
| 88 |
βββ Dockerfile
|
| 89 |
βββ README.md
|
| 90 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 87 |
βββ requirements.txt
|
| 88 |
βββ Dockerfile
|
| 89 |
βββ README.md
|
| 90 |
+
```
|
| 91 |
+
|
| 92 |
+
## Evaluation
|
| 93 |
+
- This model multimodal still not stable, sometime the model can show, sometimes not.
|
| 94 |
+
- Model will consistently confirming about the dataset and paper as given.
|
| 95 |
+
- If you request data from one of the data source implisitely, maybe the model will guessing which data do you want. So the accuracy might not that accurate.
|
src/FinancialAgentApp.py
CHANGED
|
@@ -193,6 +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 |
return context_prompt
|
| 197 |
|
| 198 |
|
|
|
|
| 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 |
|