Feat: Bash Interaction Promting

This commit is contained in:
2024-11-07 17:17:25 -05:00
parent 379708e986
commit 0a8549d421
2 changed files with 23 additions and 9 deletions

View File

@@ -6,12 +6,12 @@ from google.oauth2.credentials import Credentials
from google_auth_oauthlib.flow import InstalledAppFlow
from google.auth.transport.requests import Request
from googleapiclient.discovery import build
from ..rag.split_docs import load_split_docs
from ..rag.llm import load_llm_openai
from ..rag.embeddings import load_embeddins
from ..rag.retriever import create_retriever
from ..rag.vectorstore import create_verctorstore
from ..rag.rag_chain import create_rag_chain
from app.rag.split_docs import load_split_docs
from app.rag.llm import load_llm_openai
from app.rag.embeddings import load_embeddins
from app.rag.retriever import create_retriever
from app.rag.vectorstore import create_verctorstore
from app.rag.rag_chain import create_rag_chain
import pytz
import telebot
import os