mirror of
https://github.com/langgenius/dify.git
synced 2026-03-09 17:36:44 +08:00
gemini 3 pro dify workflow-engine test
This commit is contained in:
20
dify-workflow-engine/sqlalchemy/orm/__init__.py
Normal file
20
dify-workflow-engine/sqlalchemy/orm/__init__.py
Normal file
@ -0,0 +1,20 @@
|
||||
class Session:
|
||||
def __init__(self, *args, **kwargs):
|
||||
pass
|
||||
def close(self):
|
||||
pass
|
||||
def commit(self):
|
||||
pass
|
||||
def rollback(self):
|
||||
pass
|
||||
def add(self, obj):
|
||||
pass
|
||||
def query(self, *args, **kwargs):
|
||||
return self
|
||||
def filter(self, *args, **kwargs):
|
||||
return self
|
||||
def all(self):
|
||||
return []
|
||||
|
||||
def sessionmaker(*args, **kwargs):
|
||||
return Session
|
||||
Reference in New Issue
Block a user