This commit is contained in:
2026-06-24 16:12:16 +02:00
commit 9fed7b2cbc
19 changed files with 2968 additions and 0 deletions
Vendored
+13
View File
@@ -0,0 +1,13 @@
declare global {
namespace NodeJS {
interface ProcessEnv {
OPENAI_API_KEY: string;
PINECONE_API_KEY: string;
PINECONE_INDEX: string;
PINECONE_NAMESPACE: string;
API_PORT: string;
}
}
}
export {}