Skip to content

Commit e90aaa3

Browse files
readme changes
1 parent 3bf1753 commit e90aaa3

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ DIFFBOT_API_KEY="your-diffbot-key"
4040

4141
if you only want OpenAI:
4242
```env
43-
LLM_MODELS="gpt-3.5,gpt-4o"
43+
LLM_MODELS="diffbot,openai-gpt-3.5,openai-gpt-4o"
4444
OPENAI_API_KEY="your-openai-key"
4545
```
4646

@@ -146,7 +146,7 @@ Allow unauthenticated request : Yes
146146
| BACKEND_API_URL | Optional | http://localhost:8000 | URL for backend API |
147147
| BLOOM_URL | Optional | https://workspace-preview.neo4j.io/workspace/explore?connectURL={CONNECT_URL}&search=Show+me+a+graph&featureGenAISuggestions=true&featureGenAISuggestionsInternal=true | URL for Bloom visualization |
148148
| REACT_APP_SOURCES | Optional | local,youtube,wiki,s3 | List of input sources that will be available |
149-
| LLM_MODELS | Optional | diffbot,gpt-3.5,gpt-4o | Models available for selection on the frontend, used for entities extraction and Q&A
149+
| LLM_MODELS | Optional | diffbot,openai-gpt-3.5,openai-gpt-4o | Models available for selection on the frontend, used for entities extraction and Q&A
150150
| CHAT_MODES | Optional | vector,graph+vector,graph | Chat modes available for Q&A
151151
| ENV | Optional | DEV | Environment variable for the app |
152152
| TIME_PER_CHUNK | Optional | 4 | Time per chunk for processing |

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ services:
5151
args:
5252
- BACKEND_API_URL=${BACKEND_API_URL-http://localhost:8000}
5353
- REACT_APP_SOURCES=${REACT_APP_SOURCES-local,youtube,wiki,s3}
54-
- LLM_MODELS=${LLM_MODELS-diffbot,gpt-3.5,gpt-4o}
54+
- LLM_MODELS=${LLM_MODELS-diffbot,openai-gpt-3.5,openai-gpt-4o}
5555
- GOOGLE_CLIENT_ID=${GOOGLE_CLIENT_ID-""}
5656
- BLOOM_URL=${BLOOM_URL-https://workspace-preview.neo4j.io/workspace/explore?connectURL={CONNECT_URL}&search=Show+me+a+graph&featureGenAISuggestions=true&featureGenAISuggestionsInternal=true}
5757
- TIME_PER_CHUNK=${TIME_PER_CHUNK-4}

example.env

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,10 @@ ENTITY_EMBEDDING=True
2828
BACKEND_API_URL="http://localhost:8000"
2929
BLOOM_URL="https://workspace-preview.neo4j.io/workspace/explore?connectURL={CONNECT_URL}&search=Show+me+a+graph&featureGenAISuggestions=true&featureGenAISuggestionsInternal=true"
3030
REACT_APP_SOURCES="local,youtube,wiki,s3,web"
31-
LLM_MODELS="diffbot,gpt-3.5,gpt-4o" # ",ollama_llama3"
31+
LLM_MODELS="diffbot,openai-gpt-3.5,openai-gpt-4o" # ",ollama_llama3"
3232
ENV="DEV"
3333
TIME_PER_CHUNK=4
3434
TIME_PER_PAGE=50
3535
CHUNK_SIZE=5242880
3636
GOOGLE_CLIENT_ID=""
37+
CHAT_MODES=""

0 commit comments

Comments
 (0)