ynab update

This commit is contained in:
2026-01-31 22:47:43 -05:00
parent f0f72cce36
commit 6ae36b51a0
15 changed files with 645 additions and 8 deletions

View File

@@ -1,8 +1,12 @@
import os
import tempfile
from dotenv import load_dotenv
import httpx
# Load environment variables
load_dotenv()
class PaperlessNGXService:
def __init__(self):

View File

@@ -1,6 +1,7 @@
import datetime
import os
from dotenv import load_dotenv
from langchain_chroma import Chroma
from langchain_core.documents import Document
from langchain_openai import OpenAIEmbeddings
@@ -8,6 +9,9 @@ from langchain_text_splitters import RecursiveCharacterTextSplitter
from .fetchers import PaperlessNGXService
# Load environment variables
load_dotenv()
embeddings = OpenAIEmbeddings(model="text-embedding-3-small")
vector_store = Chroma(