mirror of
https://github.com/kjanat/livegraphs-django.git
synced 2026-01-16 14:12:11 +01:00
- Improved date parsing in fetch_and_store_chat_data to support multiple formats and added error logging for unparseable dates. - Enhanced parse_and_store_transcript_messages to handle empty transcripts and expanded message pattern recognition for both User and Assistant. - Implemented intelligent splitting of transcripts based on detected patterns and timestamps, with fallback mechanisms for unrecognized formats. - Updated documentation for Celery and Redis setup, troubleshooting, and project structure. - Added markdown linting configuration and scripts for code formatting. - Updated Nginx configuration to change the web server port. - Added xlsxwriter dependency for Excel file handling in project requirements.
22 lines
541 B
Plaintext
22 lines
541 B
Plaintext
[uv]
|
|
# Keep the uv.lock file up to date
|
|
keep-lockfile = true
|
|
|
|
# Cache compiled bytecode for dependencies
|
|
compile-bytecode = true
|
|
|
|
# Use a local cache directory
|
|
local-cache = true
|
|
|
|
# Verbosity of output
|
|
verbosity = "minimal"
|
|
|
|
# Define which part of the environment to check
|
|
environment-checks = ["python", "dependencies"]
|
|
|
|
# How to resolve dependencies not specified with exact versions
|
|
dependency-resolution = "strict"
|
|
|
|
# If the cache and target directories are on different filesystems, hardlinking may not be supported.
|
|
link-mode = "copy"
|