mrfirdauss commited on
Commit
356c9f7
Β·
1 Parent(s): bf641b8

context prompt out

Browse files
Files changed (2) hide show
  1. README.md +6 -1
  2. 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