Reorganize import statements in settings.py for improved clarity

This commit refactors the import statements in settings.py, enhancing the organization and readability of the code. The changes include consolidating and reordering imports, which contributes to a cleaner and more maintainable codebase.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2025-09-02 23:19:15 -03:00
parent 003cb1a443
commit 31cab2e6d2

View file

@ -1,13 +1,13 @@
import os
import requests
import asyncio
import time
import requests
from agentd.patch import patch_openai_with_mcp
from docling.document_converter import DocumentConverter
from dotenv import load_dotenv
from openai import AsyncOpenAI
from opensearchpy import AsyncOpenSearch
from opensearchpy._async.http_aiohttp import AIOHttpConnection
from docling.document_converter import DocumentConverter
from agentd.patch import patch_openai_with_mcp
from openai import AsyncOpenAI
load_dotenv()
load_dotenv("../")