Niansuh commited on
Commit
92def1a
·
verified ·
1 Parent(s): df30f0d

Create base_provider.py

Browse files
Files changed (1) hide show
  1. base_provider.py +10 -0
base_provider.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ # app/base_provider.py
2
+
3
+ # Placeholder for base provider implementations
4
+ # You can expand this based on your project's requirements
5
+
6
+ class AsyncGeneratorProvider:
7
+ pass
8
+
9
+ class ProviderModelMixin:
10
+ pass