The-Swarm-Corporation /
TickrAgent
tickr-agent is an enterprise-ready, scalable Python library for building swarms of financial agents that conduct comprehensive stock analysis and produce insights.
71/100 healthLoading repository data…
oneil512 / repository
INSIGHT is an autonomous AI that can do medical research!
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
Please visit https://insightai.dev/project for our managed solution with many more features!
Insight is an autonomous AI that can do medical research. It has a boss agent that takes an objective and an executive summary of the tasks completed already and their results and creates a task list. A worker agent picks up a task from the list and completes it, saving the results to llama index. The boss gets informed of the results and changes/reprioritizes the task list. The workers can call into the pubmed and mygene APIs (more to come). The workers also get context from llama index to help complete their tasks.
INSIGHT can also reload and continue runs, and also load any human readable data file and use it along side the other findings!
You can also load your llama Index database and talk to it, asking arbitrary questions about your data, by running talk_to_index.py
You will have to specify the path to your index in the bottom of the file. See the bottom of talk_to_index.py for an example.
Please reach out to me or contribute if this interests you :) My email is oneil512@umn.edu
graph TB;
subgraph APIs;
API1[PUBMED API];
API2[MYGENE API];
end;
Boss((BOSS AGENT)) <--> GPT[LLM];
Llama[(LLAMA INDEX)] -->|Summary of results| Boss;
Boss -->|Create| Queue[TASK LIST];
Worker((WORKER AGENT)) <--> GPT;
Queue --> |Pull| Worker;
Llama -->|Context for task| Worker;
Worker --> Result[Task Result];
Result --> |Text| Llama;
Result -->|Code| Executor{PYTHON EXECUTOR};
Executor --> API1[PUBMED];
Executor --> API2[MYGENE];
Executor --> Execution[Execution Result];
Execution --> Llama;
Llama <--> TalkToIndex[Talk To Index];
User{{User}} -->|Query| TalkToIndex;
TalkToIndex -->|Result| User;
Sign up for OpenAI
Expose the following environment variable
OR
Add your api key to the config file. IF YOU DO THIS, DO NOT COMMIT THEM WITH ANY VERSION CONTROL SYSTEM!
run pip install -r requirements.txt
run python main.py
The program saves the result from every task and adds it to the output directory out
It also creates a key findings markdown file over all results that distills the data via the following commands:
Arbitrary commands can be added. Open this in a markdown editor for the best experience.
Here is an example output structure
.
└── out /
├── Objective /
│ ├── Task 1/
│ │ ├── Result 1/
│ │ │ ├── Raw Result
│ │ │ └── Vector Embedding of Result
│ │ ├── Result 2/
│ │ │ ├── Raw Result
│ │ │ └── Vector Embedding of Result
│ │ ├── .
│ │ ├── .
│ │ ├── Summary of task results
│ │ └── API Call (If task was an API call)
│ ├── Task 2
│ ├── .
│ ├── .
│ ├── .
│ └── Task N
└── key_findings.md
BE MINDFUL OF EXPENSES!!
Currently an execution for a few minutes should cost no more than a few cents. This will go up if you use a more powerful model like GPT-4
Selected from shared topics, language and repository description—not editorial ratings.
The-Swarm-Corporation /
tickr-agent is an enterprise-ready, scalable Python library for building swarms of financial agents that conduct comprehensive stock analysis and produce insights.
71/100 healthalihassanml /
Agentic AI Stock Analysis is an AI-powered multi-agent system that analyzes stock market trends, provides analyst recommendations, and fetches the latest news using Groq AI models. It integrates financial and web search agents to deliver real-time insights.
50/100 healthruDra2916 /
AgenticTrade is an AI-powered trading floor where autonomous agents simulate legendary investor strategies, analyze market data, and execute trades. Built on Python and Model Context Protocol (MCP), it integrates real-time insights, portfolio management, and push notifications for a fully automated, intelligent trading experience.
44/100 healthASHHADgit87 /
AnalyticoGPT-Agent is an enterprise AI data analytics agent built with Python, Streamlit, Google ADK & Gemini AI. It uses a multi-agent workflow to automate CSV ingestion, cleaning, analysis, visualization, forecasting, AI insights, and PDF report generation end-to-end.
67/100 healthdavutbayik /
AutoAdvisor is an AI-powered business strategy assistant that validates user-submitted business ideas, generates strategic reports using multi-agent reasoning, and delivers actionable insights including a SWOT analysis.
52/100 healthHassan0397 /
FP&A AI Agent is a comprehensive, enterprise-grade Financial Planning & Analysis platform built as a modular web application using Streamlit. It transforms raw financial data into actionable insights through automated analysis, forecasting, scenario modeling, and professional report generation—all without requiring programming expertise.
64/100 health