Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 727 Bytes
c83f30f 1befddb 3da458d c83f30f 4c56041 6e61e3a 17cd36a c83f30f da53bed dc8b4b0 5a4f54c c83f30f 5a4f54c 20fe662 e2badc0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import gradio as gr
import pandas as pd
import logging
import asyncio
import os
from uuid import uuid4
from datetime import datetime
from pathlib import Path
from huggingface_hub import CommitScheduler
from auditqa.sample_questions import QUESTIONS
from auditqa.reports import files, report_list, new_files, new_report_list
from auditqa.process_chunks import load_chunks, getconfig, get_local_qdrant, load_new_chunks
from auditqa.retriever import get_context
from auditqa.reader import nvidia_client, dedicated_endpoint
from auditqa.utils import make_html_source, parse_output_llm_with_sources, save_logs, get_message_template
from dotenv import load_dotenv
load_dotenv()
vectorstores = get_local_qdrant()
print(vectorstores) |