mirror of
https://github.com/RYDE-WORK/Langchain-Chatchat.git
synced 2026-01-31 19:33:26 +08:00
This module provides the interface for invoking and authenticating various models, and offers Dify a unified information and credentials form rule for model providers.
8 lines
101 B
Python
8 lines
101 B
Python
from flask_sqlalchemy import SQLAlchemy
|
|
|
|
db = SQLAlchemy()
|
|
|
|
|
|
def init_app(app):
|
|
db.init_app(app)
|