Skip to content

Instantly share code, notes, and snippets.

View bkyerv's full-sized avatar
🚙
all good

boulatbek bkyerv

🚙
all good
View GitHub Profile
@bkyerv
bkyerv / main.py
Created February 4, 2024 15:58 — forked from bjsi/main.py
Deploying RAGatouille on Modal Labs
from typing import List, Optional, TypedDict
import modal
from modal import gpu, build, enter, exit, method
class Document(TypedDict):
content: str
metadata: dict