fe7995a118
This is the first commit which provides all the first stack for a working chat. This is a first implementation with: - Vercel SDK for the frontend part - OpenAI Agent SDK for the backend The stack can use a local LLM with docker ot a remote one. This implementation is more a draft, but it provides the project structure. All tests are working even if we lack a lot of them.
15 lines
461 B
Bash
15 lines
461 B
Bash
DJANGO_CONFIGURATION=Test
|
|
DJANGO_SETTINGS_MODULE=conversations.settings
|
|
DJANGO_SECRET_KEY=ThisIsAnExampleKeyForTestPurposeOnly
|
|
OIDC_OP_JWKS_ENDPOINT=/endpoint-for-test-purpose-only
|
|
DB_HOST=localhost
|
|
DB_NAME=conversations
|
|
DB_USER=dinum
|
|
DB_PASSWORD=pass
|
|
DB_PORT=15432
|
|
|
|
STORAGES_STATICFILES_BACKEND=django.contrib.staticfiles.storage.StaticFilesStorage
|
|
AWS_S3_ENDPOINT_URL=http://localhost:9000
|
|
AWS_S3_ACCESS_KEY_ID=conversations
|
|
AWS_S3_SECRET_ACCESS_KEY=password
|