You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
341 B
Python
15 lines
341 B
Python
2 years ago
|
import asyncio
|
||
|
import base
|
||
|
|
||
|
from sqlalchemy import select
|
||
|
from api.model.embedding_search.title_index import TitleIndexModel
|
||
|
import local
|
||
|
from service.database import DatabaseService
|
||
|
|
||
|
from service.embedding_search import EmbeddingSearchService
|
||
|
|
||
|
async def main():
|
||
|
pass
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
local.loop.run_until_complete(main())
|