This commit is contained in:
2025-03-03 11:37:05 +08:00
parent 8feec345b9
commit 25a66cd95c
4 changed files with 15 additions and 6 deletions

7
app/_typing/__init__.py Normal file
View File

@ -0,0 +1,7 @@
from typing import TypeVar
import numpy as np
from jaxtyping import Float, Int, Bool, Num
T = TypeVar("T")
NDArray = np.ndarray

0
app/utils/__init__.py Normal file
View File

View File

@ -1,6 +0,0 @@
def main():
print("Hello from cvth3pe!")
if __name__ == "__main__":
main()

8
main.py Normal file
View File

@ -0,0 +1,8 @@
import anyio
async def main(): ...
if __name__ == "__main__":
anyio.run(main)