repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | import { MemoryConfig } from "../types"; |
| #2 | |
| #3 | export const DEFAULT_MEMORY_CONFIG: MemoryConfig = { |
| #4 | disableHistory: false, |
| #5 | version: "v1.1", |
| #6 | embedder: { |
| #7 | provider: "openai", |
| #8 | config: { |
| #9 | apiKey: process.env.OPENAI_API_KEY || "", |
| #10 | model: "text-embedding-3-small", |
| #11 | }, |
| #12 | }, |
| #13 | vectorStore: { |
| #14 | provider: "memory", |
| #15 | config: { |
| #16 | collectionName: "memories", |
| #17 | dimension: 1536, |
| #18 | }, |
| #19 | }, |
| #20 | llm: { |
| #21 | provider: "openai", |
| #22 | config: { |
| #23 | baseURL: "https://api.openai.com/v1", |
| #24 | apiKey: process.env.OPENAI_API_KEY || "", |
| #25 | model: "gpt-4-turbo-preview", |
| #26 | modelProperties: undefined, |
| #27 | }, |
| #28 | }, |
| #29 | enableGraph: false, |
| #30 | graphStore: { |
| #31 | provider: "neo4j", |
| #32 | config: { |
| #33 | url: process.env.NEO4J_URL || "neo4j://localhost:7687", |
| #34 | username: process.env.NEO4J_USERNAME || "neo4j", |
| #35 | password: process.env.NEO4J_PASSWORD || "password", |
| #36 | }, |
| #37 | llm: { |
| #38 | provider: "openai", |
| #39 | config: { |
| #40 | model: "gpt-4-turbo-preview", |
| #41 | }, |
| #42 | }, |
| #43 | }, |
| #44 | historyStore: { |
| #45 | provider: "sqlite", |
| #46 | config: { |
| #47 | historyDbPath: "memory.db", |
| #48 | }, |
| #49 | }, |
| #50 | }; |
| #51 |