@app.post("/blogs/") def save_blog(response: Response, blog_item: BlogItemRequest) -> dict[str, str]: # Create a BlogItem instance from the request data try: blog_id = get_blog_id() blog_item_obj = BlogItem( blog_id=blog_id, title=blog_item.title, content=blog_item.content, ) # Call the index_blog method to index the blog index_blog(blog_item_obj) return {"message": "Blog indexed successfully", "blog_id": str(blog_id)} except Exception as e: logging.error(f"An error occurred while indexing blog with blog_id {blog_id} : {e}") response.status_code = status.HTTP_500_INTERNAL_SERVER_ERROR return {"error": "Failed to index blog"}