|
from googlesearch import search |
|
import requests |
|
import trafilatura |
|
|
|
from concurrent.futures import ThreadPoolExecutor |
|
import json |
|
import ast |
|
import gradio as gr |
|
from huggingface_hub import InferenceClient |
|
import tiktoken |
|
import time |
|
import os |
|
from PIL import Image |
|
client = InferenceClient(api_key=os.getenv('HF_TOKEN')) |
|
|
|
|
|
import tiktoken |
|
import requests |
|
import os |
|
import json |
|
import random |
|
from huggingface_hub import InferenceClient |
|
|
|
|
|
|
|
def upload_to_catbox(file_path): |
|
""" |
|
Upload a file to Catbox and return the URL. |
|
|
|
Args: |
|
file_path (str): Path to the file to upload. |
|
|
|
Returns: |
|
str: URL of the uploaded file. |
|
""" |
|
with open(file_path, "rb") as file: |
|
response = requests.post( |
|
"https://catbox.moe/user/api.php", |
|
data={"reqtype": "fileupload"}, |
|
files={"fileToUpload": file} |
|
) |
|
if response.status_code == 200: |
|
return response.text.strip() |
|
else: |
|
return "Failed to upload file." |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def generate_quickchart_config(user_input, data): |
|
""" |
|
Use Hugging Face InferenceClient to determine if a chart is needed and generate its configuration. |
|
|
|
Args: |
|
user_input (str): The user's question or description of the desired analysis. |
|
data (dict): Sample data containing stock prices and dates. |
|
|
|
Returns: |
|
dict or None: QuickChart configuration parameters generated by the model, or None if no chart is requested. |
|
""" |
|
prompt = f""" |
|
You are given the following stock price data: |
|
|
|
{data} |
|
|
|
Based on the user question: "{user_input}", determine if a chart is required to answer the question. |
|
If a chart is required, generate a valid QuickChart configuration in the following JSON format: |
|
{{ |
|
"type": <chart type>, |
|
"data": {{ |
|
"labels": <x-axis labels>, |
|
"datasets": [ |
|
{{ |
|
"label": <dataset label>, |
|
"data": <y-axis data>, |
|
"borderColor": <color>, |
|
"fill": <boolean> |
|
}} |
|
] |
|
}}, |
|
"options": {{ |
|
"title": {{ |
|
"display": true, |
|
"text": <chart title> |
|
}}, |
|
"scales": {{ |
|
"xAxes": [{{"scaleLabel": {{"display": true, "labelString": "Date"}}}}], |
|
"yAxes": [{{"scaleLabel": {{"display": true, "labelString": "Price ($)"}}}}] |
|
}} |
|
}} |
|
}} |
|
If a chart is not needed, respond with ONLY the word "NO". for example if they ask: make a line chart with cisco stock price over the last days, make the chart |
|
""" |
|
messages = [ |
|
{"role": "user", "content": prompt} |
|
] |
|
|
|
|
|
completion = client.chat.completions.create( |
|
model="Qwen/Qwen2.5-Coder-32B-Instruct", |
|
messages=messages, |
|
max_tokens=2000 |
|
) |
|
response_content = completion.choices[0].message["content"].strip() |
|
print(f"Model response: {response_content}") |
|
|
|
if response_content.lower() == "no": |
|
print("No chart is required for this question.") |
|
return None |
|
else: |
|
try: |
|
return json.loads(response_content) |
|
except Exception as e: |
|
print("Error parsing JSON from model response:", e) |
|
return None |
|
|
|
def generate_chart(config, filename=f"chart.png", output_dir="charts"): |
|
""" |
|
Generate a chart using QuickChart.io and save it locally. |
|
|
|
Args: |
|
config (dict): QuickChart configuration. |
|
filename (str): Name of the output file (e.g., 'chart.png'). |
|
output_dir (str): Directory to save the chart image. |
|
|
|
Returns: |
|
str: Path to the saved chart file. |
|
""" |
|
|
|
url = "https://quickchart.io/chart" |
|
|
|
|
|
if not os.path.exists(output_dir): |
|
os.makedirs(output_dir) |
|
|
|
|
|
response = requests.post(url, json={"c": config}) |
|
|
|
if response.status_code == 200: |
|
|
|
file_path = os.path.join(output_dir, filename) |
|
with open(file_path, "wb") as file: |
|
file.write(response.content) |
|
print(f"Chart saved at {file_path}") |
|
return file_path |
|
else: |
|
print(f"Failed to generate chart: {response.text}") |
|
return None |
|
|
|
|
|
|
|
|
|
|
|
|
|
dots_animation = [ |
|
"Working on your response.", |
|
"Working on your response..", |
|
"Working on your response...", |
|
] |
|
|
|
arrow_animation = [ |
|
"----> Preparing your answer", |
|
"---> Preparing your answer", |
|
"--> Preparing your answer", |
|
"-> Preparing your answer", |
|
"> Preparing your answer", |
|
] |
|
|
|
loader_animation = [ |
|
"[ ] Fetching data...", |
|
"[= ] Fetching data...", |
|
"[== ] Fetching data...", |
|
"[=== ] Fetching data...", |
|
"[====] Fetching data...", |
|
] |
|
|
|
typing_animation = [ |
|
"Bot is typing.", |
|
"Bot is typing..", |
|
"Bot is typing...", |
|
] |
|
rotating_text_animation = [ |
|
"Working |", |
|
"Working /", |
|
"Working -", |
|
"Working \\", |
|
] |
|
|
|
|
|
|
|
|
|
def tokenize_with_qwen(text): |
|
""" |
|
Tokenizes the input text using a compatible tokenizer for Qwen models and returns a string of tokens. |
|
|
|
Parameters: |
|
text (list or str): The text (or list of strings) to be tokenized. |
|
|
|
Returns: |
|
str: A single string of tokens, truncated to 32,500 tokens if necessary. |
|
""" |
|
|
|
if isinstance(text, list): |
|
text = ''.join(text) |
|
elif not isinstance(text, str): |
|
raise ValueError("Input must be a string or a list of strings.") |
|
|
|
|
|
encoding = tiktoken.get_encoding("cl100k_base") |
|
|
|
|
|
token_ids = encoding.encode(text) |
|
|
|
|
|
token_strings = [encoding.decode_single_token_bytes(token_id).decode('utf-8', errors='replace') for token_id in token_ids] |
|
|
|
|
|
if len(token_strings) > 23000: |
|
token_strings = token_strings[:17000] |
|
|
|
|
|
stringed_tokens = ''.join(token_strings) |
|
return stringed_tokens |
|
|
|
|
|
|
|
|
|
|
|
def fetch_and_process_url(link): |
|
try: |
|
|
|
req = requests.get(link, headers={"User-Agent": "Mozilla/5.0"}, timeout=10) |
|
html_content = req.text |
|
|
|
return trafilatura.extract(html_content) |
|
except Exception as e: |
|
return f"Error fetching or processing {link}: {e}" |
|
|
|
def perform_search(query, num_results=5): |
|
try: |
|
|
|
urls = [url for url in search(query, num_results=num_results)] |
|
print("URLs Found:") |
|
print(urls) |
|
except Exception as e: |
|
print(f"An error occurred during search: {e}") |
|
return |
|
|
|
|
|
with ThreadPoolExecutor(max_workers=30) as executor: |
|
results = list(executor.map(fetch_and_process_url, urls)) |
|
|
|
|
|
formatted_text = '\n\n'.join(filter(None, results)) |
|
return formatted_text |
|
|
|
def chat(user_input,history): |
|
|
|
format_template = examples = """ |
|
|
|
{"user_input": "cisco systems stock price for the last 4 days", "searches": ["cisco stock price last 4 days", "cisco systems stock historical data", "current price of Cisco Systems", "cisco stock price chart"]}, |
|
{"user_input": "Apple stock price yesterday", "searches": ["Apple stock price yesterday", "historical price of Apple stock"]}, |
|
{"user_input": "Tesla quarterly revenue", "searches": ["Tesla latest quarterly revenue", "Tesla revenue report Q3 2024"]}, |
|
{"user_input": "CAPM model for Tesla", "searches": ["Tesla stock beta value", "current risk-free rate", "expected market return for CAPM model"]}, |
|
{"user_input": "Hi", "searches": []}, |
|
{"user_input": "Who are you?", "searches": []}, |
|
{"user_input": "Google earnings per share last quarter", "searches": ["Google EPS last quarter", "Google quarterly earnings report"]}, |
|
{"user_input": "Calculate WACC for Microsoft", "searches": ["Microsoft cost of equity", "Microsoft cost of debt", "Microsoft capital structure", "current risk-free rate", "Microsoft beta"]}, |
|
{"user_input": "Show Amazon stock chart for last 5 years", "searches": ["Amazon stock chart last 5 years", "Amazon historical price data"]}, |
|
{"user_input": "GDP of China in 2023", "searches": ["China GDP 2023", "latest GDP figures for China"]}, |
|
{"user_input": "Portfolio optimization model", "searches": ["efficient frontier portfolio theory", "input data for portfolio optimization model", "expected returns and covariances"]}, |
|
{"user_input": "Find current inflation rate in the US", "searches": ["current US inflation rate", "US CPI data"]}, |
|
{"user_input": "What is NPV and how do you calculate it?", "searches": ["definition of NPV", "how to calculate NPV"]}, |
|
{"user_input": "Dividend yield for Coca-Cola", "searches": ["Coca-Cola dividend yield", "latest Coca-Cola dividend data"]}, |
|
{"user_input": "Sharpe ratio formula example", "searches": ["Sharpe ratio formula", "example calculation of Sharpe ratio"]}, |
|
{"user_input": "What is the current Fed interest rate?", "searches": ["current Federal Reserve interest rate", "latest Fed interest rate decision"]}, |
|
{"user_input": "Generate DCF model for Tesla", "searches": ["Tesla free cash flow data", "Tesla growth rate projections", "current discount rate for Tesla", "steps to build a DCF model"]}, |
|
{"user_input": "Tell me a joke", "searches": []}, |
|
{"user_input": "Explain the concept of opportunity cost", "searches": ["definition of opportunity cost", "examples of opportunity cost in economics"]} |
|
|
|
""" |
|
|
|
|
|
|
|
search_messages = history or [{'role': 'system', 'content': 'you are IM.FIN'}] |
|
|
|
print(f'here is the search messages: \n\n\n\n {search_messages} \n\n\n') |
|
search_messages.append({'role':'user','content':f'based on {user_input} and {search_messages}, respond with a list of google searches that will give the correct data to respond, respond in this format: {format_template} with up to 3 searches but try and limit it to the minimum needed. RETURN 1 DICTIONARY IN THE SPECIFIED FORMAT BASED ON THE USER INPUT {user_input}. RETURN ABSOLUTELY NO OTHER TEXT OTHER THAN THE DICTIONARY WITH THE SEARCHES. here is the history use it {search_messages}. MAKE SURE YOU ALWAYS HAVE A , BETWEEN THE user_input and searches. only return one dictionary'}) |
|
for value in dots_animation: |
|
yield value |
|
response_for_searches = client.chat.completions.create( |
|
model='Qwen/Qwen2.5-72B-Instruct', |
|
|
|
messages=search_messages |
|
) |
|
searches_resp = response_for_searches.choices[0].message.content |
|
yield dots_animation[1] |
|
print(f'search model response: {searches_resp}') |
|
searches = ast.literal_eval(searches_resp) |
|
search_messages.append(searches) |
|
|
|
print(searches) |
|
yield arrow_animation[0] |
|
summary_messages = [ |
|
{'role':'system','content':'you are IM.FIN'} |
|
] |
|
|
|
var = [perform_search(search) for search in searches['searches']] |
|
yield arrow_animation[1] |
|
|
|
var = tokenize_with_qwen(var) |
|
yield arrow_animation[2] |
|
print(f'the type of var is {type(var)}') |
|
var = ''.join(var) |
|
print(f'the data: {var}') |
|
|
|
|
|
|
|
|
|
yield arrow_animation[3] |
|
summary_messages.append({'role':'user','content':f'use {user_input} to summarize {var}, return nothing other than the summarized response. MAKE SURE TO PICK OUT THE NUMERICAL DATA BASED ON THE USER RESPONSE'}) |
|
for value in arrow_animation: |
|
time.sleep(1) |
|
yield value |
|
response_for_chat = client.chat.completions.create( |
|
model='Qwen/Qwen2.5-72B-Instruct', |
|
|
|
messages=summary_messages, |
|
max_tokens=2000 |
|
) |
|
|
|
summary = response_for_chat.choices[0].message.content |
|
chart_url = 'nonethereyet' |
|
|
|
|
|
name_of_file = f"dynamic_chart{random.randint(0,1000)}.png" |
|
config = generate_quickchart_config(user_input, summary) |
|
if config: |
|
generate_chart(config, filename=name_of_file) |
|
image_path = f'{name_of_file}' |
|
chart_url = upload_to_catbox(f'charts/{image_path}') |
|
else: |
|
print("No chart was generated.") |
|
pass |
|
|
|
for value in arrow_animation: |
|
|
|
yield value |
|
final_messages = [ |
|
{'role':'system','content':'you are IM.FIN, you are a virtual stock analyst built to automate investing tasks and simulate the intelligence of stock analysts, you can form opinions based on data and form conclusions like stock analysts, you were created by quantineuron.com. KEEP RESPONSES CONCISE, ANSWERING THE USERS INPUT '} |
|
] |
|
|
|
print(f'here is the summary: {summary}') |
|
final_messages.append({'role':'user','content': f'based on this data {summary}, answer {user_input}, here is the history {final_messages}. ONLY USE THE DATA THAT IS NEEDED AND ACT AS THOUGH THAT DATA IS YOURS AND CORRECT. KEEP RESPONSES CONCISE. IF THE DATA PROVIDED IS NOT RELEVANT TO THE USERS REQUEST, IGNORE IT AND ANSWER NORMALLY. IF THE USER ASKS FOR ANY TYPE OF CHART, DO NOT ATTEMPT TO MAKE IT YOURSELF, SIMPLY MAKE A TABLE WITH THE DATA, THE CHART WILL BE FOUND AT THIS URL: {chart_url} SO SAY TO THE USER IT IS THERE AND LINK IT TO THEM, IF THEY HAVE NOT ASKED FOR A CHART, DO NOT INCLUDE THE URL IN YOUR RESPONSE '}) |
|
yield typing_animation[0] |
|
final_response = client.chat.completions.create( |
|
model='Qwen/Qwen2.5-72B-Instruct', |
|
|
|
messages=final_messages, |
|
max_tokens=2000, |
|
stream=True |
|
) |
|
yield typing_animation[1] |
|
response = "" |
|
for chunk in final_response: |
|
content = chunk.choices[0].delta.content or '' |
|
response += content |
|
|
|
yield response |
|
|
|
|
|
|
|
final_messages.append(response) |
|
search_messages.append(response) |
|
|
|
print(f'\n\n here is the chat history for the final response \n\n\n {response}') |
|
|
|
|
|
|
|
|
|
avatar = 'https://quantineuron.com/wp-content/uploads/2024/08/cropped-final-logo-with-background-removed.png' |
|
|
|
|
|
theme = gr.themes.Soft( |
|
primary_hue="sky", |
|
neutral_hue="zinc", |
|
) |
|
|
|
|
|
|
|
|
|
gr.ChatInterface( |
|
|
|
|
|
fn=chat, |
|
theme=theme |
|
).launch() |
|
|