forked from getzep/zep
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Daniel Chalef
committed
May 7, 2023
1 parent
80c00a8
commit f30ff4f
Showing
35 changed files
with
2,714 additions
and
1,738 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,20 @@ | ||
embeddings: | ||
enable: true | ||
dimensions: 1536 | ||
model: "AdaEmbeddingV2" | ||
llm_model: "gpt-3.5-turbo" | ||
messages: | ||
# The maximum number of messages to retain for a session | ||
# Ensure this is greater than your message_window | ||
# -1 means unlimited | ||
max_session_length: 500 | ||
memory: | ||
# Ensure this is less than your max_session_length | ||
message_window: 12 | ||
search: | ||
metric: "COSINE" | ||
extractors: | ||
summarizer: true | ||
summarizer: | ||
enabled: true | ||
embeddings: | ||
enabled: true | ||
dimensions: 1536 | ||
model: "AdaEmbeddingV2" | ||
memory_store: | ||
type: "redis" | ||
url: "localhost:6379" | ||
type: "postgres" | ||
postgres: | ||
dsn: "postgres://postgres:postgres@localhost:5432/?sslmode=disable" | ||
server: | ||
port: 8000 | ||
log: | ||
level: "debug" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
version: "3.7" | ||
services: | ||
postgres: | ||
container_name: zep-postgres | ||
restart: on-failure | ||
ports: | ||
- "5432:5432" | ||
environment: | ||
- POSTGRES_USER=postgres | ||
- POSTGRES_PASSWORD=postgres | ||
build: | ||
context: . | ||
dockerfile: Dockerfile.postgres |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.