YAML files that define the ontology and data sources for a VC analysis agent. While this is not a runnable example, it serves as a starting point for building an agent that can track companies, investors, and funding rounds.
`funding.yaml`
This file defines the schema of the knowledge graph. It specifies the types of entities (e.g.,
Company, Investor, FundingRound) and the relationships between them, creating a structured foundation for VC data.`sources.yaml`
This file is a template for configuring the external data sources you would need to populate the knowledge graph, such as Crunchbase, PitchBook, or other financial data APIs.
To turn this into a runnable example, you would need to implement a Python script (similar to
infoagent.py in the stock analysis example) that creates and runs the agent, as well as the functions to interact with your chosen data sources.