From 6028b110d1d8ed8bf60da8d8a5bcdb53935ddca2 Mon Sep 17 00:00:00 2001 From: TKS <32640296+bigsk1@users.noreply.github.com> Date: Fri, 26 Jul 2024 04:03:27 -0700 Subject: [PATCH] update readme --- .env.sample | 10 +++++++++- README.md | 4 +++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/.env.sample b/.env.sample index a60fd34..e90f1bd 100644 --- a/.env.sample +++ b/.env.sample @@ -13,4 +13,12 @@ TAVILY_API_KEY=tvly- CLAUDE_MODEL=claude-3-5-sonnet-20240620 # for claude automode, how many times it will run by itself, change as needed -MAX_ITERATIONS=5 \ No newline at end of file +MAX_ITERATIONS=5 + + +# Start the server backend +# uvicorn backend:app --reload --host 0.0.0.0 --port 8000 +# uvicorn backend:app --host 0.0.0.0 --port 8000 + +# start the frontend cd frontend +# npm run dev \ No newline at end of file diff --git a/README.md b/README.md index fe57b94..2b20a0f 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,9 @@ This application leverages the power of Claude to enhance your development workf TAVILY_API_KEY=your_tavily_api_key # If using Tavily - SEARXNG_URL=your_searxng_url # If using SearXNG + SEARXNG_URL=http://192.168.1.10:4000 # If using SearXNG + + SEARXNG_RESULTS=5 # number of returned search results MAX_ITERATIONS=5 # Number of automode iterations ```