Spaces:
Sleeping
Sleeping
File size: 19,608 Bytes
d7391ba a288236 62fea8b a288236 d7391ba 62fea8b a288236 fbb963b a288236 fbb963b d7a8925 a288236 62fea8b a288236 bd04115 62fea8b d7391ba 62fea8b a288236 62fea8b a288236 d7391ba a288236 b4dc0bf a288236 b4dc0bf a288236 d7391ba a288236 b4dc0bf a288236 b4dc0bf a288236 b4dc0bf a288236 d7391ba b4dc0bf d7391ba b4dc0bf d7391ba b4dc0bf d7391ba b4dc0bf d7391ba b4dc0bf d7391ba b4dc0bf d7391ba b4dc0bf d7391ba b4dc0bf d7391ba b4dc0bf d7391ba a288236 1aeaa53 a288236 bd04115 a288236 bd04115 a288236 bd04115 a288236 bd04115 a288236 bd04115 a288236 bd04115 a288236 d7391ba 62fea8b d7391ba 62fea8b a288236 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 |
from fastapi import FastAPI, HTTPException, APIRouter
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import FileResponse
from fastapi.staticfiles import StaticFiles
from pydantic import BaseModel
from typing import List, Dict, Any, Optional
import os
import json
from workflow import create_workflow, run_workflow
import logging
from dotenv import load_dotenv
from langchain_openai import ChatOpenAI
from langchain.prompts import ChatPromptTemplate
from langchain.text_splitter import RecursiveCharacterTextSplitter
from langchain_community.vectorstores import Qdrant
from langchain_openai.embeddings import OpenAIEmbeddings
from langchain_openai.chat_models import ChatOpenAI
from operator import itemgetter
from langchain.schema.output_parser import StrOutputParser
from langchain.schema.runnable import RunnablePassthrough
# Load environment variables
load_dotenv()
# Configure logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
# Initialize components
openai_api_key = os.getenv("OPENAI_API_KEY")
if not openai_api_key:
raise ValueError("OpenAI API key not configured")
# Initialize OpenAI components
chat_model = ChatOpenAI(
model_name="gpt-3.5-turbo",
temperature=0.7,
openai_api_key=openai_api_key
)
# Define Pydantic models
class ChatMessage(BaseModel):
content: str
context: Optional[Dict[str, Any]] = None
agent_type: Optional[str] = "believer"
class WorkflowResponse(BaseModel):
debate_history: List[Dict[str, str]]
supervisor_notes: List[str]
supervisor_chunks: List[Dict[str, List[str]]]
extractor_data: Dict[str, Any]
final_podcast: Dict[str, Any]
class PodcastChatRequest(BaseModel):
message: str
class PodcastChatResponse(BaseModel):
response: str
# Initialize FastAPI app
app = FastAPI()
# Create API router
api_router = APIRouter(prefix="/api")
# Configure CORS
app.add_middleware(
CORSMiddleware,
allow_origins=["http://localhost:5173", "http://localhost:3000", "https://*.hf.space", "*"],
allow_credentials=True,
allow_methods=["GET", "POST", "PUT", "DELETE", "OPTIONS", "HEAD"],
allow_headers=["*"],
expose_headers=["Content-Type", "Content-Length"],
max_age=600,
)
# Configure storage directories
audio_dir = os.path.join(os.path.dirname(__file__), "audio_storage")
os.makedirs(audio_dir, exist_ok=True)
context_dir = os.path.join(os.path.dirname(__file__), "context_storage")
os.makedirs(context_dir, exist_ok=True)
# Add transcripts directory
transcripts_dir = os.path.join(os.path.dirname(__file__), "transcripts")
os.makedirs(transcripts_dir, exist_ok=True)
# Initialize empty transcripts file if it doesn't exist
transcripts_file = os.path.join(transcripts_dir, "podcasts.json")
if not os.path.exists(transcripts_file):
with open(transcripts_file, 'w') as f:
json.dump([], f)
# API Routes
@api_router.post("/chat")
async def chat(message: ChatMessage):
"""Process a chat message."""
try:
# Get API key
tavily_api_key = os.getenv("TAVILY_API_KEY")
if not tavily_api_key:
logger.error("Tavily API key not found")
raise HTTPException(status_code=500, detail="Tavily API key not configured")
# Initialize the workflow
try:
workflow = create_workflow(tavily_api_key)
logger.info("Workflow created successfully")
except Exception as e:
logger.error(f"Error creating workflow: {str(e)}")
raise HTTPException(status_code=500, detail=f"Error creating workflow: {str(e)}")
# Run the workflow with context
try:
result = await run_workflow(
workflow,
message.content,
agent_type=message.agent_type,
context=message.context
)
logger.info("Workflow completed successfully")
return result
except Exception as e:
logger.error(f"Error running workflow: {str(e)}")
raise HTTPException(status_code=500, detail=f"Error running workflow: {str(e)}")
except Exception as e:
logger.error(f"Error in chat endpoint: {str(e)}", exc_info=True)
raise HTTPException(status_code=500, detail=str(e))
@api_router.get("/audio-list")
async def list_audio_files():
"""List all available audio files."""
try:
files = os.listdir(audio_dir)
audio_files = []
for file in files:
if file.endswith(('.mp3', '.wav')):
file_path = os.path.join(audio_dir, file)
audio_files.append({
"filename": file,
"path": f"/audio-files/{file}",
"size": os.path.getsize(file_path)
})
return audio_files if audio_files else []
except Exception as e:
logger.error(f"Error listing audio files: {str(e)}")
return []
@api_router.get("/audio/{filename}")
async def get_audio_file(filename: str):
"""Get an audio file by filename."""
try:
file_path = os.path.join(audio_dir, filename)
if not os.path.exists(file_path):
logger.error(f"Audio file not found: {filename}")
raise HTTPException(status_code=404, detail="File not found")
return FileResponse(file_path, media_type="audio/mpeg")
except Exception as e:
logger.error(f"Error serving audio file: {str(e)}")
raise HTTPException(status_code=500, detail=str(e))
@api_router.delete("/audio/{filename}")
async def delete_audio_file(filename: str):
"""Delete an audio file and its corresponding transcript."""
try:
# Check if file exists before attempting deletion
file_path = os.path.join(audio_dir, filename)
if not os.path.exists(file_path):
logger.error(f"File not found for deletion: {filename}")
raise HTTPException(status_code=404, detail="File not found")
try:
# Delete the audio file first
os.remove(file_path)
logger.info(f"Deleted audio file: {filename}")
# Get all remaining audio files
audio_files = [f for f in os.listdir(audio_dir) if f.endswith(('.mp3', '.wav'))]
# Try to update transcripts if they exist
transcripts_file = os.path.join(os.path.dirname(__file__), "transcripts", "podcasts.json")
if os.path.exists(transcripts_file):
with open(transcripts_file, 'r') as f:
transcripts = json.load(f)
# Find the index of the deleted file in the original list
try:
podcast_id = audio_files.index(filename) + 1
if len(transcripts) >= podcast_id:
transcripts.pop(podcast_id - 1)
with open(transcripts_file, 'w') as f:
json.dump(transcripts, f, indent=2)
logger.info(f"Updated transcripts after deletion")
except ValueError:
logger.warning(f"Could not find podcast ID for {filename} in transcripts")
return {"message": "File deleted successfully"}
except Exception as e:
logger.error(f"Error during file deletion process: {str(e)}")
raise HTTPException(status_code=500, detail=str(e))
except HTTPException as he:
raise he
except Exception as e:
logger.error(f"Error in delete_audio_file: {str(e)}")
raise HTTPException(status_code=500, detail=str(e))
@app.get("/podcast/{podcast_id}/context")
async def get_podcast_context(podcast_id: str):
"""Get or generate context for a podcast."""
try:
logger.info(f"Getting context for podcast {podcast_id}")
context_path = os.path.join(context_dir, f"{podcast_id}_context.json")
# If context exists, return it
if os.path.exists(context_path):
logger.info(f"Found existing context file at {context_path}")
with open(context_path, 'r') as f:
return json.load(f)
# If no context exists, we need to create it from the podcast content
logger.info("No existing context found, creating new context")
# Get the audio files to find the podcast filename
files = os.listdir(audio_dir)
logger.info(f"Found {len(files)} files in audio directory")
podcast_files = [f for f in files if f.endswith('.mp3')]
logger.info(f"Found {len(podcast_files)} podcast files: {podcast_files}")
if not podcast_files:
logger.error("No podcast files found")
raise HTTPException(status_code=404, detail="No podcast files found")
# Find the podcast file that matches this ID
try:
podcast_index = int(podcast_id) - 1 # Convert 1-based ID to 0-based index
if podcast_index < 0 or podcast_index >= len(podcast_files):
raise ValueError(f"Invalid podcast ID: {podcast_id}, total podcasts: {len(podcast_files)}")
podcast_filename = podcast_files[podcast_index]
logger.info(f"Selected podcast file: {podcast_filename}")
except (ValueError, IndexError) as e:
logger.error(f"Invalid podcast ID: {podcast_id}, Error: {str(e)}")
raise HTTPException(status_code=404, detail=f"Invalid podcast ID: {podcast_id}")
# Extract topic from filename
try:
topic = podcast_filename.split('-')[0].replace('_', ' ')
logger.info(f"Extracted topic: {topic}")
except Exception as e:
logger.error(f"Error extracting topic from filename: {podcast_filename}, Error: {str(e)}")
raise HTTPException(status_code=500, detail=f"Error extracting topic from filename: {str(e)}")
# Initialize OpenAI chat model for content analysis
try:
chat_model = ChatOpenAI(
model_name="gpt-3.5-turbo",
temperature=0.3,
openai_api_key=openai_api_key
)
logger.info("Successfully initialized ChatOpenAI")
except Exception as e:
logger.error(f"Error initializing ChatOpenAI: {str(e)}")
raise HTTPException(status_code=500, detail=f"Error initializing chat model: {str(e)}")
# Create prompt template for content analysis
prompt = ChatPromptTemplate.from_messages([
("system", """You are an expert content analyzer. Your task is to:
1. Analyze the given topic and create balanced, factual content chunks about it
2. Generate two types of chunks:
- Believer chunks: Positive aspects, opportunities, and solutions related to the topic
- Skeptic chunks: Challenges, risks, and critical questions about the topic
3. Each chunk should be self-contained and focused on a single point
4. Keep chunks concise (2-3 sentences each)
5. Ensure all content is factual and balanced
Format your response as a JSON object with two arrays:
{{
"believer_chunks": ["chunk1", "chunk2", ...],
"skeptic_chunks": ["chunk1", "chunk2", ...]
}}"""),
("human", "Create balanced content chunks about this topic: {topic}")
])
# Generate content chunks
chain = prompt | chat_model
try:
logger.info(f"Generating content chunks for topic: {topic}")
response = await chain.ainvoke({
"topic": topic
})
logger.info("Successfully received response from OpenAI")
# Parse the response content as JSON
try:
content_chunks = json.loads(response.content)
logger.info(f"Successfully parsed response JSON with {len(content_chunks.get('believer_chunks', []))} believer chunks and {len(content_chunks.get('skeptic_chunks', []))} skeptic chunks")
except json.JSONDecodeError as e:
logger.error(f"Error parsing response JSON: {str(e)}, Response content: {response.content}")
raise HTTPException(status_code=500, detail=f"Error parsing content chunks: {str(e)}")
# Create the context object
context = {
"topic": topic,
"believer_chunks": content_chunks.get("believer_chunks", []),
"skeptic_chunks": content_chunks.get("skeptic_chunks", [])
}
# Save the context
try:
with open(context_path, 'w') as f:
json.dump(context, f)
logger.info(f"Saved new context to {context_path}")
except Exception as e:
logger.error(f"Error saving context file: {str(e)}")
raise HTTPException(status_code=500, detail=f"Error saving context file: {str(e)}")
return context
except Exception as e:
logger.error(f"Error generating content chunks: {str(e)}")
raise HTTPException(
status_code=500,
detail=f"Error generating content chunks: {str(e)}"
)
except HTTPException:
raise
except Exception as e:
logger.error(f"Error in get_podcast_context: {str(e)}", exc_info=True)
raise HTTPException(status_code=500, detail=str(e))
@api_router.post("/podcast-chat/{podcast_id}", response_model=PodcastChatResponse)
async def podcast_chat(podcast_id: str, request: PodcastChatRequest):
"""Handle chat messages for a specific podcast."""
try:
logger.info(f"Processing chat message for podcast {podcast_id}")
# Path to transcripts file
transcripts_file = os.path.join(os.path.dirname(__file__), "transcripts", "podcasts.json")
# Check if transcripts file exists and initialize if needed
if not os.path.exists(transcripts_file):
logger.warning("Transcripts file not found, initializing empty file")
with open(transcripts_file, 'w') as f:
json.dump([], f)
raise HTTPException(status_code=404, detail="No transcript available for this podcast yet")
# Read transcripts
try:
with open(transcripts_file, 'r') as f:
transcripts = json.load(f)
except json.JSONDecodeError as e:
logger.error(f"Error reading transcripts file: {str(e)}")
raise HTTPException(status_code=500, detail="Error reading podcast transcript")
# Convert podcast_id to zero-based index
try:
podcast_index = int(podcast_id) - 1
if podcast_index < 0 or podcast_index >= len(transcripts):
raise ValueError(f"Invalid podcast ID: {podcast_id}")
except ValueError as e:
raise HTTPException(status_code=404, detail=str(e))
# Get podcast transcript
try:
podcast_transcript = transcripts[podcast_index].get("podcastScript")
if not podcast_transcript:
raise HTTPException(status_code=404, detail="No transcript content found for this podcast")
except (IndexError, KeyError) as e:
logger.error(f"Error accessing podcast transcript: {str(e)}")
raise HTTPException(status_code=404, detail="Transcript not found for this podcast")
# Split text into chunks
text_splitter = RecursiveCharacterTextSplitter(
chunk_size=500,
chunk_overlap=50,
length_function=len,
)
# Use split_text for strings instead of split_documents
chunks = text_splitter.split_text(podcast_transcript)
if not chunks:
raise HTTPException(status_code=404, detail="No content chunks found in transcript")
# Initialize embedding model
embedding_model = OpenAIEmbeddings(model="text-embedding-3-small")
# Create a unique collection name for this podcast
collection_name = f"podcast_{podcast_id}"
# Initialize Qdrant with local storage
vectorstore = Qdrant.from_texts(
texts=chunks,
embedding=embedding_model,
location=":memory:", # Use in-memory storage
collection_name=collection_name
)
# Configure the retriever with search parameters
qdrant_retriever = vectorstore.as_retriever(
search_type="similarity",
search_kwargs={"k": 3} # Get top 3 most relevant chunks
)
base_rag_prompt_template = """\
You are a helpful podcast assistant. Answer the user's question based on the provided context from the podcast transcript.
If you can't find the answer in the context, just say "I don't have enough information to answer that question."
Keep your responses concise and focused on the question.
Context:
{context}
Question:
{question}
"""
base_rag_prompt = ChatPromptTemplate.from_template(base_rag_prompt_template)
base_llm = ChatOpenAI(model="gpt-3.5-turbo", temperature=0.7)
# Create the RAG chain
def format_docs(docs):
return "\n\n".join(doc.page_content for doc in docs)
# Add logging for the retrieved documents and final prompt
def get_context_and_log(input_dict):
context = format_docs(qdrant_retriever.get_relevant_documents(input_dict["question"]))
logger.info("Retrieved context from podcast:")
logger.info("-" * 50)
logger.info(f"Context:\n{context}")
logger.info("-" * 50)
logger.info(f"Question: {input_dict['question']}")
logger.info("-" * 50)
return {"context": context, "question": input_dict["question"]}
# Create the chain
chain = (
RunnablePassthrough()
| get_context_and_log
| base_rag_prompt
| base_llm
)
# Get response
response = chain.invoke({"question": request.message})
return PodcastChatResponse(response=response.content)
except HTTPException as he:
raise he
except Exception as e:
logger.error(f"Error in podcast chat: {str(e)}", exc_info=True)
raise HTTPException(status_code=500, detail=str(e))
# Include the API router
app.include_router(api_router)
# Mount static directories
app.mount("/audio-files", StaticFiles(directory=audio_dir), name="audio")
app.mount("/", StaticFiles(directory="static", html=True), name="frontend")
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000) |