mirror of
https://github.com/kennethreitz/instructor.git
synced 2026-06-05 22:50:18 +00:00
13 lines
239 B
Python
13 lines
239 B
Python
from main import app
|
|
import modal
|
|
|
|
stub = modal.Stub("rag-citation")
|
|
|
|
image = modal.Image.debian_slim().pip_install("fastapi", "instructor>=0.2.1", "regex")
|
|
|
|
|
|
@stub.function(image=image)
|
|
@modal.asgi_app()
|
|
def fastapi_app():
|
|
return app
|