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:
parent
003cb1a443
commit
31cab2e6d2
1 changed files with 5 additions and 5 deletions
|
|
@ -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("../")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue