Spaces:
Sleeping
Sleeping
shashankkandimalla
commited on
Commit
·
a0c4684
1
Parent(s):
f65ea2b
Add application file
Browse files- Dockerfile +30 -0
- app.py +57 -0
- requirements.txt +11 -0
Dockerfile
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
## Use the official Python 3.9 image
|
2 |
+
FROM python:3.9
|
3 |
+
|
4 |
+
## set the working directory to /code
|
5 |
+
WORKDIR /code
|
6 |
+
|
7 |
+
## Copy the current directory contents in the container at /code
|
8 |
+
COPY ./requirements.txt /code/requirements.txt
|
9 |
+
|
10 |
+
## Install the requirements.txt
|
11 |
+
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
12 |
+
|
13 |
+
# Set up a new user named "user"
|
14 |
+
RUN useradd user
|
15 |
+
# Switch to the "user" user
|
16 |
+
USER user
|
17 |
+
|
18 |
+
# Set home to the user's home directory
|
19 |
+
|
20 |
+
ENV HOME=/home/user \
|
21 |
+
PATH=/home/user/.local/bin:$PATH
|
22 |
+
|
23 |
+
# Set the working directory to the user's home directory
|
24 |
+
WORKDIR $HOME/app
|
25 |
+
|
26 |
+
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
27 |
+
COPY --chown=user . $HOME/app
|
28 |
+
|
29 |
+
## Start the FASTAPI App on port 7860
|
30 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|
app.py
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from fastapi import FastAPI, Body
|
2 |
+
from crewai import Crew, Process
|
3 |
+
from agents import SneakerAgents
|
4 |
+
from tasks import SneakerTasks
|
5 |
+
from tools.search_tools import SearchTools
|
6 |
+
from dotenv import load_dotenv
|
7 |
+
import os
|
8 |
+
|
9 |
+
# Load environment variables
|
10 |
+
dotenv_path = os.path.join(os.path.dirname(__file__), '.env')
|
11 |
+
load_dotenv(dotenv_path)
|
12 |
+
|
13 |
+
# Initialize the SearchTools, SneakerAgents, and SneakerTasks once
|
14 |
+
search_tools = SearchTools()
|
15 |
+
agents = SneakerAgents(search_tools)
|
16 |
+
tasks = SneakerTasks()
|
17 |
+
|
18 |
+
|
19 |
+
class SneakerCrew:
|
20 |
+
def __init__(self, brand, gender):
|
21 |
+
self.brand = brand
|
22 |
+
self.gender = gender
|
23 |
+
|
24 |
+
def run(self):
|
25 |
+
# Sequential initialization of agents
|
26 |
+
sneaker_expert = agents.sneaker_expert()
|
27 |
+
resale_expert = agents.resale_expert()
|
28 |
+
|
29 |
+
# Sequential creation of tasks
|
30 |
+
combined_task = tasks.suggest_and_fetch_upcoming_shoes(sneaker_expert, self.brand, self.gender)
|
31 |
+
estimate_resale_value_task = tasks.estimate_resale_value(resale_expert, self.brand)
|
32 |
+
|
33 |
+
# Initialize the crew sequentially
|
34 |
+
crew = Crew(
|
35 |
+
agents=[sneaker_expert, resale_expert],
|
36 |
+
tasks=[combined_task, estimate_resale_value_task],
|
37 |
+
verbose=True,
|
38 |
+
process=Process.sequential
|
39 |
+
)
|
40 |
+
|
41 |
+
result = crew.kickoff()
|
42 |
+
return result
|
43 |
+
|
44 |
+
|
45 |
+
app = FastAPI()
|
46 |
+
|
47 |
+
|
48 |
+
@app.post("/sneaker_worth_finder")
|
49 |
+
def sneaker_worth_finder(brand: str = Body(...), gender: str = Body(...)):
|
50 |
+
sneaker_crew = SneakerCrew(brand, gender)
|
51 |
+
result = sneaker_crew.run()
|
52 |
+
return result
|
53 |
+
|
54 |
+
|
55 |
+
if __name__ == "__main__":
|
56 |
+
import uvicorn
|
57 |
+
uvicorn.run(app, host="0.0.0.0", port=8002)
|
requirements.txt
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
unstructured==0.10.25
|
2 |
+
pyowm==3.3.0
|
3 |
+
python-dotenv==1.0.0
|
4 |
+
crewai>=0.1.24,<0.2.0
|
5 |
+
langchain-google-genai<1.1.0,>=1.0.4
|
6 |
+
langchain-core<0.3.0,>=0.1.45
|
7 |
+
langsmith<0.2.0,>=0.1.0
|
8 |
+
asyncio
|
9 |
+
fastapi>=0.74
|
10 |
+
requests==2.27.*
|
11 |
+
uvicorn[standard]==0.17.*
|