Spaces:
Runtime error
Runtime error
Create entrypoint.sh
Browse files- entrypoint.sh +6 -0
entrypoint.sh
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/bin/bash
|
2 |
+
# Start Ollama in the background
|
3 |
+
ollama run llama2-uncensored &
|
4 |
+
|
5 |
+
# Start the FastAPI application
|
6 |
+
exec uvicorn main:app --host 0.0.0.0 --port 7860
|