James MacQuillan commited on
Commit
c250a6a
·
1 Parent(s): 2c5eef9
Files changed (2) hide show
  1. app.py +523 -61
  2. requirements.txt +8 -1
app.py CHANGED
@@ -1,63 +1,525 @@
1
- import gradio as gr
2
  from huggingface_hub import InferenceClient
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
 
4
- """
5
- For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
6
- """
7
- client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
8
-
9
-
10
- def respond(
11
- message,
12
- history: list[tuple[str, str]],
13
- system_message,
14
- max_tokens,
15
- temperature,
16
- top_p,
17
- ):
18
- messages = [{"role": "system", "content": system_message}]
19
-
20
- for val in history:
21
- if val[0]:
22
- messages.append({"role": "user", "content": val[0]})
23
- if val[1]:
24
- messages.append({"role": "assistant", "content": val[1]})
25
-
26
- messages.append({"role": "user", "content": message})
27
-
28
- response = ""
29
-
30
- for message in client.chat_completion(
31
- messages,
32
- max_tokens=max_tokens,
33
- stream=True,
34
- temperature=temperature,
35
- top_p=top_p,
36
- ):
37
- token = message.choices[0].delta.content
38
-
39
- response += token
40
- yield response
41
-
42
- """
43
- For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
44
- """
45
- demo = gr.ChatInterface(
46
- respond,
47
- additional_inputs=[
48
- gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
49
- gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
50
- gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
51
- gr.Slider(
52
- minimum=0.1,
53
- maximum=1.0,
54
- value=0.95,
55
- step=0.05,
56
- label="Top-p (nucleus sampling)",
57
- ),
58
- ],
59
- )
60
-
61
-
62
- if __name__ == "__main__":
63
- demo.launch()
 
1
+
2
  from huggingface_hub import InferenceClient
3
+ import requests
4
+ from bs4 import BeautifulSoup
5
+ import lxml
6
+ import gradio as gr
7
+ import os
8
+ # Initialize the InferenceClient
9
+ client = InferenceClient(token=os.getenv("HF_TOKEN"))
10
+ secretkey = os.getenv("FMP_KEY")
11
+
12
+ # BOT avatar for chat interface
13
+ BOT_AVATAR = 'https://automatedstockmining.org/wp-content/uploads/2024/09/logo.webp'
14
+
15
+ # API Documentation (placed outside the function)
16
+ data = '''
17
+ # Stock List API
18
+ stock_list_api = f"https://financialmodelingprep.com/api/v3/stock/list?apikey={secretkey}"
19
+
20
+ # Exchange Traded Fund Search API
21
+ etf_search_api = f"https://financialmodelingprep.com/api/v3/etf/list?apikey={secretkey}"
22
+
23
+ # Statement Symbols List API
24
+ statement_symbols_list_api = f"https://financialmodelingprep.com/api/v3/financial-statement-symbol-lists?apikey={secretkey}"
25
+
26
+ # Tradable Search API
27
+ tradable_search_api = f"https://financialmodelingprep.com/api/v3/available-traded/list?apikey={secretkey}"
28
+
29
+ # Commitment of Traders Report API
30
+ commitment_of_traders_report_api = f"https://financialmodelingprep.com/api/v4/commitment_of_traders_report/list?apikey={secretkey}"
31
+
32
+ # CIK List API
33
+ cik_list_api = f"https://financialmodelingprep.com/api/v3/cik_list?apikey={secretkey}"
34
+
35
+ # Euronext Symbols API
36
+ euronext_symbols_api = f"https://financialmodelingprep.com/api/v3/symbol/available-euronext?apikey={secretkey}"
37
+
38
+ # Symbol Changes API
39
+ symbol_changes_api = f"https://financialmodelingprep.com/api/v4/symbol_change?apikey={secretkey}"
40
+
41
+ # Exchange Symbols API
42
+ exchange_symbols_api = f"https://financialmodelingprep.com/api/v3/symbol/{exchange}?apikey={secretkey}"
43
+
44
+ # Available Indexes API
45
+ available_indexes_api = f"https://financialmodelingprep.com/api/v3/symbol/available-indexes?apikey={secretkey}"
46
+
47
+ # Company Profile API
48
+ company_profile_api = f"https://financialmodelingprep.com/api/v3/profile/{symbol}?apikey={secretkey}"
49
+
50
+ # Executive Compensation API
51
+ executive_compensation_api = f"https://financialmodelingprep.com/api/v4/governance/executive_compensation?symbol={symbol}&apikey={secretkey}"
52
+
53
+ # Compensation Benchmark API
54
+ compensation_benchmark_api = f"https://financialmodelingprep.com/api/v4/executive-compensation-benchmark?year={year}&apikey={secretkey}"
55
+
56
+ # Company Notes API
57
+ company_notes_api = f"https://financialmodelingprep.com/api/v4/company-notes?symbol={symbol}&apikey={secretkey}"
58
+
59
+ # Historical Employee API
60
+ historical_employee_api = f"https://financialmodelingprep.com/api/v4/historical/employee_count?symbol={symbol}&apikey={secretkey}"
61
+
62
+ # Employee Count API
63
+ employee_count_api = f"https://financialmodelingprep.com/api/v4/employee_count?symbol={symbol}&apikey={secretkey}"
64
+
65
+ # Screener (Stock) API
66
+ stock_screener_api = f"https://financialmodelingprep.com/api/v3/stock-screener?apikey={secretkey}"
67
+
68
+ # Stock Grade API
69
+ stock_grade_api = f"https://financialmodelingprep.com/api/v3/grade/{symbol}?apikey={secretkey}"
70
+
71
+ # Executives API
72
+ executives_api = f"https://financialmodelingprep.com/api/v3/key-executives/{symbol}?apikey={secretkey}"
73
+
74
+ # Company Core Information Summary API
75
+ company_core_info_summary_api = f"https://financialmodelingprep.com/api/v4/company-core-information?symbol={symbol}&apikey={secretkey}"
76
+
77
+ # Market Cap API
78
+ market_cap_api = f"https://financialmodelingprep.com/api/v3/market-capitalization/{symbol}?apikey={secretkey}"
79
+
80
+ # Historical Market Cap API
81
+ historical_market_cap_api = f"https://financialmodelingprep.com/api/v3/historical-market-capitalization/{symbol}?limit={limit}&from={start_date}&to={end_date}&apikey={secretkey}"
82
+
83
+ # All Countries API
84
+ all_countries_api = f"https://financialmodelingprep.com/api/v3/get-all-countries?apikey={secretkey}"
85
+
86
+ # Analyst Estimates API
87
+ analyst_estimates_api = f"https://financialmodelingprep.com/api/v3/analyst-estimates/{symbol}?apikey={secretkey}"
88
+
89
+ # Analyst Recommendation API
90
+ analyst_recommendation_api = f"https://financialmodelingprep.com/api/v3/analyst-stock-recommendations/{symbol}?apikey={secretkey}"
91
+
92
+ # Company Logo API
93
+ company_logo_api = f"https://financialmodelingprep.com/image-stock/{symbol}.png?apikey={secretkey}"
94
+
95
+ # Company Outlook API
96
+ company_outlook_api = f"https://financialmodelingprep.com/api/v4/company-outlook?symbol={symbol}&apikey={secretkey}"
97
+
98
+ # Stock Peers API
99
+ stock_peers_api = f"https://financialmodelingprep.com/api/v4/stock_peers?symbol={symbol}&apikey={secretkey}"
100
+
101
+ # Holidays and Trading Hours API
102
+ market_open_api = f"https://financialmodelingprep.com/api/v3/is-the-market-open?exchange={exchange}&apikey={secretkey}"
103
+
104
+ # All Exchanges Trading Hours API
105
+ all_exchanges_trading_hours_api = f"https://financialmodelingprep.com/api/v3/is-the-market-open-all?apikey={secretkey}"
106
+
107
+ # Delisted Companies API
108
+ delisted_companies_api = f"https://financialmodelingprep.com/api/v3/delisted-companies?apikey={secretkey}"
109
+
110
+ # Company Share Float API
111
+ company_share_float_api = f"https://financialmodelingprep.com/api/v4/shares_float?symbol={symbol}&apikey={secretkey}"
112
+
113
+ # Historical Share Float API
114
+ historical_share_float_api = f"https://financialmodelingprep.com/api/v4/historical/shares_float?symbol={symbol}&apikey={secretkey}"
115
+
116
+ # All Shares Float API
117
+ all_shares_float_api = f"https://financialmodelingprep.com/api/v4/shares_float/all?apikey={secretkey}"
118
+
119
+ # All Available Sectors API
120
+ available_sectors_api = f"https://financialmodelingprep.com/api/v3/sectors-list?apikey={secretkey}"
121
+
122
+ # All Available Industries API
123
+ available_industries_api = f"https://financialmodelingprep.com/api/v3/industries-list?apikey={secretkey}"
124
+
125
+ # All Available Exchanges API
126
+ available_exchanges_api = f"https://financialmodelingprep.com/api/v3/exchanges-list?apikey={secretkey}"
127
+
128
+ # Full Quote API
129
+ full_quote_api = f"https://financialmodelingprep.com/api/v3/quote/{symbol}?apikey={secretkey}"
130
+
131
+ # Quote Order API
132
+ quote_order_api = f"https://financialmodelingprep.com/api/v3/quote-order/{symbol}?apikey={secretkey}"
133
+
134
+ # Simple Quote API
135
+ simple_quote_api = f"https://financialmodelingprep.com/api/v3/quote-short/{symbol}?apikey={secretkey}"
136
+
137
+ # OTC Quote API
138
+ otc_quote_api = f"https://financialmodelingprep.com/api/v3/otc/real-time-price/{symbol}?apikey={secretkey}"
139
+
140
+ # Exchange Prices API
141
+ exchange_prices_api = f"https://financialmodelingprep.com/api/v3/quotes/{exchange}?apikey={secretkey}"
142
+
143
+ # Stock Price Change API
144
+ stock_price_change_api = f"https://financialmodelingprep.com/api/v3/stock-price-change/{symbol}?apikey={secretkey}"
145
+
146
+ # Aftermarket Trade API
147
+ aftermarket_trade_api = f"https://financialmodelingprep.com/api/v4/pre-post-market-trade/{symbol}?apikey={secretkey}"
148
+
149
+ # Aftermarket Quote API
150
+ aftermarket_quote_api = f"https://financialmodelingprep.com/api/v4/pre-post-market/{symbol}?apikey={secretkey}"
151
+
152
+ # Batch Quote API
153
+ batch_quote_api = f"https://financialmodelingprep.com/api/v4/batch-pre-post-market/{symbol}?apikey={secretkey}"
154
+
155
+ # Batch Trade API
156
+ batch_trade_api = f"https://financialmodelingprep.com/api/v4/batch-pre-post-market-trade/{symbol}?apikey={secretkey}"
157
+
158
+ # Last Forex API
159
+ last_forex_api = f"https://financialmodelingprep.com/api/v4/forex/last/{symbol}?apikey={secretkey}"
160
+
161
+
162
+
163
+
164
+ # Live Full Price w/ Orders API
165
+ live_full_price_api = f"https://financialmodelingprep.com/api/v3/stock/full/real-time-price/{symbol}?apikey={secretkey}"
166
+
167
+ # All Live Full Price w/ Orders API
168
+ all_live_full_price_api = f"https://financialmodelingprep.com/api/v3/stock/full/real-time-price?apikey={secretkey}"
169
+
170
+ # Forex Prices API
171
+ forex_prices_api = f"https://financialmodelingprep.com/api/v3/fx/{symbol}?apikey={secretkey}"
172
+
173
+ # Ratios API
174
+ ratios_api = f"https://financialmodelingprep.com/api/v3/ratios/{symbol}?period={period}&apikey={secretkey}"
175
+
176
+ # Ratios TTM API
177
+ ratios_ttm_api = f"https://financialmodelingprep.com/api/v3/ratios-ttm/{symbol}?apikey={secretkey}"
178
+
179
+ # Cashflow Growth API
180
+ cashflow_growth_api = f"https://financialmodelingprep.com/api/v3/cash-flow-statement-growth/{symbol}?period={period}&apikey={secretkey}"
181
+
182
+ # Income Growth API
183
+ income_growth_api = f"https://financialmodelingprep.com/api/v3/income-statement-growth/{symbol}?period={period}&apikey={secretkey}"
184
+
185
+ # Balance Sheet Growth API
186
+ balance_sheet_growth_api = f"https://financialmodelingprep.com/api/v3/balance-sheet-statement-growth/{symbol}?period={period}&apikey={secretkey}"
187
+
188
+ # Financial Growth API
189
+ financial_growth_api = f"https://financialmodelingprep.com/api/v3/financial-growth/{symbol}?period={period}&apikey={secretkey}"
190
+
191
+ # Financial Score API
192
+ financial_score_api = f"https://financialmodelingprep.com/api/v4/score?symbol={symbol}&apikey={secretkey}"
193
+
194
+ # Owner Earnings API
195
+ owner_earnings_api = f"https://financialmodelingprep.com/api/v4/owner_earnings?symbol={symbol}&apikey={secretkey}"
196
+
197
+ # Enterprise Values API
198
+ enterprise_values_api = f"https://financialmodelingprep.com/api/v3/enterprise-values/{symbol}/?period={period}&apikey={secretkey}"
199
+
200
+ # Discounted Cashflow API
201
+ discounted_cashflow_api = f"https://financialmodelingprep.com/api/v3/discounted-cash-flow/{symbol}?apikey={secretkey}"
202
+
203
+ # Advanced DCF API
204
+ advanced_dcf_api = f"https://financialmodelingprep.com/api/v4/advanced_discounted_cash_flow?symbol={symbol}&apikey={secretkey}"
205
+
206
+ # Levered DCF API
207
+ levered_dcf_api = f"https://financialmodelingprep.com/api/v4/advanced_levered_discounted_cash_flow?symbol={symbol}&apikey={secretkey}"
208
+
209
+ # Company Rating API
210
+ company_rating_api = f"https://financialmodelingprep.com/api/v3/rating/{symbol}?apikey={secretkey}"
211
+
212
+ # FMP Articles API
213
+ fmp_articles_api = f"https://financialmodelingprep.com/api/v3/fmp/articles?page={page}&size={size}&apikey={secretkey}"
214
+
215
+ # General News API
216
+ general_news_api = f"https://financialmodelingprep.com/api/v4/general_news?page={page}&apikey={secretkey}"
217
+
218
+
219
+ # Stock News Sentiments RSS Feed API
220
+ stock_news_sentiments_rss_api = f"https://financialmodelingprep.com/api/v4/stock-news-sentiments-rss-feed?page={page}&apikey={secretkey}"
221
+
222
+ # Forex News API
223
+ forex_news_api = f"https://financialmodelingprep.com/api/v4/forex_news?page={page}&apikey={secretkey}"
224
+
225
+ # Crypto News API
226
+ crypto_news_api = f"https://financialmodelingprep.com/api/v4/crypto_news?page={page}&apikey={secretkey}"
227
+
228
+ # Press Releases API
229
+ press_releases_api = f"https://financialmodelingprep.com/api/v3/press-releases?page={page}&apikey={secretkey}"
230
+
231
+ # Press Releases By Symbol API
232
+ press_releases_by_symbol_api = f"https://financialmodelingprep.com/api/v3/press-releases/{symbol}?apikey={secretkey}"
233
+
234
+ # Historical Social Sentiment API
235
+ historical_social_sentiment_api = f"https://financialmodelingprep.com/api/v4/historical/social-sentiment?symbol={symbol}&page={page}&apikey={secretkey}"
236
+
237
+ # Trending Social Sentiment API
238
+ trending_social_sentiment_api = f"https://financialmodelingprep.com/api/v4/social-sentiments/trending?type={type}&source={source}&apikey={secretkey}"
239
+
240
+ # Social Sentiment Changes API
241
+ social_sentiment_changes_api = f"https://financialmodelingprep.com/api/v4/social-sentiments/change?type={type}&source={source}&apikey={secretkey}"
242
+
243
+ # Earnings Transcript API
244
+ earnings_transcript_api = f"https://financialmodelingprep.com/api/v3/earning_call_transcript/{symbol}?year={year}&quarter={quarter}&apikey={secretkey}"
245
+
246
+ # Transcript Dates API
247
+ transcript_dates_api = f"https://financialmodelingprep.com/api/v4/earning_call_transcript?symbol={symbol}&apikey={secretkey}"
248
+
249
+ # Batch Earning Call Transcript API
250
+ batch_earning_call_transcript_api = f"https://financialmodelingprep.com/api/v4/batch_earning_call_transcript/{symbol}?year={year}&apikey={secretkey}"
251
+
252
+ # RSS Feed API
253
+ rss_feed_api = f"https://financialmodelingprep.com/api/v4/rss_feed?limit={limit}&type={type}&from={from_date}&to={to_date}&isDone={is_done}&apikey={secretkey}"
254
+
255
+ # RSS Feed V3 API
256
+ rss_feed_v3_api = f"https://financialmodelingprep.com/api/v3/rss_feed?page={page}&datatype=csv&apikey={secretkey}"
257
+
258
+ # RSS Feed All API
259
+ rss_feed_all_api = f"https://financialmodelingprep.com/api/v4/rss_feed_all?page={page}&apikey={secretkey}"
260
+
261
+ # RSS Feed 8-K API
262
+ rss_feed_8k_api = f"https://financialmodelingprep.com/api/v4/rss_feed_8k?apikey={secretkey}"
263
+
264
+ # SEC Filings API
265
+ sec_filings_api = f"https://financialmodelingprep.com/api/v3/sec_filings/{symbol}?type={type}&page={page}&apikey={secretkey}"
266
+
267
+ # Individual Industry Classification API
268
+ individual_industry_classification_api = f"https://financialmodelingprep.com/api/v4/standard_industrial_classification?symbol={symbol}&apikey={secretkey}"
269
+
270
+ # All Industry Classification API
271
+ all_industry_classification_api = f"https://financialmodelingprep.com/api/v4/standard_industrial_classification/all?apikey={secretkey}"
272
+
273
+ # Industry Classification Codes API
274
+ industry_classification_codes_api = f"https://financialmodelingprep.com/api/v4/standard_industrial_classification_list?apikey={secretkey}"
275
+
276
+ # Earnings Calendar API
277
+ earnings_calendar_api = f"https://financialmodelingprep.com/api/v3/earning_calendar?from={from_date}&to={to_date}&apikey={secretkey}"
278
+
279
+ # Earnings Historical & Upcoming API
280
+ earnings_historical_upcoming_api = f"https://financialmodelingprep.com/api/v3/historical/earning_calendar/{symbol}?apikey={secretkey}"
281
+
282
+ # Earnings Confirmed API
283
+ earnings_confirmed_api = f"https://financialmodelingprep.com/api/v4/earning-calendar-confirmed?from={from_date}&to={to_date}&apikey={secretkey}"
284
+
285
+ # Earnings Surprises API
286
+ earnings_surprises_api = f"https://financialmodelingprep.com/api/v3/earnings-surprises/{symbol}?apikey={secretkey}"
287
+
288
+ # Dividends Calendar API
289
+ dividends_calendar_api = f"https://financialmodelingprep.com/api/v3/stock_dividend_calendar?from={from_date}&to={to_date}&apikey={secretkey}"
290
+
291
+ # Dividends Historical API
292
+ dividends_historical_api = f"https://financialmodelingprep.com/api/v3/historical-price-full/stock_dividend/{symbol}?apikey={secretkey}"
293
+
294
+ # Splits Calendar API
295
+ splits_calendar_api = f"https://financialmodelingprep.com/api/v3/stock_split_calendar?from={from_date}&to={to_date}&apikey={secretkey}"
296
+
297
+ # Splits Historical API
298
+ splits_historical_api = f"https://financialmodelingprep.com/api/v3/historical-price-full/stock_split/{symbol}?apikey={secretkey}"
299
+
300
+ # IPO Confirmed API
301
+ ipo_confirmed_api = f"https://financialmodelingprep.com/api/v4/ipo-calendar-confirmed?from={from_date}&to={to_date}&apikey={secretkey}"
302
+
303
+ # IPO Prospectus API
304
+ ipo_prospectus_api = f"https://financialmodelingprep.com/api/v4/ipo-calendar-prospectus?apikey={secretkey}"
305
+
306
+ # IPO Calendar By Symbol API
307
+ ipo_calendar_by_symbol_api = f"https://financialmodelingprep.com/api/v3/ipo_calendar?apikey={secretkey}"
308
+
309
+ # M&A RSS Feed API
310
+ ma_rss_feed_api = f"https://financialmodelingprep.com/api/v4/mergers-acquisitions-rss-feed?page={page}&apikey={secretkey}"
311
+
312
+ # Search M&A API
313
+ search_ma_api = f"https://financialmodelingprep.com/api/v4/mergers-acquisitions/search?name={company_name}&apikey={secretkey}"
314
+
315
+ # Intraday Chart API
316
+ intraday_chart_api = f"https://financialmodelingprep.com/api/v3/historical-chart/5min/{symbol}?from={from_date}&to={to_date}&apikey={secretkey}"
317
+
318
+ # Daily Chart EOD API
319
+ daily_chart_eod_api = f"https://financialmodelingprep.com/api/v3/historical-price-full/{symbol}?apikey={secretkey}"
320
+
321
+ # All Forex Prices API
322
+ all_forex_prices_api = f"https://financialmodelingprep.com/api/v3/fx?apikey={secretkey}"
323
+
324
+ # Simple Moving Average (SMA) API
325
+ sma_api = f"https://financialmodelingprep.com/api/v3/technical_indicator/5min/{symbol}?type=sma&period={period}&apikey={secretkey}"
326
+
327
+ # Exponential Moving Average (EMA) API
328
+ ema_api = f"https://financialmodelingprep.com/api/v3/technical_indicator/5min/{symbol}?type=ema&period={period}&apikey={secretkey}"
329
+
330
+ # Weighted Moving Average (WMA) API
331
+ wma_api = f"https://financialmodelingprep.com/api/v3/technical_indicator/5min/{symbol}?type=wma&period={period}&apikey={secretkey}"
332
+
333
+ # Double Exponential Moving Average (DEMA) API
334
+ dema_api = f"https://financialmodelingprep.com/api/v3/technical_indicator/5min/{symbol}?type=dema&period={period}&apikey={secretkey}"
335
+
336
+ # Triple Exponential Moving Average (TEMA) API
337
+ tema_api = f"https://financialmodelingprep.com/api/v3/technical_indicator/5min/{symbol}?type=tema&period={period}&apikey={secretkey}"
338
+
339
+ # Williams %R Indicator API
340
+ williams_api = f"https://financialmodelingprep.com/api/v3/technical_indicator/5min/{symbol}?type=williams&period={period}&apikey={secretkey}"
341
+
342
+ # Relative Strength Index (RSI) API
343
+ rsi_api = f"https://financialmodelingprep.com/api/v3/technical_indicator/5min/{symbol}?type=rsi&period={period}&apikey={secretkey}"
344
+
345
+ # Average Directional Index (ADX) API
346
+ adx_api = f"https://financialmodelingprep.com/api/v3/technical_indicator/5min/{symbol}?type=adx&period={period}&apikey={secretkey}"
347
+
348
+ # Standard Deviation API
349
+ standard_deviation_api = f"https://financialmodelingprep.com/api/v3/technical_indicator/5min/{symbol}?type=standardDeviation&period={period}&apikey={secretkey}"
350
+
351
+ #current news on a stock
352
+ current news on a stock = https://financialmodelingprep.com/api/v3/stock_news?tickers={symbol}&apikey={apikey}
353
+
354
+
355
+ # current commodities prices
356
+ commodities prices = https://financialmodelingprep.com/api/v3/historical-price-full/{symbol}?apikey={secretkey}
357
+
358
+ '''
359
+
360
+ # Helper function to convert JSON to human-readable format
361
+ def json_to_text(json_data):
362
+ """
363
+ Converts a JSON object into a human-readable format.
364
+ """
365
+ if isinstance(json_data, list):
366
+ json_data = json_data[0] # Process only the first element if it's a list
367
+
368
+ readable_text = ""
369
+
370
+ # Loop through the dictionary and create readable text
371
+ for key, value in json_data.items():
372
+ readable_text += f"The {key.replace('_', ' ')} is {value}. "
373
+
374
+ return readable_text
375
+
376
+ # Main function to process user input and handle API or web scraping
377
+ def detect_data_request(user_input, history):
378
+ youreq = user_input
379
+
380
+
381
+ # Get the response from the model (no streaming)
382
+ response = client.chat_completion(
383
+ model="Qwen/Qwen2.5-72B-Instruct",
384
+ messages=[{"role": "user", "content": f"here is the fmp documentation {data}, if there is an endpoint to answer {youreq} give it, otherwise say no, give absolutely no further response. IF THE USERS REQUEST IS FOR DATA THAT COULD BE IN AN ENDPOINT. RETURN YES AND THE ENDPOINT BELOW. IF NOT RETURN NO AND NOTHING ELSE, replace secretkey with this {secretkey}. IF THE USER GIVES A SPECIFIC YEAR IN THEIR REQUEST, IGNORE THE YEAR AND GIVE THE API ENDPOINT, AS IT WILL HAVE THE INFO FOR THAT YEAR. REPLACE THE VALUES INSIDE ANY {'CURLY BRACES'} WITH THE RELEVANT INFO FOR WHAT THE USER IS ASKING FOR. AS THESE ENDPOINTS CONTAIN HISTORICAL DATA AS WELL MAKE SURE YOU RETURN AN ENDPOINT EVEN WHEN THEY ARE ASKING FOR PREVIOUS DATA LIKE FOR THE LAST WEEK AS IT IS BETTER IF YOU RETURN AN ENDPOINT AND NO DATA IS THERE, THAN IF YOU DONT RETURN ONE. YOU MUST NEVER RETURN THE SECRET KEY TO THE USER, JUST GIVE YES OR NO WITH THE ENDPOINT "}],
385
+ max_tokens=500,
386
+ stream=False # Disable streaming to get the full response in one go
387
+ )
388
+
389
+ # Extract the response
390
+ full_response = response.choices[0].message['content']
391
+ first_resp = full_response[:3].lower()
392
+ url_resp = full_response[3:]
393
+
394
+ if first_resp == 'yes':
395
+ try:
396
+ # Fetch data from the provided API endpoint
397
+ requestfromfp = requests.get(url_resp)
398
+ requestfromfp.raise_for_status() # Check for request errors
399
+ jsoned_data = requestfromfp.json()
400
+
401
+ # Convert the JSON response into human-readable text
402
+ human_readable_text = json_to_text(jsoned_data)
403
+
404
+ # Send the data to the LLM for further processing
405
+ final_response = ""
406
+ for message in client.chat_completion(
407
+ model="Qwen/Qwen2.5-72B-Instruct",
408
+ messages=[{"role": "user", "content": f"answer {youreq} with {human_readable_text}, NEVER DISCLOSE THE API KEY TO THE USER!"}],
409
+ max_tokens=1500,
410
+ stream=True,
411
+ ):
412
+ delta = message.choices[0].delta
413
+ if delta and "content" in delta:
414
+ final_response += delta["content"]
415
+
416
+ history.append(("You: " + user_input, "IM.B: " + final_response))
417
+ except:
418
+ if requestfromfp == []:
419
+ history.append(("You: " + user_input, "IM.B: " + 'sorry the response was empty'))
420
+ else:
421
+ history.append(("You: " + user_input, "IM.B: " + 'there was data in the response but for some reason we couldnt parse it'))
422
+ else:
423
+ # If no data endpoint exists, switch to scraping a valid webpage
424
+ response = client.chat_completion(
425
+ model="Qwen/Qwen2.5-72B-Instruct",
426
+ messages=[{"role": "user", "content": f"You are an assistant that detects whether the user is asking for data or not. Here is their request: {youreq}. You respond 'yes' if they are and 'no' if not. If yes, then in the second line provide the exact URL, not an API, a valid webpage which is definitely there and easy to scrape. If no, only respond with 'no' and nothing else."}],
427
+ max_tokens=1500,
428
+ stream=False
429
+ )
430
+
431
+ full_response = response.choices[0].message['content']
432
+ if "yes" in full_response.lower():
433
+ url = full_response[3:] # Extract the URL part
434
+ try:
435
+ request = requests.get(url)
436
+ request.raise_for_status()
437
+
438
+ soup_of_data = BeautifulSoup(request.text, 'lxml')
439
+ tags = ['body']
440
+ listed_data = soup_of_data.find_all(tags)
441
+
442
+ # Extract text from relevant tags
443
+ extracted_content = ''.join([element.get_text(separator=" ", strip=True) for element in listed_data[:100]])
444
+
445
+ response = client.chat_completion(
446
+ model="Qwen/Qwen2.5-72B-Instruct",
447
+ messages=[{"role": "user", "content": f"you are IM.B, an intelligent investing AI model built by automatedstockmining.org, answer this question: {youreq} with this data {extracted_content}, if the data is not there say to the user: sorry, looks like there was error processing the data on our end, please rephrase question, referencing specific websites you want the data from"}],
448
+ max_tokens=1500,
449
+ stream=False
450
+ )
451
+
452
+ final_response = response.choices[0].message['content']
453
+ history.append(("You: " + user_input, "IM.B: " + final_response))
454
+ except requests.exceptions.RequestException as e:
455
+ history.append(("You: " + user_input, f"IM.B: Error fetching URL: {e}"))
456
+
457
+ else:
458
+ response = client.chat_completion(
459
+ model="mistralai/Mistral-7B-Instruct-v0.3",
460
+ messages=[{"role": "user", "content": f"you are IM.B, an intelligent investing AI model built by automatedstockmining.org however you answer whatever the user requests, answer this question as IM.B, {youreq}, tell the user that you have access to real time data so that if they want some real time data, just ask for it"}],
461
+ max_tokens=1500,
462
+ stream=False
463
+ )
464
+
465
+ full_response = response.choices[0].message['content']
466
+ history.append(("You: " + user_input, "IM.B: " + full_response))
467
+
468
+ return history, "" # Clear the input box
469
+
470
+ # Function to clear the chat history
471
+ def clear_history():
472
+ return [], ""
473
+
474
+ # Function to undo the last user-bot message pair
475
+ def undo_last(history):
476
+ if len(history) > 0:
477
+ history.pop() # Remove the last user-bot message pair
478
+ return history, ""
479
+
480
+ # Gradio UI setup
481
+ with gr.Blocks() as demo:
482
+ gr.Markdown("<h1 style='text-align: center;'>IM.B</h1>")
483
+
484
+ with gr.Column():
485
+ chatbot_display = gr.Chatbot(label="Chat History", avatar_images=[None, BOT_AVATAR], height=600)
486
+
487
+ # User input and send button
488
+ with gr.Row():
489
+ user_input = gr.Textbox(placeholder="Type your message here...", label=None, show_label=False)
490
+ send_button = gr.Button("Send")
491
+
492
+ # Buttons for Clear and Undo
493
+ with gr.Row():
494
+ clear_button = gr.Button("Clear Chat")
495
+ undo_button = gr.Button("Undo Last")
496
+
497
+ # Define action when send button is clicked
498
+ send_button.click(
499
+ detect_data_request,
500
+ inputs=[user_input, chatbot_display],
501
+ outputs=[chatbot_display, user_input]
502
+ )
503
+
504
+ # Allow pressing Enter to submit the input
505
+ user_input.submit(
506
+ detect_data_request,
507
+ inputs=[user_input, chatbot_display],
508
+ outputs=[chatbot_display, user_input]
509
+ )
510
+
511
+ # Action for Clear Button
512
+ clear_button.click(
513
+ clear_history,
514
+ outputs=[chatbot_display, user_input]
515
+ )
516
+
517
+ # Action for Undo Button
518
+ undo_button.click(
519
+ undo_last,
520
+ inputs=[chatbot_display],
521
+ outputs=[chatbot_display, user_input]
522
+ )
523
 
524
+ # Launch the Gradio app
525
+ demo.launch()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
requirements.txt CHANGED
@@ -1 +1,8 @@
1
- huggingface_hub==0.22.2
 
 
 
 
 
 
 
 
1
+ huggingface_hub==0.22.2
2
+
3
+ txt
4
+ Copy code
5
+ gradio # For the Gradio app
6
+ requests # For making API requests
7
+ beautifulsoup4 # For web scraping
8
+ lxml # For parsing HTML with BeautifulSoup