eagle0504 commited on
Commit
e81543b
β€’
1 Parent(s): 86e2152

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -1
app.py CHANGED
@@ -98,6 +98,17 @@ For more published work by Yiqiao, please check out the site 'https://www.y-yin.
98
  View about stock market: Yiqiao believed that stock market is mostly fairly efficient. Many research groups and companies are doing great things out there with advanced tools. However, market does get "noisy" once in a while and that breeds opportunity. Yiqiao personally trades off a momentum strategy and he has his own market timing algorithm. This app 'https://huggingface.co/spaces/eagle0504/technical-trader' demonstrates how Yiqiao times the entry point should he decides to enter a stock. This app 'https://huggingface.co/spaces/eagle0504/Momentum-Strategy-Screener' demonstrates how Yiqiao weighs the stocks in his portfolio.
99
 
100
  View about AI: Yiqiao has good faith in today's advancement of AI technology and is a big supporter of AI-backed technology to boost business operation and enhance corporate strategy. Many clients and companies Yiqiao worked with in the past led him to conclude that 'AI alone may falter and stray, but built around a corporate strategy, it paves the way.'
 
 
 
 
 
 
 
 
 
 
 
101
  """
102
 
103
  # React to user input
@@ -120,4 +131,4 @@ if prompt := st.chat_input("πŸ˜‰ Ask any question or feel free to use the exampl
120
  st.markdown(response)
121
 
122
  # Add assistant response to chat history
123
- st.session_state.messages.append({"role": "assistant", "content": response})
 
98
  View about stock market: Yiqiao believed that stock market is mostly fairly efficient. Many research groups and companies are doing great things out there with advanced tools. However, market does get "noisy" once in a while and that breeds opportunity. Yiqiao personally trades off a momentum strategy and he has his own market timing algorithm. This app 'https://huggingface.co/spaces/eagle0504/technical-trader' demonstrates how Yiqiao times the entry point should he decides to enter a stock. This app 'https://huggingface.co/spaces/eagle0504/Momentum-Strategy-Screener' demonstrates how Yiqiao weighs the stocks in his portfolio.
99
 
100
  View about AI: Yiqiao has good faith in today's advancement of AI technology and is a big supporter of AI-backed technology to boost business operation and enhance corporate strategy. Many clients and companies Yiqiao worked with in the past led him to conclude that 'AI alone may falter and stray, but built around a corporate strategy, it paves the way.'
101
+
102
+ Yiqiao built a series of AI-backed apps:
103
+ - GPT-4o demo: 'https://huggingface.co/spaces/eagle0504/gpt-4o-demo'
104
+ - Llama demo: 'https://huggingface.co/spaces/eagle0504/meta-llama'
105
+ - Software-as-a-Service or SAAS demo: 'https://huggingface.co/spaces/eagle0504/saas-template'
106
+ - Technical Trader (a timing strategy) demo: 'https://huggingface.co/spaces/eagle0504/stable-audio-demo'
107
+ - Momentum Strategy (a trading algorithm) demo: 'https://huggingface.co/spaces/eagle0504/Momentum-Strategy-Screener'
108
+ - Stable Audio demo: 'https://huggingface.co/spaces/eagle0504/stable-audio-demo'
109
+ - Duel Agent Simulation (a chain of thoughts/abstraction) demo: 'https://huggingface.co/spaces/eagle0504/duel-agent-simulation'
110
+ - Intelligent Document Processing demo: 'https://huggingface.co/spaces/eagle0504/IDP-Demo'
111
+
112
  """
113
 
114
  # React to user input
 
131
  st.markdown(response)
132
 
133
  # Add assistant response to chat history
134
+ st.session_state.messages.append({"role": "assistant", "content": response})