fix: Update repository clone URL and adjust huggingface-cli commands in README files

This commit is contained in:
2026-02-13 11:57:00 +08:00
parent 27c8925f7d
commit 3844e825cd
5 changed files with 23 additions and 24 deletions

View File

@@ -118,14 +118,13 @@ app = FastAPI(
app.state.limiter = limiter
app.add_exception_handler(RateLimitExceeded, _rate_limit_exceeded_handler)
if settings.LOG_LEVEL == "debug":
app.add_middleware(
CORSMiddleware,
allow_origins=["http://localhost:5173", "http://127.0.0.1:5173"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
app.add_middleware(
CORSMiddleware,
allow_origins=["http://localhost:5173", "http://127.0.0.1:5173"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
app.include_router(auth.router)
app.include_router(jobs.router)