Skip to content

Commit d915358

Browse files
Adam BaloghAdam Balogh
authored andcommitted
compile
1 parent 722aac2 commit d915358

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ USER appuser
3434
EXPOSE 8000
3535

3636
# Run the application with Gunicorn
37-
CMD ["gunicorn", "--bind", "0.0.0.0:8000", "--workers", "3", "--access-logfile", "-", "main:app"]
37+
CMD ["gunicorn", "--bind", "0.0.0.0:8000", "--timeout", "300", "--workers", "3", "--access-logfile", "-", "main:app"]

agent/prompts.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,9 @@ def get_agent_prompt(
2929

3030
def get_suggestions_prompt(
3131
tokens: List[WalletTokenHolding],
32-
poolDeposits: List[WalletPoolPosition],
33-
availablePools: List[Pool],
3432
) -> str:
3533
agent_prompt = suggestions_template.render(
3634
tokens=tokens,
37-
poolDeposits=poolDeposits,
38-
availablePools=availablePools,
3935
)
4036

4137
return agent_prompt

0 commit comments

Comments
 (0)