Coder Social home page Coder Social logo

airflow-llm-providers-demo's Introduction

FinSum

FinSum is a demo application for summarization of financial statements using Apache Airflow.

Apache Airflow is used to ingest quarterly financial reporting documents from the US Securities and Exchanges Commision (SEC) EDGAR database. Extracted documents are vectorized and summarized using OpenAI or Cohere LLMs and stored in a Weaviate, Pinecone, or pgvector vector database.


Disclaimer & Limitations
This FinSum Demo is solely for demonstration purposes and should not be construed as legal, tax, investment or financial advice. Nor are the summaries intended to be an accurate representation of financial reportings or company performance.

Ingest and Embedding

The demo includes DAGs to extract, embed and ingest data to vector databases with the following Airflow Providers

As well as DAGs extract and embed documents directly with LLM providers. In some cases it may be beneficial to store embedded documents in files such as in cloud object storage. These DAGs show how to generated embeddings and export to files.

FinSum uses parameterized Airflow DAGS. When starting a DAG run the user must provide a ticker symbol for a listed company.


Prerequisites

There are many options for LLMs and vector databases. This template currently uses Microsoft Azure OpenAI for the LLMs and Weaviate vector database. To use this template you need the following:

NOTE: Weaviate provides a local containerized version for development. This demo includes containerized options for weaviate as well as postgres which are deployed by the Astro CLI. See the docker-compose.override.yml file for configuration details.

Setup

  1. Install Astronomer's Astro CLI. The Astro CLI is an Apache 2.0 licensed, open-source tool for building Airflow instances and provides the fastest and easiest way to be up and running with Airflow in minutes. The Astro CLI is a Docker Compose-based tool and integrates easily with Weaviate for a local developer environment.

To install the Astro CLI, open a terminal window and run:

For MacOS

brew install astro

For Linux

curl -sSL install.astronomer.io | sudo bash -s
  1. Clone this repository:
git clone https://github.com/astronomer/airflow-llm-providers-demo
cd airflow-llm-providers-demo
  1. Create a file called airflow/.env with the following connection strings and environment variables. Update values in< > as needed.
AIRFLOW_CONN_WEAVIATE_DEFAULT='{"conn_type": "weaviate", "host": "<CLUSTER_URL>", "extra": {"token": "<API_KEY>", "additional_headers": {"X-OpenAI-Api-Key": "<OPENAI_API_KEY>" }}}'
AIRFLOW_CONN_PINECONE_DEFAULT='{"conn_type": "pinecone", "login": "<ENV_NAME>", "password": "<API_KEY>"}'
AIRFLOW_CONN_OPENAI_DEFAULT='{"conn_type": "openai", "host": "", "password": "<OPENAI_API_KEY>"}'
AIRFLOW_CONN_COHERE_DEFAULT='{"conn_type": "cohere", "host": "", "password": "<COHERE_API_KEY>"}'
AIRFLOW_CONN_POSTGRES_DEFAULT='{"conn_type": "postgres", "host": "host.docker.internal", "port": 5433, "login": "postgres", "password": "postgres", "extra": {}}'
  1. Start Apache Airflow along with local Weaviate and Postgres instances
cd airflow
astro dev start

The Astro CLI uses Docker Compose to instantiate a local containerized instance of Airflow. Weaviate and Postgres also provides a containerized version (for local development) which integrate easily with Astro CLI. See the docker-compose.override.yml file for details.

After Airflow starts a browser window that should open to http://localhost:8080. Log in with the following credentials:

  • username: admin
  • password: admin
  1. Login to the Airflow UI and run the DAG for the provider of choice. You will be prompted to add a ticker symbol. MBLY is a good test option because it has only a few documents.

  2. Run the DAGs in Astro Hosted: Step 10 shows an example of switching between different Weaviate instances. Follow the same approach to point Airflow at a production or non-temporary Weaviate sandbox. Complete the following steps to promote from Airflow running locally to a production deployment in Astro.

  • Create a free Astro trial account, organization, and deployment.
  • Log in to Astro from the CLI.
astro login
astro deployment create -n 'llm-providers-demo'
astro deployment variable update -lsn 'llm-providers-demo'
astro deploy -fn 'llm-providers-demo'
  1. This demo includes a sample Streamlit application front end. For demo purposes it was created for the Weaviate service. Furutre versions of the demo may inlclude applications for the other providers.

  • Connect to the webserver container with the Astro CLI
astro dev bash -w

This Streamlit application is a simple application to interact with summaries of financial statements.

  • Start Streamlit
streamlit run include/streamlit/weaviate/FinSum.py

airflow-llm-providers-demo's People

Contributors

mpgreg avatar

Stargazers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.