Spaces:
Sleeping
Sleeping
James MacQuillan
commited on
Commit
·
20d2697
1
Parent(s):
897cce4
push
Browse files
app.py
CHANGED
@@ -115,7 +115,7 @@ def process_query(user_input, history):
|
|
115 |
# Create the response request with HuggingFace using search results
|
116 |
response = client.chat_completion(
|
117 |
model="Qwen/Qwen2.5-72B-Instruct",
|
118 |
-
messages=[{"role": "user", "content": f"YOU ARE IM.S, AN INVESTMENT CHATBOT BUILT BY automatedstockmining.org. Answer the user's request '{user_input}' using the following information: {search_results_str} and the chat history {history}. Provide a concise, direct answer in no more than 2-3 sentences, with appropriate emojis. If the user asks for a
|
119 |
max_tokens=3000,
|
120 |
stream=True
|
121 |
)
|
@@ -133,30 +133,9 @@ theme = gr.themes.Citrus(
|
|
133 |
)
|
134 |
|
135 |
examples = [
|
136 |
-
["
|
137 |
["What's the latest news on Cisco Systems stock"],
|
138 |
-
|
139 |
-
["Write me a smart sheet on the trending social sentiment and techncial indicators for nvidia"],
|
140 |
-
["What are the best stocks to buy this month"],
|
141 |
-
["What companies report earnings this week"],
|
142 |
-
["What's Apple's current market cap"],
|
143 |
-
["analyse the technical indicators for apple"],
|
144 |
-
["build a DFCF model for Apple"],
|
145 |
-
["Make a table of Apple's stock price for the last 3 days"],
|
146 |
-
['what is Apples PE ratio and how does it compare top other companies in consumer electronics'],
|
147 |
-
['how did salesforce do on its last earnings?'],
|
148 |
-
['what is the average analyst price target for Nvidia'],
|
149 |
-
['whats the outlook for the stock market in 2025'],
|
150 |
-
['when does Nvidia next report earnings'],
|
151 |
-
['what are the latest products from apple'],
|
152 |
-
["What is Tesla's current price-to-earnings ratio and how does it compare to other car manufacturers?"],
|
153 |
-
["List the top 5 performing stocks in the S&P 500 this month"],
|
154 |
-
["What is the dividend yield for Coca-Cola?"],
|
155 |
-
["Which companies in the tech sector are announcing dividends this month?"],
|
156 |
-
["Analyze the latest moving averages for Microsoft; are they indicating a trend reversal?"],
|
157 |
-
["What is the latest guidance on revenue for Meta?"],
|
158 |
-
["What is the current beta of Amazon stock and how does it compare to the industry average?"],
|
159 |
-
["What are the top-rated ETFs for technology exposure this quarter?"]
|
160 |
]
|
161 |
|
162 |
chatbot = gr.Chatbot(
|
|
|
115 |
# Create the response request with HuggingFace using search results
|
116 |
response = client.chat_completion(
|
117 |
model="Qwen/Qwen2.5-72B-Instruct",
|
118 |
+
messages=[{"role": "user", "content": f"YOU ARE IM.S, AN INVESTMENT CHATBOT BUILT BY automatedstockmining.org. Answer the user's request '{user_input}' using the following information: {search_results_str} and the chat history {history}. Provide a concise, direct answer in no more than 2-3 sentences, with appropriate emojis. If the user asks for a detailed analysis, generate up to 3000 tokens analyzing all trends and patterns."}],
|
119 |
max_tokens=3000,
|
120 |
stream=True
|
121 |
)
|
|
|
133 |
)
|
134 |
|
135 |
examples = [
|
136 |
+
["What's the current price of bitcoin"],
|
137 |
["What's the latest news on Cisco Systems stock"],
|
138 |
+
# More examples...
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
]
|
140 |
|
141 |
chatbot = gr.Chatbot(
|