pschofield2 commited on
Commit
ec00f29
·
verified ·
1 Parent(s): 1d70c03

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -217,7 +217,11 @@ description = """We gave Ann-E a name, but not a personality. It's time to chang
217
  Currently, the analysis is based on company profile information, the most recent balance sheet and income statement metrics, and current TradeSmith proprietary indicators.
218
  We are working on adding recent news for the model to consider.
219
 
220
- This demonstration shows just a simple use case for building out a proprietary Alta Large Language Model (LLM). The possibilities are endless!"""
 
 
 
 
221
 
222
 
223
  # Gradio Interface
@@ -227,7 +231,7 @@ iface = gr.Interface(fn=analyze_stock,
227
  gr.Textbox(label = 'Information for Model (Showing for demo purposes, would not be shown to user on TradeSmith site).'),
228
  gr.Textbox(label = 'Ann-E Response')
229
  ],
230
- title="Stock Analysis GPT Model",
231
  description=description)
232
 
233
  if __name__ == "__main__":
 
217
  Currently, the analysis is based on company profile information, the most recent balance sheet and income statement metrics, and current TradeSmith proprietary indicators.
218
  We are working on adding recent news for the model to consider.
219
 
220
+ This demonstration shows just a simple use case for building out a proprietary Alta Large Language Model (LLM).
221
+
222
+ Future vision includes interactive model, fine-tuned on Alta content and indicators, that help our subscribers and keep them engaged on the site.
223
+
224
+ The possibilities are endless!"""
225
 
226
 
227
  # Gradio Interface
 
231
  gr.Textbox(label = 'Information for Model (Showing for demo purposes, would not be shown to user on TradeSmith site).'),
232
  gr.Textbox(label = 'Ann-E Response')
233
  ],
234
+ title="Demo: Predictive Alpha + Stock Analysis GPT Model",
235
  description=description)
236
 
237
  if __name__ == "__main__":