update augorWorker to use openRouter configuration and set llmModel in config
This commit is contained in:
+45
-3
@@ -82,11 +82,53 @@ function seedCompanies(db) {
|
||||
);
|
||||
|
||||
const companies = [
|
||||
{ name: "NVIDIA", ticker: "NVDA", aliases: ["Nvidia Corporation", "NVDA"] },
|
||||
{ name: "TSMC", ticker: "TSM", aliases: ["Taiwan Semiconductor", "Taiwan Semiconductor Manufacturing"] },
|
||||
{ name: "ASML", ticker: "ASML", aliases: ["ASML Holding", "ASML Holdings"] },
|
||||
// semiconductors
|
||||
{ name: "NVIDIA", ticker: "NVDA", aliases: ["Nvidia Corporation"] },
|
||||
{ name: "TSMC", ticker: "TSM", aliases: ["Taiwan Semiconductor", "Taiwan Semiconductor Manufacturing Company"] },
|
||||
{ name: "ASML", ticker: "ASML", aliases: ["ASML Holding"] },
|
||||
{ name: "Intel", ticker: "INTC", aliases: ["Intel Corporation"] },
|
||||
{ name: "AMD", ticker: "AMD", aliases: ["Advanced Micro Devices"] },
|
||||
{ name: "Qualcomm", ticker: "QCOM", aliases: ["Qualcomm Incorporated"] },
|
||||
{ name: "Broadcom", ticker: "AVGO", aliases: ["Broadcom Inc"] },
|
||||
{ name: "Micron", ticker: "MU", aliases: ["Micron Technology"] },
|
||||
{ name: "Texas Instruments", ticker: "TXN", aliases: ["TI"] },
|
||||
{ name: "Applied Materials", ticker: "AMAT", aliases: ["Applied Materials Inc"] },
|
||||
{ name: "Lam Research", ticker: "LRCX", aliases: ["Lam Research Corporation"] },
|
||||
{ name: "KLA Corporation", ticker: "KLAC", aliases: ["KLA"] },
|
||||
{ name: "Samsung", ticker: "005930.KS", aliases: ["Samsung Electronics", "Samsung Group"] },
|
||||
{ name: "SK Hynix", ticker: "000660.KS", aliases: ["Hynix"] },
|
||||
|
||||
// big tech / cloud
|
||||
{ name: "Microsoft", ticker: "MSFT", aliases: ["Microsoft Corporation"] },
|
||||
{ name: "Apple", ticker: "AAPL", aliases: ["Apple Inc"] },
|
||||
{ name: "Alphabet", ticker: "GOOGL", aliases: ["Google", "Google LLC", "DeepMind"] },
|
||||
{ name: "Amazon", ticker: "AMZN", aliases: ["Amazon Web Services", "AWS"] },
|
||||
{ name: "Meta", ticker: "META", aliases: ["Meta Platforms", "Facebook"] },
|
||||
{ name: "Tesla", ticker: "TSLA", aliases: ["Tesla Inc", "Tesla Motors"] },
|
||||
|
||||
// AI / infrastructure
|
||||
{ name: "OpenAI", ticker: "OPENAI", aliases: ["Open AI"] },
|
||||
{ name: "Anthropic", ticker: "ANTHROPIC", aliases: [] },
|
||||
{ name: "xAI", ticker: "XAI", aliases: ["x.AI"] },
|
||||
{ name: "Palantir", ticker: "PLTR", aliases: ["Palantir Technologies"] },
|
||||
{ name: "Super Micro Computer", ticker: "SMCI", aliases: ["Supermicro", "SMCI"] },
|
||||
{ name: "Arista Networks", ticker: "ANET", aliases: ["Arista"] },
|
||||
|
||||
// networking / hardware
|
||||
{ name: "Cisco", ticker: "CSCO", aliases: ["Cisco Systems"] },
|
||||
{ name: "Marvell Technology", ticker: "MRVL", aliases: ["Marvell"] },
|
||||
{ name: "Arm Holdings", ticker: "ARM", aliases: ["Arm", "ARM Ltd"] },
|
||||
|
||||
// enterprise software
|
||||
{ name: "Oracle", ticker: "ORCL", aliases: ["Oracle Corporation"] },
|
||||
{ name: "Salesforce", ticker: "CRM", aliases: ["Salesforce Inc"] },
|
||||
{ name: "SAP", ticker: "SAP", aliases: ["SAP SE"] },
|
||||
{ name: "ServiceNow", ticker: "NOW", aliases: [] },
|
||||
|
||||
// storage / infra
|
||||
{ name: "Western Digital", ticker: "WDC", aliases: ["WD", "Western Digital Corporation"] },
|
||||
{ name: "Seagate", ticker: "STX", aliases: ["Seagate Technology"] },
|
||||
{ name: "Pure Storage", ticker: "PSTG", aliases: [] },
|
||||
];
|
||||
|
||||
for (const c of companies) {
|
||||
|
||||
Reference in New Issue
Block a user