mobadara commited on
Commit
2d07eaf
·
verified ·
1 Parent(s): 04826fc

Sync from GitHub via hub-sync

Browse files
Files changed (1) hide show
  1. app/main.py +3 -1
app/main.py CHANGED
@@ -13,7 +13,9 @@ Base.metadata.create_all(bind=engine) # Ensure tables are created at startup
13
  app = FastAPI(
14
  title='FinBERT Sentiment Analyzer API',
15
  description='An API for analyzing the sentiment of financial news articles using FinBERT.',
16
- version='1.0.0'
 
 
17
  )
18
 
19
 
 
13
  app = FastAPI(
14
  title='FinBERT Sentiment Analyzer API',
15
  description='An API for analyzing the sentiment of financial news articles using FinBERT.',
16
+ version='1.0.0',
17
+ docs_url='/docs',
18
+ redoc_url='/'
19
  )
20
 
21