SEC filing
SEC filing is a financial statement or other formal document submitted to the U.S. Securities and Exchange Commission (SEC). Public companies, certain insiders, and broker-dealers are required to make regular
SEC filings
. Investors and financial professionals rely on these filings for information about companies they are evaluating for investment purposes.
SEC filings
data powered by Kay.ai and Cybersyn via Snowflake Marketplace.
Setup
First, you will need to install the kay
package. You will also need an API key: you can get one for free at https://kay.ai. Once you have an API key, you must set it as an environment variable KAY_API_KEY
.
In this example, we're going to use the KayAiRetriever
. Take a look at the kay notebook for more detailed information for the parameters that it accepts.`
# Setup API keys for Kay and OpenAI
from getpass import getpass
KAY_API_KEY = getpass()
OPENAI_API_KEY = getpass()
········
········
import os
os.environ["KAY_API_KEY"] = KAY_API_KEY
os.environ["OPENAI_API_KEY"] = OPENAI_API_KEY