Skip to content
This repository has been archived by the owner on Jan 5, 2025. It is now read-only.

Commit

Permalink
Adding readme
Browse files Browse the repository at this point in the history
  • Loading branch information
codebanesr committed Sep 27, 2023
1 parent afd77c6 commit cdea31a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ git clone [email protected]:openchatai/OpenCopilot.git
OPENAI_API_KEY=YOUR_TOKEN_HERE
```

- gpt-4: Ideal for more complex tasks, but may have slower processing times.
- gpt-3.5-turbo-16k: This model is significantly faster compared to GPT-4.
```env
PLAN_AND_EXECUTE_MODEL=gpt-3.5-turbo-16k
```

- After updating your API key, navigate to the repository folder and run the following command (for macOS or Linux):

```
Expand Down
3 changes: 2 additions & 1 deletion llm-server/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ LANGCHAIN_PROJECT="PROJECT_NAME_GOES_HERE"

# use gpt-4 for more complicated tasks, but it is usually much slower than 3.5-turbo family
# gpt-3.5-turbo-16k - this model is many times faster than gpt-4, gpt-4 is more accurate with self observation
PLAN_AND_EXECUTE_MODEL=gpt-3.5-turbo-16k
PLAN_AND_EXECUTE_MODEL=gpt-3.5-turbo-16k
VECTOR_DB_THRESHOLD=0.88

0 comments on commit cdea31a

Please sign in to comment.