Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,8 @@
|
|
1 |
from fastapi import FastAPI, Request
|
2 |
from llama_cpp import Llama
|
3 |
from huggingface_hub import hf_hub_download
|
|
|
|
|
4 |
|
5 |
app = FastAPI()
|
6 |
|
|
|
1 |
from fastapi import FastAPI, Request
|
2 |
from llama_cpp import Llama
|
3 |
from huggingface_hub import hf_hub_download
|
4 |
+
import os
|
5 |
+
os.system("ulimit -l")
|
6 |
|
7 |
app = FastAPI()
|
8 |
|